mirror of
https://github.com/pese-git/llm-arch-research.git
synced 2026-01-23 21:10:54 +00:00
19 lines
499 B
JSON
19 lines
499 B
JSON
|
|
{
|
||
|
|
"bpe_tokenizer": "checkpoints/bpe_tokenizer.json",
|
||
|
|
"test_prompts": [
|
||
|
|
"Open weights",
|
||
|
|
"The Llama model is",
|
||
|
|
"Efficient transformers"
|
||
|
|
],
|
||
|
|
"model_config_path": "checkpoints/gemma-bpe/config.json",
|
||
|
|
"model_weights": "checkpoints/gemma-bpe/model.pt",
|
||
|
|
"generation": {
|
||
|
|
"max_new_tokens": 40,
|
||
|
|
"temperature": 0.8,
|
||
|
|
"do_sample": true,
|
||
|
|
"top_k": null,
|
||
|
|
"top_p": null
|
||
|
|
},
|
||
|
|
"log_path": "checkpoints/gemma_only_generation_logs.json"
|
||
|
|
}
|
||
|
|
|