Text Generation
Transformers
Safetensors
llama
metadata-localization
chat
3b
without-metadata
sft
lora-merged
text-generation-inference
Instructions to use iamshnoo/combined_without_metadata_3b_chat with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use iamshnoo/combined_without_metadata_3b_chat with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="iamshnoo/combined_without_metadata_3b_chat")# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("iamshnoo/combined_without_metadata_3b_chat") model = AutoModelForCausalLM.from_pretrained("iamshnoo/combined_without_metadata_3b_chat", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use iamshnoo/combined_without_metadata_3b_chat with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "iamshnoo/combined_without_metadata_3b_chat" # 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_without_metadata_3b_chat", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/iamshnoo/combined_without_metadata_3b_chat
- SGLang
How to use iamshnoo/combined_without_metadata_3b_chat 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_without_metadata_3b_chat" \ --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_without_metadata_3b_chat", "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_without_metadata_3b_chat" \ --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_without_metadata_3b_chat", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use iamshnoo/combined_without_metadata_3b_chat with Docker Model Runner:
docker model run hf.co/iamshnoo/combined_without_metadata_3b_chat
Update model card and embedded training curves
Browse files- README.md +18 -2
- assets/grad_norm.png +0 -0
- assets/learning_rate.png +0 -0
- assets/train_loss.png +0 -0
README.md
CHANGED
|
@@ -15,7 +15,7 @@ tags:
|
|
| 15 |
|
| 16 |
## Summary
|
| 17 |
|
| 18 |
-
This repo contains the merged chat model for the combined without metadata 3b branch of the metadata localization project. It was produced by supervised fine-tuning on the project QA benchmark after
|
| 19 |
|
| 20 |
## Variant Metadata
|
| 21 |
|
|
@@ -60,6 +60,22 @@ This repo contains the merged chat model for the combined without metadata 3b br
|
|
| 60 |
- `per_device_train_batch_size=2`, `gradient_accumulation_steps=8`
|
| 61 |
- LoRA targets: `q_proj`, `k_proj`, `v_proj`, `o_proj`, `gate_proj`, `up_proj`, `down_proj`
|
| 62 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 63 |
## Project Context
|
| 64 |
|
| 65 |
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).
|
|
@@ -67,4 +83,4 @@ This model is part of the metadata localization release. Related checkpoints and
|
|
| 67 |
- Project repository: [https://github.com/iamshnoo/metadata_localization](https://github.com/iamshnoo/metadata_localization)
|
| 68 |
- Paper: [https://arxiv.org/abs/2601.15236](https://arxiv.org/abs/2601.15236)
|
| 69 |
|
| 70 |
-
Last synced: `2026-04-02
|
|
|
|
| 15 |
|
| 16 |
## Summary
|
| 17 |
|
| 18 |
+
This repo contains the merged chat model for the combined without metadata 3b branch of the metadata localization project. It was produced by supervised fine-tuning on the project QA benchmark after project pretraining.
|
| 19 |
|
| 20 |
## Variant Metadata
|
| 21 |
|
|
|
|
| 60 |
- `per_device_train_batch_size=2`, `gradient_accumulation_steps=8`
|
| 61 |
- LoRA targets: `q_proj`, `k_proj`, `v_proj`, `o_proj`, `gate_proj`, `up_proj`, `down_proj`
|
| 62 |
|
| 63 |
+
## Training Curves
|
| 64 |
+
|
| 65 |
+
Static plots below were exported from the private Weights & Biases run and embedded here for public access.
|
| 66 |
+
|
| 67 |
+
### Train Loss
|
| 68 |
+
|
| 69 |
+

|
| 70 |
+
|
| 71 |
+
### Learning Rate
|
| 72 |
+
|
| 73 |
+

|
| 74 |
+
|
| 75 |
+
### Gradient Norm
|
| 76 |
+
|
| 77 |
+

|
| 78 |
+
|
| 79 |
## Project Context
|
| 80 |
|
| 81 |
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).
|
|
|
|
| 83 |
- Project repository: [https://github.com/iamshnoo/metadata_localization](https://github.com/iamshnoo/metadata_localization)
|
| 84 |
- Paper: [https://arxiv.org/abs/2601.15236](https://arxiv.org/abs/2601.15236)
|
| 85 |
|
| 86 |
+
Last synced: `2026-04-02 14:48:10 UTC`
|
assets/grad_norm.png
ADDED
|
assets/learning_rate.png
ADDED
|
assets/train_loss.png
ADDED
|