gpt4all/configs/generate/generate_llama.yaml

15 lines
308 B
YAML
Raw Normal View History

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