Chelsea / llm /config.py
CineAI's picture
v0.0.1_DigItBMTH
d5436e0
raw
history blame
1.12 kB
config = {
"HF_Mistrail": {
"model": "mistralai/Mixtral-8x7B-Instruct-v0.1",
"temperature": 0.1,
"max_new_tokens": 1024,
"top_k": 5,
"load_in_8bit": True
},
"HF_TinyLlama": {
"model": "TinyLlama/TinyLlama-1.1B-Chat-v1.0",
"temperature": 0.1,
"max_new_tokens": 1024,
"top_k": 5,
"top_p":0.95,
"load_in_8bit": True,
"do_sample": True
},
"LC_TinyLlama-1.1B-Chat-v1.0-GGUF": {
"model_url": "https://huggingface.co/TheBloke/TinyLlama-1.1B-Chat-v1.0-GGUF/resolve/main/tinyllama-1.1b-chat-v1.0.Q8_0.gguf",
"model_name": "tinyllama-1.1b-chat-v1.0.Q8_0.gguf.bin",
"temperature": 0.4,
"max_tokens": 868,
"top_p": 0.8,
"top_k": 5,
},
"LC_Phi-3-mini-4k-instruct-gguf": {
"model_url": "https://huggingface.co/microsoft/Phi-3-mini-4k-instruct-gguf/resolve/main/Phi-3-mini-4k-instruct-q4.gguf",
"model_name": "Phi-3-mini-4k-instruct-gguf.bin",
"temperature": 0.4,
"max_tokens": 868,
"top_p": 0.8,
"top_k": 5,
}
}