Text Generation
Transformers
Safetensors
qwen3
solo
fine-tuned
lora
unsloth
conversational
text-generation-inference
Instructions to use zeeshaan-ai/GetSoloTech with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use zeeshaan-ai/GetSoloTech with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="zeeshaan-ai/GetSoloTech") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("zeeshaan-ai/GetSoloTech") model = AutoModelForCausalLM.from_pretrained("zeeshaan-ai/GetSoloTech") 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]:])) - Inference
- Notebooks
- Google Colab
- Kaggle
- Local Apps
- vLLM
How to use zeeshaan-ai/GetSoloTech with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "zeeshaan-ai/GetSoloTech" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "zeeshaan-ai/GetSoloTech", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/zeeshaan-ai/GetSoloTech
- SGLang
How to use zeeshaan-ai/GetSoloTech 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 "zeeshaan-ai/GetSoloTech" \ --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": "zeeshaan-ai/GetSoloTech", "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 "zeeshaan-ai/GetSoloTech" \ --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": "zeeshaan-ai/GetSoloTech", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Unsloth Studio new
How to use zeeshaan-ai/GetSoloTech with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for zeeshaan-ai/GetSoloTech to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for zeeshaan-ai/GetSoloTech to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for zeeshaan-ai/GetSoloTech to start chatting
Load model with FastModel
pip install unsloth from unsloth import FastModel model, tokenizer = FastModel.from_pretrained( model_name="zeeshaan-ai/GetSoloTech", max_seq_length=2048, ) - Docker Model Runner
How to use zeeshaan-ai/GetSoloTech with Docker Model Runner:
docker model run hf.co/zeeshaan-ai/GetSoloTech
Upload DataProcessorPipeline
Browse files
policy_preprocessor.json
CHANGED
|
@@ -11,28 +11,6 @@
|
|
| 11 |
"registry_name": "to_batch_processor",
|
| 12 |
"config": {}
|
| 13 |
},
|
| 14 |
-
{
|
| 15 |
-
"registry_name": "smolvla_new_line_processor",
|
| 16 |
-
"config": {}
|
| 17 |
-
},
|
| 18 |
-
{
|
| 19 |
-
"registry_name": "tokenizer_processor",
|
| 20 |
-
"config": {
|
| 21 |
-
"max_length": 48,
|
| 22 |
-
"task_key": "task",
|
| 23 |
-
"padding_side": "right",
|
| 24 |
-
"padding": "max_length",
|
| 25 |
-
"truncation": true,
|
| 26 |
-
"tokenizer_name": "HuggingFaceTB/SmolVLM2-500M-Video-Instruct"
|
| 27 |
-
}
|
| 28 |
-
},
|
| 29 |
-
{
|
| 30 |
-
"registry_name": "device_processor",
|
| 31 |
-
"config": {
|
| 32 |
-
"device": "cuda",
|
| 33 |
-
"float_dtype": null
|
| 34 |
-
}
|
| 35 |
-
},
|
| 36 |
{
|
| 37 |
"registry_name": "normalizer_processor",
|
| 38 |
"config": {
|
|
@@ -68,12 +46,34 @@
|
|
| 68 |
}
|
| 69 |
},
|
| 70 |
"norm_map": {
|
| 71 |
-
"
|
| 72 |
"STATE": "MEAN_STD",
|
| 73 |
-
"
|
| 74 |
}
|
| 75 |
},
|
| 76 |
-
"state_file": "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 77 |
}
|
| 78 |
]
|
| 79 |
}
|
|
|
|
| 11 |
"registry_name": "to_batch_processor",
|
| 12 |
"config": {}
|
| 13 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 14 |
{
|
| 15 |
"registry_name": "normalizer_processor",
|
| 16 |
"config": {
|
|
|
|
| 46 |
}
|
| 47 |
},
|
| 48 |
"norm_map": {
|
| 49 |
+
"ACTION": "MEAN_STD",
|
| 50 |
"STATE": "MEAN_STD",
|
| 51 |
+
"VISUAL": "IDENTITY"
|
| 52 |
}
|
| 53 |
},
|
| 54 |
+
"state_file": "policy_preprocessor_step_2_normalizer_processor.safetensors"
|
| 55 |
+
},
|
| 56 |
+
{
|
| 57 |
+
"registry_name": "pi05_prepare_state_tokenizer_processor_step",
|
| 58 |
+
"config": {}
|
| 59 |
+
},
|
| 60 |
+
{
|
| 61 |
+
"registry_name": "tokenizer_processor",
|
| 62 |
+
"config": {
|
| 63 |
+
"max_length": 200,
|
| 64 |
+
"task_key": "task",
|
| 65 |
+
"padding_side": "right",
|
| 66 |
+
"padding": "max_length",
|
| 67 |
+
"truncation": true,
|
| 68 |
+
"tokenizer_name": "google/paligemma-3b-pt-224"
|
| 69 |
+
}
|
| 70 |
+
},
|
| 71 |
+
{
|
| 72 |
+
"registry_name": "device_processor",
|
| 73 |
+
"config": {
|
| 74 |
+
"device": "cuda",
|
| 75 |
+
"float_dtype": null
|
| 76 |
+
}
|
| 77 |
}
|
| 78 |
]
|
| 79 |
}
|
policy_preprocessor_step_2_normalizer_processor.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0d3a29f5c48d4a834715c06fbcb2082ef14fde4a98f373a7a3e05d42375580ed
|
| 3 |
+
size 3756
|