File size: 1,618 Bytes
d5436e0 9c715e2 e294914 d5436e0 e294914 d5436e0 5b0f862 e294914 5b0f862 d5436e0 5b0f862 d5436e0 5b0f862 e294914 5b0f862 d5436e0 5b0f862 d5436e0 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 |
config = {
"HF_Mistrail": {
"model": "mistralai/Mistral-7B-Instruct-v0.2",
"temperature": 0.5,
"max_new_tokens": 1024,
"top_k": 5,
"load_in_8bit": True
},
"HF_TinyLlama": {
"model": "TinyLlama/TinyLlama-1.1B-Chat-v1.0",
"temperature": 0.5,
"max_new_tokens": 1024,
"top_k": 5,
"top_p":0.95,
"load_in_8bit": True,
"do_sample": True
},
"HF_SmolLM135": {
"model": "HuggingFaceTB/SmolLM-135M-Instruct",
"temperature": 0.5,
"max_new_tokens": 1024,
"top_k": 5,
"top_p":0.95,
"load_in_8bit": True,
"do_sample": True
},
"HF_SmolLM360": {
"model": "HuggingFaceTB/SmolLM-360M-Instruct",
"temperature": 0.5,
"max_new_tokens": 1024,
"top_k": 5,
"top_p":0.95,
"load_in_8bit": True,
"do_sample": True
},
"HF_SmolLM": {
"model": "HuggingFaceTB/SmolLM-1.7B-Instruct",
"temperature": 0.5,
"max_new_tokens": 1024,
"top_k": 5,
"top_p":0.95,
"load_in_8bit": True,
"do_sample": True
},
"HF_Gemma2": {
"model": "google/gemma-2-2b",
"temperature": 0.5,
"max_new_tokens": 1024,
"top_k": 5,
"top_p":0.95,
"load_in_8bit": True,
"do_sample": True
},
"HF_Qwen2": {
"model": "Qwen/Qwen2-7B-Instruct",
"temperature": 0.5,
"max_new_tokens": 1024,
"top_k": 5,
"top_p":0.95,
"load_in_8bit": True,
"do_sample": True
},
}
|