mirror of
https://github.com/nomic-ai/gpt4all
synced 2024-11-02 09:40:42 +00:00
15 lines
308 B
YAML
15 lines
308 B
YAML
# model/tokenizer
|
|
model_name: # REPLACE WITH LLAMA MODEL NAME
|
|
tokenizer_name: # REPLACE WITH LLAMA MODEL NAME
|
|
|
|
|
|
max_new_tokens: 512
|
|
temperature: 0.001
|
|
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?
|