Text Generation
Transformers
Safetensors
llama
metadata-localization
leave-one-out
1b
with-metadata
pretraining
text-generation-inference
Instructions to use iamshnoo/combined_no_africa_with_metadata_1b with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use iamshnoo/combined_no_africa_with_metadata_1b with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="iamshnoo/combined_no_africa_with_metadata_1b")# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("iamshnoo/combined_no_africa_with_metadata_1b") model = AutoModelForCausalLM.from_pretrained("iamshnoo/combined_no_africa_with_metadata_1b", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use iamshnoo/combined_no_africa_with_metadata_1b with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "iamshnoo/combined_no_africa_with_metadata_1b" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "iamshnoo/combined_no_africa_with_metadata_1b", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/iamshnoo/combined_no_africa_with_metadata_1b
- SGLang
How to use iamshnoo/combined_no_africa_with_metadata_1b 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 "iamshnoo/combined_no_africa_with_metadata_1b" \ --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": "iamshnoo/combined_no_africa_with_metadata_1b", "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 "iamshnoo/combined_no_africa_with_metadata_1b" \ --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": "iamshnoo/combined_no_africa_with_metadata_1b", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use iamshnoo/combined_no_africa_with_metadata_1b with Docker Model Runner:
docker model run hf.co/iamshnoo/combined_no_africa_with_metadata_1b
Update model card from W&B metadata
Browse files
README.md
CHANGED
|
@@ -26,7 +26,9 @@ This repo contains the leave out africa 1b model at the final 10k-step checkpoin
|
|
| 26 |
|
| 27 |
## Weights & Biases Provenance
|
| 28 |
|
| 29 |
-
- Run:
|
|
|
|
|
|
|
| 30 |
- State: `finished`
|
| 31 |
- Runtime: `114h 1m 28s`
|
| 32 |
|
|
@@ -54,5 +56,6 @@ This repo contains the leave out africa 1b model at the final 10k-step checkpoin
|
|
| 54 |
This model is part of the metadata localization release. Related checkpoints and variants are grouped in the public Hugging Face collection [Metadata Conditioned LLMs](https://huggingface.co/collections/iamshnoo/metadata-conditioned-llms).
|
| 55 |
- Training data source: [News on the Web (NOW) Corpus](https://www.english-corpora.org/now/)
|
| 56 |
- Project repository: [https://github.com/iamshnoo/metadata_localization](https://github.com/iamshnoo/metadata_localization)
|
|
|
|
| 57 |
|
| 58 |
-
Last synced: `2026-04-02
|
|
|
|
| 26 |
|
| 27 |
## Weights & Biases Provenance
|
| 28 |
|
| 29 |
+
- Run name: `14/12/2025_17:04:06_combined_no_africa_with_metadata_1b`
|
| 30 |
+
- Internal run URL: `https://wandb.ai/iamshnoo/nanotron/runs/zpykugo9`
|
| 31 |
+
- Note: the Weights & Biases workspace is private; public readers should use the summarized metrics and configuration below.
|
| 32 |
- State: `finished`
|
| 33 |
- Runtime: `114h 1m 28s`
|
| 34 |
|
|
|
|
| 56 |
This model is part of the metadata localization release. Related checkpoints and variants are grouped in the public Hugging Face collection [Metadata Conditioned LLMs](https://huggingface.co/collections/iamshnoo/metadata-conditioned-llms).
|
| 57 |
- Training data source: [News on the Web (NOW) Corpus](https://www.english-corpora.org/now/)
|
| 58 |
- Project repository: [https://github.com/iamshnoo/metadata_localization](https://github.com/iamshnoo/metadata_localization)
|
| 59 |
+
- Paper: [https://arxiv.org/abs/2601.15236](https://arxiv.org/abs/2601.15236)
|
| 60 |
|
| 61 |
+
Last synced: `2026-04-02 13:50:25 UTC`
|