Text Generation
Transformers
Safetensors
English
qwen3
claimtrace
smoke-test
not-the-submission
unsloth
conversational
text-generation-inference
Instructions to use troysaved/claimtrace-smoke with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use troysaved/claimtrace-smoke with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="troysaved/claimtrace-smoke") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("troysaved/claimtrace-smoke") model = AutoModelForCausalLM.from_pretrained("troysaved/claimtrace-smoke", device_map="auto") messages = [ {"role": "user", "content": "Who are you?"}, ] inputs = tokenizer.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use troysaved/claimtrace-smoke with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "troysaved/claimtrace-smoke" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "troysaved/claimtrace-smoke", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/troysaved/claimtrace-smoke
- SGLang
How to use troysaved/claimtrace-smoke 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 "troysaved/claimtrace-smoke" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "troysaved/claimtrace-smoke", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'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 "troysaved/claimtrace-smoke" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "troysaved/claimtrace-smoke", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Unsloth Desktop
- Docker Model Runner
How to use troysaved/claimtrace-smoke with Docker Model Runner:
docker model run hf.co/troysaved/claimtrace-smoke
card: mark as smoke-test artifact, point to the real submission
Browse files
README.md
CHANGED
|
@@ -1,21 +1,32 @@
|
|
| 1 |
---
|
| 2 |
base_model: unsloth/qwen3-1.7b-unsloth-bnb-4bit
|
| 3 |
-
|
| 4 |
-
- text-generation-inference
|
| 5 |
-
- transformers
|
| 6 |
-
- unsloth
|
| 7 |
-
- qwen3
|
| 8 |
license: apache-2.0
|
| 9 |
-
language:
|
| 10 |
-
-
|
| 11 |
---
|
| 12 |
|
| 13 |
-
#
|
| 14 |
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
|
| 19 |
-
This
|
|
|
|
|
|
|
|
|
|
|
|
|
| 20 |
|
| 21 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
base_model: unsloth/qwen3-1.7b-unsloth-bnb-4bit
|
| 3 |
+
library_name: transformers
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4 |
license: apache-2.0
|
| 5 |
+
language: [en]
|
| 6 |
+
tags: [claimtrace, smoke-test, not-the-submission, qwen3, unsloth]
|
| 7 |
---
|
| 8 |
|
| 9 |
+
# claimtrace — smoke-test artifact (NOT the submission)
|
| 10 |
|
| 11 |
+
> **Looking for the claimtrace model? It is
|
| 12 |
+
> [`troysaved/claimtrace-qwen3-1.7b`](https://huggingface.co/troysaved/claimtrace-qwen3-1.7b).**
|
| 13 |
+
> This repo is not that model and should not be evaluated as it.
|
| 14 |
|
| 15 |
+
This is a throwaway checkpoint from a 6-conversation end-to-end pipeline test
|
| 16 |
+
(`smoke.sh`: generate → train → eval on a tiny batch), uploaded on 2026-08-19 to
|
| 17 |
+
prove the publish path worked before the real run was pushed. It was trained on a
|
| 18 |
+
smoke batch, not on the dataset, and it holds no meaningful behavior. Its numbers
|
| 19 |
+
are not reported anywhere and it is not referenced by the submission.
|
| 20 |
|
| 21 |
+
It is kept public rather than deleted so that any link created while the publish
|
| 22 |
+
path was being tested still resolves to an explanation instead of a 404.
|
| 23 |
+
|
| 24 |
+
## The actual submission
|
| 25 |
+
|
| 26 |
+
| | |
|
| 27 |
+
|---|---|
|
| 28 |
+
| Model | [`troysaved/claimtrace-qwen3-1.7b`](https://huggingface.co/troysaved/claimtrace-qwen3-1.7b) @ `d02f380b37e5ce2ea8d816ff8379718148874b66` (run `qadv1`) |
|
| 29 |
+
| Dataset | [`troysaved/claimtrace-ledger-dataset`](https://huggingface.co/datasets/troysaved/claimtrace-ledger-dataset) @ `9ee828685f5aba3d0f9ac4edf69a40b9b3dc82f9` (v4 spec, 407 conversations) |
|
| 30 |
+
| Behavior | A tutoring model that keeps a claim-provenance ledger: an item enters `KNOWN` only after the learner demonstrates it; a self-report is `CLAIMED`, however plausible. |
|
| 31 |
+
|
| 32 |
+
Trained with [Unsloth](https://github.com/unslothai/unsloth) and Hugging Face TRL.
|