You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi All, when I ran an official example like this :
torchrun --nproc_per_node 1 example_instructions.py --ckpt_dir CodeLlama-7b-Instruct/ --tokenizer_path CodeLlama-7b-Instruct/tokenizer.model --max_seq_len 192 --max_batch_size 4
I got a result thant can not be read like this:
User: In Bash, how do I list all text files in the current directory (excluding subdirectories) that have been modified in the last month?
I ran it on M1 MacBook, Does any body has any idea about it ?
The text was updated successfully, but these errors were encountered:
liqiang28
changed the title
@liqiang28 7b should work with that PR, I haven't been able to get any larger models to work
Get unreadable result after running example
Sep 7, 2023
It's really weird, if I use my own question, I can get the correct answer, I had any idea about this .
User: use javascript, give a code to generate 10 addition calculation formula
Assistant: Here is an example of how you can generate 10 addition calculation formulas using JavaScript:
function generateFormulas(numFormulas) {
let formulas = [];
for (let i = 0; i < numFormulas; i++) {
let num1 = Math.floor(Math.random() * 10);
let num2 = Math.floor(Math.random() * 10);
let formula = `(${num1} + ${num2})`;
formulas.push(formula);
}
return formulas;
}
console.log(generateFormulas(10));
This code uses the Math.floor() method to generate two random numbers between 0 and 10,
Hi @liqiang28,
Did you manage to solve this issue? It is not clear from your second comment.
If not, can you please provide more details regarding the issue?
Hi All, when I ran an official example like this :
torchrun --nproc_per_node 1 example_instructions.py --ckpt_dir CodeLlama-7b-Instruct/ --tokenizer_path CodeLlama-7b-Instruct/tokenizer.model --max_seq_len 192 --max_batch_size 4
I got a result thant can not be read like this:
User: In Bash, how do I list all text files in the current directory (excluding subdirectories) that have been modified in the last month?
==================================
User: What is the difference between inorder and preorder traversal? Give an example in Python.
==================================
System: Provide answers in JavaScript
User: Write a function that computes the set of sums of all contiguous sublists of a given list.
I ran it on M1 MacBook, Does any body has any idea about it ?
The text was updated successfully, but these errors were encountered: