added eval configs

This commit is contained in:
bstadt 2023-03-27 21:59:40 +00:00
parent b48a52d934
commit 444871189d
3 changed files with 29 additions and 0 deletions

Binary file not shown.

View File

@ -0,0 +1,15 @@
# model/tokenizer
model_name: "zpn/llama-7b"
tokenizer_name: "zpn/llama-7b"
lora: true
lora_path: "nomic-ai/vicuna-lora-1024"
max_new_tokens: 512
temperature: .25
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?

View File

@ -0,0 +1,14 @@
# model/tokenizer
model_name: "zpn/llama-7b"
tokenizer_name: "zpn/llama-7b"
max_new_tokens: 512
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?