Text Generation
Transformers
Safetensors
English
llama
tinystories
language-model
educational
text-generation-inference
Instructions to use manojredhat/tiny-llama with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use manojredhat/tiny-llama with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="manojredhat/tiny-llama")# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("manojredhat/tiny-llama") model = AutoModelForCausalLM.from_pretrained("manojredhat/tiny-llama") - Notebooks
- Google Colab
- Kaggle
- Local Apps
- vLLM
How to use manojredhat/tiny-llama with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "manojredhat/tiny-llama" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "manojredhat/tiny-llama", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/manojredhat/tiny-llama
- SGLang
How to use manojredhat/tiny-llama with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "manojredhat/tiny-llama" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "manojredhat/tiny-llama", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "manojredhat/tiny-llama" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "manojredhat/tiny-llama", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use manojredhat/tiny-llama with Docker Model Runner:
docker model run hf.co/manojredhat/tiny-llama
Upload Tiny LLaMA model in safetensors format (fp32)
Browse files- MODEL_CARD.md +74 -0
- README.md +207 -0
- config.json +27 -0
- model.safetensors +3 -0
- tokenizer.model +3 -0
- tokenizer_config.json +32 -0
MODEL_CARD.md
ADDED
|
@@ -0,0 +1,74 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
library_name: transformers
|
| 3 |
+
license: apache-2.0
|
| 4 |
+
---
|
| 5 |
+
|
| 6 |
+
# Tiny LLaMA
|
| 7 |
+
|
| 8 |
+
A small LLaMA-2 inspired language model trained on TinyStories dataset.
|
| 9 |
+
|
| 10 |
+
## Overview
|
| 11 |
+
|
| 12 |
+
Tiny LLaMA is a 6.1M parameter language model designed for:
|
| 13 |
+
- Educational purposes
|
| 14 |
+
- Research on small models
|
| 15 |
+
- Lightweight inference
|
| 16 |
+
- Fine-tuning experiments
|
| 17 |
+
|
| 18 |
+
## Model Specifications
|
| 19 |
+
|
| 20 |
+
| Property | Value |
|
| 21 |
+
|----------|-------|
|
| 22 |
+
| Parameters | 6.1M |
|
| 23 |
+
| Layers | 6 |
|
| 24 |
+
| Attention Heads | 8 |
|
| 25 |
+
| Hidden Dimension | 256 |
|
| 26 |
+
| Vocabulary Size | 512 |
|
| 27 |
+
| Max Sequence Length | 2048 |
|
| 28 |
+
| Data Type | float32 |
|
| 29 |
+
|
| 30 |
+
## Intended Use
|
| 31 |
+
|
| 32 |
+
This model is intended for:
|
| 33 |
+
- Text generation in the style of TinyStories
|
| 34 |
+
- Research and educational purposes
|
| 35 |
+
- Demonstration of language model capabilities at small scale
|
| 36 |
+
|
| 37 |
+
## Out-of-Scope Uses
|
| 38 |
+
|
| 39 |
+
This model is not suitable for:
|
| 40 |
+
- Production deployments
|
| 41 |
+
- Knowledge-intensive tasks
|
| 42 |
+
- Long-form document generation
|
| 43 |
+
- Non-English content generation
|
| 44 |
+
|
| 45 |
+
## Training Data
|
| 46 |
+
|
| 47 |
+
Trained on TinyStories dataset consisting of 50 shards of simple English stories.
|
| 48 |
+
|
| 49 |
+
## Tokenizer
|
| 50 |
+
|
| 51 |
+
Uses SentencePiece tokenizer with 512 vocabulary tokens, trained on the TinyStories dataset.
|
| 52 |
+
|
| 53 |
+
## Performance Benchmarks
|
| 54 |
+
|
| 55 |
+
- **Load Time**: ~50ms
|
| 56 |
+
- **Inference Speed (CPU)**: 50-100 tokens/sec
|
| 57 |
+
- **Memory (Weights)**: 24MB
|
| 58 |
+
|
| 59 |
+
## How to Use
|
| 60 |
+
|
| 61 |
+
```python
|
| 62 |
+
from transformers import AutoTokenizer, AutoModelForCausalLM
|
| 63 |
+
|
| 64 |
+
tokenizer = AutoTokenizer.from_pretrained("username/tiny-llama")
|
| 65 |
+
model = AutoModelForCausalLM.from_pretrained("username/tiny-llama")
|
| 66 |
+
|
| 67 |
+
inputs = tokenizer("Once upon a time", return_tensors="pt")
|
| 68 |
+
outputs = model.generate(**inputs, max_length=100)
|
| 69 |
+
print(tokenizer.decode(outputs[0]))
|
| 70 |
+
```
|
| 71 |
+
|
| 72 |
+
## Ethical Considerations
|
| 73 |
+
|
| 74 |
+
This model is trained on simple children's stories and is intended for educational use only.
|
README.md
ADDED
|
@@ -0,0 +1,207 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Tiny LLaMA - TinyStories Edition
|
| 2 |
+
|
| 3 |
+
A lightweight LLaMA-2 inspired model trained on the TinyStories dataset. This model is designed for educational purposes and lightweight inference.
|
| 4 |
+
|
| 5 |
+
## Model Details
|
| 6 |
+
|
| 7 |
+
- **Model Type**: Decoder-only Transformer (LLaMA architecture)
|
| 8 |
+
- **Parameters**: 6.1M
|
| 9 |
+
- **Layers**: 6
|
| 10 |
+
- **Attention Heads**: 8
|
| 11 |
+
- **Embedding Dimension**: 256
|
| 12 |
+
- **Vocabulary Size**: 512 (SentencePiece)
|
| 13 |
+
- **Max Sequence Length**: 2048
|
| 14 |
+
- **Data Type**: float32
|
| 15 |
+
- **Format**: safetensors
|
| 16 |
+
|
| 17 |
+
## Training
|
| 18 |
+
|
| 19 |
+
- **Dataset**: TinyStories (roneneldan/TinyStories)
|
| 20 |
+
- **Data Shards**: 50
|
| 21 |
+
- **Training Iterations**: 100
|
| 22 |
+
- **Initial Loss**: 6.27
|
| 23 |
+
- **Final Loss**: 4.81
|
| 24 |
+
- **Validation Loss**: 6.29 → 4.77
|
| 25 |
+
|
| 26 |
+
## Quick Start
|
| 27 |
+
|
| 28 |
+
### Installation
|
| 29 |
+
|
| 30 |
+
```bash
|
| 31 |
+
pip install transformers safetensors torch
|
| 32 |
+
```
|
| 33 |
+
|
| 34 |
+
### Basic Usage
|
| 35 |
+
|
| 36 |
+
```python
|
| 37 |
+
from transformers import AutoTokenizer, AutoModelForCausalLM
|
| 38 |
+
import torch
|
| 39 |
+
|
| 40 |
+
# Load model and tokenizer
|
| 41 |
+
tokenizer = AutoTokenizer.from_pretrained("your-username/tiny-llama")
|
| 42 |
+
model = AutoModelForCausalLM.from_pretrained("your-username/tiny-llama")
|
| 43 |
+
|
| 44 |
+
# Generate text
|
| 45 |
+
prompt = "Once upon a time"
|
| 46 |
+
input_ids = tokenizer(prompt, return_tensors="pt").input_ids
|
| 47 |
+
|
| 48 |
+
with torch.no_grad():
|
| 49 |
+
output = model.generate(input_ids, max_length=100, temperature=0.8, top_p=0.95)
|
| 50 |
+
|
| 51 |
+
generated_text = tokenizer.decode(output[0])
|
| 52 |
+
print(generated_text)
|
| 53 |
+
```
|
| 54 |
+
|
| 55 |
+
### Advanced Generation
|
| 56 |
+
|
| 57 |
+
```python
|
| 58 |
+
# With more control
|
| 59 |
+
output = model.generate(
|
| 60 |
+
input_ids,
|
| 61 |
+
max_length=150,
|
| 62 |
+
temperature=0.7,
|
| 63 |
+
top_p=0.9,
|
| 64 |
+
num_beams=1,
|
| 65 |
+
do_sample=True,
|
| 66 |
+
pad_token_id=tokenizer.eos_token_id,
|
| 67 |
+
)
|
| 68 |
+
|
| 69 |
+
# Batch generation
|
| 70 |
+
batch_prompts = [
|
| 71 |
+
"Once upon a time",
|
| 72 |
+
"The girl went to",
|
| 73 |
+
"In a small village"
|
| 74 |
+
]
|
| 75 |
+
inputs = tokenizer(batch_prompts, return_tensors="pt", padding=True)
|
| 76 |
+
outputs = model.generate(**inputs, max_length=100)
|
| 77 |
+
texts = tokenizer.batch_decode(outputs)
|
| 78 |
+
```
|
| 79 |
+
|
| 80 |
+
## Model Architecture
|
| 81 |
+
|
| 82 |
+
### Layer Structure
|
| 83 |
+
1. Embedding Layer (512 tokens → 256 dims)
|
| 84 |
+
2. 6 Transformer Blocks:
|
| 85 |
+
- Multi-Head Self-Attention (8 heads)
|
| 86 |
+
- RMS Normalization
|
| 87 |
+
- Feed-Forward Network (4x hidden size)
|
| 88 |
+
- Residual Connections
|
| 89 |
+
3. Output Projection (256 dims → 512 tokens)
|
| 90 |
+
|
| 91 |
+
### Attention Details
|
| 92 |
+
- **Type**: Multi-Head Self-Attention
|
| 93 |
+
- **Heads**: 8
|
| 94 |
+
- **Head Dimension**: 32
|
| 95 |
+
- **Rotary Embeddings (RoPE)**: Yes
|
| 96 |
+
- **Query-Key Normalization**: RMS Norm
|
| 97 |
+
|
| 98 |
+
### Activation Function
|
| 99 |
+
- **Feed-Forward**: SiLU (Swish)
|
| 100 |
+
- **Normalization**: RMS Norm (ε=1e-5)
|
| 101 |
+
|
| 102 |
+
## Tokenizer
|
| 103 |
+
|
| 104 |
+
- **Type**: SentencePiece
|
| 105 |
+
- **Vocabulary Size**: 512 tokens
|
| 106 |
+
- **Special Tokens**:
|
| 107 |
+
- `<s>` (BOS): Token ID 1
|
| 108 |
+
- `</s>` (EOS): Token ID 2
|
| 109 |
+
- `<unk>` (UNK): Token ID 0
|
| 110 |
+
|
| 111 |
+
## Performance
|
| 112 |
+
|
| 113 |
+
Typical inference speed on different hardware:
|
| 114 |
+
- **CPU**: ~50-100 tokens/sec
|
| 115 |
+
- **GPU (RTX 3090)**: ~500-1000 tokens/sec
|
| 116 |
+
- **GPU (A100)**: ~2000+ tokens/sec
|
| 117 |
+
|
| 118 |
+
Memory requirements:
|
| 119 |
+
- **Model weights**: ~24MB (fp32)
|
| 120 |
+
- **Inference memory**: ~200-300MB
|
| 121 |
+
|
| 122 |
+
## Training Details
|
| 123 |
+
|
| 124 |
+
### Dataset
|
| 125 |
+
- Source: TinyStories (Roneneldan et al.)
|
| 126 |
+
- Stories about simple, everyday events
|
| 127 |
+
- ~50 shards, ~1.5GB total
|
| 128 |
+
- Pre-tokenized to uint16 arrays
|
| 129 |
+
|
| 130 |
+
### Optimization
|
| 131 |
+
- **Optimizer**: AdamW
|
| 132 |
+
- **Learning Rate**: 1e-3 (with cosine annealing)
|
| 133 |
+
- **Batch Size**: 64
|
| 134 |
+
- **Gradient Accumulation**: 8 steps
|
| 135 |
+
- **Warmup**: 100 iterations
|
| 136 |
+
|
| 137 |
+
### Convergence
|
| 138 |
+
```
|
| 139 |
+
Iteration Train Loss Val Loss
|
| 140 |
+
0 6.27 6.29
|
| 141 |
+
50 5.24 5.31
|
| 142 |
+
100 4.81 4.77
|
| 143 |
+
```
|
| 144 |
+
|
| 145 |
+
## Limitations
|
| 146 |
+
|
| 147 |
+
1. **Knowledge Cutoff**: Trained only on TinyStories dataset
|
| 148 |
+
2. **Output Quality**: Designed for short stories, may struggle with other domains
|
| 149 |
+
3. **Vocabulary**: 512-token vocabulary is limited (compared to full LLaMA's 32k)
|
| 150 |
+
4. **Sequence Length**: Max 2048 tokens
|
| 151 |
+
5. **Fine-tuning**: Intended for inference, may require retraining for other tasks
|
| 152 |
+
|
| 153 |
+
## Use Cases
|
| 154 |
+
|
| 155 |
+
✓ Educational purposes
|
| 156 |
+
✓ Lightweight story generation
|
| 157 |
+
✓ Research on small language models
|
| 158 |
+
✓ Inference on CPU/edge devices
|
| 159 |
+
✓ Fine-tuning on smaller datasets
|
| 160 |
+
|
| 161 |
+
✗ Production deployments
|
| 162 |
+
✗ Knowledge-intensive tasks
|
| 163 |
+
✗ Long-form content generation
|
| 164 |
+
✗ Multilingual tasks
|
| 165 |
+
|
| 166 |
+
## Files in This Repository
|
| 167 |
+
|
| 168 |
+
- `model.safetensors` - Model weights in safetensors format (fp32)
|
| 169 |
+
- `config.json` - Model configuration
|
| 170 |
+
- `tokenizer.model` - SentencePiece tokenizer vocabulary
|
| 171 |
+
- `tokenizer_config.json` - Tokenizer configuration
|
| 172 |
+
- `README.md` - This file
|
| 173 |
+
|
| 174 |
+
## Citation
|
| 175 |
+
|
| 176 |
+
If you use this model in your research, please cite:
|
| 177 |
+
|
| 178 |
+
```bibtex
|
| 179 |
+
@article{tinystories,
|
| 180 |
+
title={TinyStories: How Small Can Language Models Be and Still Speak Coherent English?},
|
| 181 |
+
author={Eldan, Ronen and Li, Yonatan},
|
| 182 |
+
journal={arXiv preprint arXiv:2305.07759},
|
| 183 |
+
year={2023}
|
| 184 |
+
}
|
| 185 |
+
|
| 186 |
+
@article{llama2,
|
| 187 |
+
title={Llama 2: Open Foundation and Fine-Tuned Chat Models},
|
| 188 |
+
author={Touvron, Hugo and others},
|
| 189 |
+
journal={arXiv preprint arXiv:2307.09288},
|
| 190 |
+
year={2023}
|
| 191 |
+
}
|
| 192 |
+
```
|
| 193 |
+
|
| 194 |
+
## License
|
| 195 |
+
|
| 196 |
+
This model is provided as-is for educational and research purposes.
|
| 197 |
+
|
| 198 |
+
## Contact & Feedback
|
| 199 |
+
|
| 200 |
+
Created with PyTorch and transformers library.
|
| 201 |
+
For questions or issues, please open an issue on the model repository.
|
| 202 |
+
|
| 203 |
+
---
|
| 204 |
+
|
| 205 |
+
**Status**: ✅ Ready for inference
|
| 206 |
+
**Last Updated**: 2026-05-08
|
| 207 |
+
**Format**: safetensors (fp32)
|
config.json
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"architectures": [
|
| 3 |
+
"LlamaForCausalLM"
|
| 4 |
+
],
|
| 5 |
+
"attention_dropout": 0.0,
|
| 6 |
+
"bos_token_id": 1,
|
| 7 |
+
"eos_token_id": 2,
|
| 8 |
+
"hidden_act": "silu",
|
| 9 |
+
"hidden_size": 288,
|
| 10 |
+
"initializer_range": 0.02,
|
| 11 |
+
"intermediate_size": 1152,
|
| 12 |
+
"max_position_embeddings": 2048,
|
| 13 |
+
"model_type": "llama",
|
| 14 |
+
"num_attention_heads": 6,
|
| 15 |
+
"num_hidden_layers": 6,
|
| 16 |
+
"num_key_value_heads": 6,
|
| 17 |
+
"pad_token_id": 0,
|
| 18 |
+
"pretraining_tp": 1,
|
| 19 |
+
"rms_norm_eps": 1e-05,
|
| 20 |
+
"rope_scaling": null,
|
| 21 |
+
"rope_theta": 10000.0,
|
| 22 |
+
"tie_word_embeddings": false,
|
| 23 |
+
"torch_dtype": "float32",
|
| 24 |
+
"transformers_version": "4.36.0",
|
| 25 |
+
"use_cache": true,
|
| 26 |
+
"vocab_size": 512
|
| 27 |
+
}
|
model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bed91b7aeb518d64f5265f2cadbea89da2c8fdf9d83d2dac469905e18c6eaae2
|
| 3 |
+
size 25088104
|
tokenizer.model
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:219d5967cd1bc4dbdd0d880fddcf4d61a703391f79c889dc63a0c4b0eb367823
|
| 3 |
+
size 7734
|
tokenizer_config.json
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"add_bos_token": true,
|
| 3 |
+
"add_eos_token": false,
|
| 4 |
+
"add_prefix_space": false,
|
| 5 |
+
"legacy": false,
|
| 6 |
+
"model_max_length": 2048,
|
| 7 |
+
"tokenizer_class": "LlamaTokenizer",
|
| 8 |
+
"bos_token": {
|
| 9 |
+
"__type": "AddedToken",
|
| 10 |
+
"content": "<s>",
|
| 11 |
+
"lstrip": false,
|
| 12 |
+
"normalized": false,
|
| 13 |
+
"rstrip": false,
|
| 14 |
+
"single_word": false
|
| 15 |
+
},
|
| 16 |
+
"eos_token": {
|
| 17 |
+
"__type": "AddedToken",
|
| 18 |
+
"content": "</s>",
|
| 19 |
+
"lstrip": false,
|
| 20 |
+
"normalized": false,
|
| 21 |
+
"rstrip": false,
|
| 22 |
+
"single_word": false
|
| 23 |
+
},
|
| 24 |
+
"unk_token": {
|
| 25 |
+
"__type": "AddedToken",
|
| 26 |
+
"content": "<unk>",
|
| 27 |
+
"lstrip": false,
|
| 28 |
+
"normalized": false,
|
| 29 |
+
"rstrip": false,
|
| 30 |
+
"single_word": false
|
| 31 |
+
}
|
| 32 |
+
}
|