gpt4all/gpt4all-training/configs/generate/generate_llama.yaml

15 lines
308 B
YAML
Raw Normal View History

2023-03-25 21:45:58 +00:00
# model/tokenizer
2023-03-28 20:08:56 +00:00
model_name: # REPLACE WITH LLAMA MODEL NAME
tokenizer_name: # REPLACE WITH LLAMA MODEL NAME
2023-03-25 21:45:58 +00:00
max_new_tokens: 512
2023-03-28 00:09:47 +00:00
temperature: 0.001
2023-03-25 21:45:58 +00:00
prompt: |
#this code prints a string reversed
my_string = "hello how are you"
print(len(my_string))
2023-03-28 00:09:47 +00:00
My code above does not work. Can you help me?