shibatch commited on
Commit
f281f4c
·
verified ·
1 Parent(s): 7a80a8c

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +4 -2
README.md CHANGED
@@ -48,8 +48,10 @@ A comprehensive validation suite converted for `llama.cpp` and compatible engine
48
  This directory contains the standard files required to load the model using the PyTorch `transformers` library:
49
  * **`hf/model.safetensors`**: The raw, unquantized model weights stored securely in Safetensors format.
50
  * **`hf/config.json`**: The architectural configuration file defining hyperparameters (layers, heads, dimensions).
51
- * **`hf/generation_config.json`**: Default parameters optimized for text generation (temperature, top_p, etc.).
52
- * **`hf/tokenizer.model`**: The custom 512-vocab SentencePiece tokenizer model file required for Python-side encoding/decoding.
 
 
53
 
54
  ---
55
 
 
48
  This directory contains the standard files required to load the model using the PyTorch `transformers` library:
49
  * **`hf/model.safetensors`**: The raw, unquantized model weights stored securely in Safetensors format.
50
  * **`hf/config.json`**: The architectural configuration file defining hyperparameters (layers, heads, dimensions).
51
+ * **`hf/generation_config.json`**: Default parameters optimized for text generation.
52
+ * **`hf/tokenizer_config.json`**: Tokenizer behavior layout enabling automatic BOS token injection and padding setup.
53
+ * **`hf/special_tokens_map.json`**: Architectural mappings tying token strings to exact internal special token IDs.
54
+ * **`hf/tokenizer.model`**: The custom 512-vocab SentencePiece tokenizer model file.
55
 
56
  ---
57