Text Generation
Transformers
Safetensors
English
llama
nanodex
tiny-lm
pretrained-from-scratch
text-generation-inference
Instructions to use DedeProGames/Overaddicted-500K with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use DedeProGames/Overaddicted-500K with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="DedeProGames/Overaddicted-500K")# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("DedeProGames/Overaddicted-500K") model = AutoModelForCausalLM.from_pretrained("DedeProGames/Overaddicted-500K", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use DedeProGames/Overaddicted-500K with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "DedeProGames/Overaddicted-500K" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "DedeProGames/Overaddicted-500K", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/DedeProGames/Overaddicted-500K
- SGLang
How to use DedeProGames/Overaddicted-500K 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 "DedeProGames/Overaddicted-500K" \ --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": "DedeProGames/Overaddicted-500K", "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 "DedeProGames/Overaddicted-500K" \ --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": "DedeProGames/Overaddicted-500K", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use DedeProGames/Overaddicted-500K with Docker Model Runner:
docker model run hf.co/DedeProGames/Overaddicted-500K
| { | |
| "job_id": "88cbea07b92d", | |
| "tier": "500k", | |
| "label": "NanoDex-500k", | |
| "n_params": 492192, | |
| "target_tokens": 1500000000, | |
| "tokens_seen": 1499987968, | |
| "steps": 11444, | |
| "seq_len": 512, | |
| "final_loss": 3.5918569564819336, | |
| "best_loss": 3.3391036987304688, | |
| "peak_lr": 0.004, | |
| "batch_tokens": 131072, | |
| "optimizer": "AdamW(0.9, 0.95) wd=0.1 clip=1.0", | |
| "schedule": "warmup 2% + cosine to 10%", | |
| "dataset": "HuggingFaceFW/fineweb-edu (sample-10BT)", | |
| "architecture": "LlamaForCausalLM (SiLU, RMSNorm, RoPE, GQA, tied embeddings)", | |
| "wall_time_s": 2033.0310702323914, | |
| "trained_by": "DedeProGames" | |
| } |