gpt4all/configs/generate/generate.yaml

16 lines
367 B
YAML
Raw Normal View History

2023-03-25 12:43:27 -04:00
# model/tokenizer
2023-03-28 16:08:29 -04:00
model_name: # REPLACE HERE with the base llama model
tokenizer_name: # REPLACE HERE with the llama tokenizer
2023-03-25 12:43:27 -04:00
lora: true
2023-03-28 16:08:29 -04:00
lora_path: "nomic-ai/gpt4all-lora"
2023-03-25 12:43:27 -04:00
max_new_tokens: 512
2023-03-27 13:39:29 -04:00
temperature: 0
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?