Instructions to use yarenty/qwen2.5-3B-datafusion-instruct-gguf with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use yarenty/qwen2.5-3B-datafusion-instruct-gguf with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf yarenty/qwen2.5-3B-datafusion-instruct-gguf # Run inference directly in the terminal: llama cli -hf yarenty/qwen2.5-3B-datafusion-instruct-gguf
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf yarenty/qwen2.5-3B-datafusion-instruct-gguf # Run inference directly in the terminal: llama cli -hf yarenty/qwen2.5-3B-datafusion-instruct-gguf
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf yarenty/qwen2.5-3B-datafusion-instruct-gguf # Run inference directly in the terminal: ./llama-cli -hf yarenty/qwen2.5-3B-datafusion-instruct-gguf
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf yarenty/qwen2.5-3B-datafusion-instruct-gguf # Run inference directly in the terminal: ./build/bin/llama-cli -hf yarenty/qwen2.5-3B-datafusion-instruct-gguf
Use Docker
docker model run hf.co/yarenty/qwen2.5-3B-datafusion-instruct-gguf
- LM Studio
- Jan
- Ollama
How to use yarenty/qwen2.5-3B-datafusion-instruct-gguf with Ollama:
ollama run hf.co/yarenty/qwen2.5-3B-datafusion-instruct-gguf
- Unsloth Desktop
- Pi
How to use yarenty/qwen2.5-3B-datafusion-instruct-gguf with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf yarenty/qwen2.5-3B-datafusion-instruct-gguf
Configure the model in Pi
# Install Pi: npm install -g @earendil-works/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "yarenty/qwen2.5-3B-datafusion-instruct-gguf" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use yarenty/qwen2.5-3B-datafusion-instruct-gguf with Docker Model Runner:
docker model run hf.co/yarenty/qwen2.5-3B-datafusion-instruct-gguf
- Lemonade
How to use yarenty/qwen2.5-3B-datafusion-instruct-gguf with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull yarenty/qwen2.5-3B-datafusion-instruct-gguf
Run and chat with the model
lemonade run user.qwen2.5-3B-datafusion-instruct-gguf-{{QUANT_TAG}}List all available models
lemonade list
- Hermes Agent
How to use yarenty/qwen2.5-3B-datafusion-instruct-gguf with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf yarenty/qwen2.5-3B-datafusion-instruct-gguf
Configure Hermes
# Install Hermes: curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash hermes setup # Point Hermes at the local server: hermes config set model.provider custom hermes config set model.base_url http://127.0.0.1:8080/v1 hermes config set model.default yarenty/qwen2.5-3B-datafusion-instruct-gguf
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use yarenty/qwen2.5-3B-datafusion-instruct-gguf with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf yarenty/qwen2.5-3B-datafusion-instruct-gguf
Configure OpenClaw
# Install OpenClaw: npm install -g openclaw@latest # Register the local server and set it as the default model: openclaw onboard --non-interactive --mode local \ --auth-choice custom-api-key \ --custom-base-url http://127.0.0.1:8080/v1 \ --custom-model-id "yarenty/qwen2.5-3B-datafusion-instruct-gguf" \ --custom-provider-id llama-cpp \ --custom-compatibility openai \ --custom-text-input \ --accept-risk \ --skip-health
Run OpenClaw
openclaw agent --local --agent main --message "Hello from Hugging Face"
Update README.md
Browse files
README.md
CHANGED
|
@@ -134,49 +134,17 @@ You are a helpful, concise, and accurate coding assistant specialized in Rust an
|
|
| 134 |
- **Response Time:** Fast generation with proper stop sequences
|
| 135 |
- **Memory Usage:** Efficient token management
|
| 136 |
|
| 137 |
-
|
| 138 |
-
|
| 139 |
-
### Development
|
| 140 |
-
- **Code Generation:** Generate Rust functions and DataFusion queries
|
| 141 |
-
- **Debugging:** Identify and fix common issues
|
| 142 |
-
- **Documentation:** Create clear technical explanations
|
| 143 |
-
- **Testing:** Generate test cases and validation code
|
| 144 |
-
|
| 145 |
-
### Learning
|
| 146 |
-
- **Tutorial Creation:** Step-by-step learning materials
|
| 147 |
-
- **Best Practices:** Learn recommended approaches
|
| 148 |
-
- **Pattern Recognition:** Understand common design patterns
|
| 149 |
-
- **API Exploration:** Discover available functionality
|
| 150 |
-
|
| 151 |
-
### Production Support
|
| 152 |
-
- **Query Optimization:** Improve SQL performance
|
| 153 |
-
- **Troubleshooting:** Resolve runtime issues
|
| 154 |
-
- **Integration:** Connect different data sources
|
| 155 |
-
- **Monitoring:** Set up observability and tracing
|
| 156 |
-
|
| 157 |
-
## Limitations and Considerations
|
| 158 |
-
|
| 159 |
-
### Technical Limitations
|
| 160 |
-
- **Context Window:** Limited to training data scope
|
| 161 |
-
- **Real-time Updates:** May not reflect latest API changes
|
| 162 |
-
- **Complex Queries:** Very complex scenarios may require human review
|
| 163 |
-
- **Edge Cases:** Unusual configurations may need manual intervention
|
| 164 |
-
|
| 165 |
-
### Best Practices
|
| 166 |
-
- **Verify Output:** Always review generated code before deployment
|
| 167 |
-
- **Test Thoroughly:** Validate generated queries and functions
|
| 168 |
-
- **Stay Updated:** Check for newer model versions
|
| 169 |
-
- **Human Oversight:** Use as assistant, not replacement for expertise
|
| 170 |
|
| 171 |
## Installation and Setup
|
| 172 |
|
| 173 |
### Ollama (Recommended)
|
| 174 |
```bash
|
| 175 |
# Pull the model
|
| 176 |
-
ollama pull jaro/
|
| 177 |
|
| 178 |
# Run inference
|
| 179 |
-
ollama run jaro/
|
| 180 |
```
|
| 181 |
|
| 182 |
### Direct GGUF Usage
|
|
@@ -195,15 +163,8 @@ ollama run jaro/qwen2.5-3B-datafusion-instruct
|
|
| 195 |
| **Deployment** | Development/Production | Production/Resource-constrained |
|
| 196 |
| **Use Case** | Maximum quality | Balanced performance |
|
| 197 |
|
| 198 |
-
## Community and Support
|
| 199 |
-
|
| 200 |
-
### Contributing
|
| 201 |
-
- Report issues with model behavior
|
| 202 |
-
- Suggest improvements to training data
|
| 203 |
-
- Share use cases and success stories
|
| 204 |
-
- Contribute to the DataFusion ecosystem
|
| 205 |
|
| 206 |
-
##
|
| 207 |
- **DataFusion Documentation:** https://docs.datafusion.org/
|
| 208 |
- **Apache Arrow:** https://arrow.apache.org/
|
| 209 |
- **Rust Programming Language:** https://www.rust-lang.org/
|
|
@@ -218,7 +179,7 @@ When using this model in research or publications, please cite:
|
|
| 218 |
title={Qwen2.5-3B-DataFusion-Instruct: A Specialized Model for DataFusion Ecosystem},
|
| 219 |
author={Fine-tuned on DataFusion Ecosystem QA Dataset},
|
| 220 |
year={2025},
|
| 221 |
-
url={https://github.com/
|
| 222 |
license={Apache-2.0}
|
| 223 |
}
|
| 224 |
```
|
|
|
|
| 134 |
- **Response Time:** Fast generation with proper stop sequences
|
| 135 |
- **Memory Usage:** Efficient token management
|
| 136 |
|
| 137 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 138 |
|
| 139 |
## Installation and Setup
|
| 140 |
|
| 141 |
### Ollama (Recommended)
|
| 142 |
```bash
|
| 143 |
# Pull the model
|
| 144 |
+
ollama pull jaro/qwen_datafusion
|
| 145 |
|
| 146 |
# Run inference
|
| 147 |
+
ollama run jaro/qwen_datafusion
|
| 148 |
```
|
| 149 |
|
| 150 |
### Direct GGUF Usage
|
|
|
|
| 163 |
| **Deployment** | Development/Production | Production/Resource-constrained |
|
| 164 |
| **Use Case** | Maximum quality | Balanced performance |
|
| 165 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 166 |
|
| 167 |
+
## Resources
|
| 168 |
- **DataFusion Documentation:** https://docs.datafusion.org/
|
| 169 |
- **Apache Arrow:** https://arrow.apache.org/
|
| 170 |
- **Rust Programming Language:** https://www.rust-lang.org/
|
|
|
|
| 179 |
title={Qwen2.5-3B-DataFusion-Instruct: A Specialized Model for DataFusion Ecosystem},
|
| 180 |
author={Fine-tuned on DataFusion Ecosystem QA Dataset},
|
| 181 |
year={2025},
|
| 182 |
+
url={https://github.com/yarenty/trainer},
|
| 183 |
license={Apache-2.0}
|
| 184 |
}
|
| 185 |
```
|