gpt4all/configs/eval/generate.yaml

16 lines
336 B
YAML
Raw Normal View History

2023-03-27 21:59:40 +00:00
# model/tokenizer
2023-03-29 04:00:36 +00:00
model_name: # update with llama 7b
tokenizer_name: # update with llama 7b
2023-03-27 21:59:40 +00:00
lora: true
2023-03-29 04:00:36 +00:00
lora_path: "nomic-ai/gpt4all-lora"
2023-03-27 21:59:40 +00:00
max_new_tokens: 512
2023-03-28 00:09:47 +00:00
temperature: 0.001
2023-03-27 21:59:40 +00:00
prompt: |
#this code prints a string reversed
my_string = "hello how are you"
print(len(my_string))
My code above does not work. Can you help me?