Text Generation
Transformers
Safetensors
English
code
code-generation
cli
bash
python
terminal
automation
lora
fine-tuned
conversational
Instructions to use Maarij-Aqeel/CLI_model with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Maarij-Aqeel/CLI_model with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="Maarij-Aqeel/CLI_model") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("Maarij-Aqeel/CLI_model", dtype="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use Maarij-Aqeel/CLI_model with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Maarij-Aqeel/CLI_model" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Maarij-Aqeel/CLI_model", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/Maarij-Aqeel/CLI_model
- SGLang
How to use Maarij-Aqeel/CLI_model 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 "Maarij-Aqeel/CLI_model" \ --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": "Maarij-Aqeel/CLI_model", "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 "Maarij-Aqeel/CLI_model" \ --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": "Maarij-Aqeel/CLI_model", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use Maarij-Aqeel/CLI_model with Docker Model Runner:
docker model run hf.co/Maarij-Aqeel/CLI_model
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,16 +1,39 @@
|
|
| 1 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2 |
|
| 3 |
A fine-tuned version of **[DeepSeek-Coder-V2-Lite-Base](https://huggingface.co/deepseek-ai/deepseek-coder-2)** specialized in generating and understanding **command-line interface (CLI)** tools, **automation scripts**, and **terminal-based workflows**.
|
| 4 |
|
| 5 |
---
|
| 6 |
|
| 7 |
-
## Model Details
|
| 8 |
|
| 9 |
| Field | Value |
|
| 10 |
|-------------------|----------------------------------------|
|
| 11 |
| **Base Model** | DeepSeek-Coder-V2-Lite-Base |
|
| 12 |
| **Fine-tuned on** | Custom CLI-focused code dataset |
|
| 13 |
-
| **Objective** |
|
| 14 |
| **Domain** | CLI tools, Bash scripts, Python CLI apps |
|
| 15 |
| **Framework** | HuggingFace Transformers (PyTorch) |
|
| 16 |
| **Finetuning Method** | LoRA (Low-Rank Adaptation) |
|
|
@@ -42,4 +65,4 @@ This model is designed for developers who:
|
|
| 42 |
- Build terminal wrappers around REST APIs
|
| 43 |
- Create documentation and examples for terminal apps
|
| 44 |
|
| 45 |
-
---
|
|
|
|
| 1 |
+
---
|
| 2 |
+
tags:
|
| 3 |
+
- code
|
| 4 |
+
- code-generation
|
| 5 |
+
- cli
|
| 6 |
+
- bash
|
| 7 |
+
- python
|
| 8 |
+
- terminal
|
| 9 |
+
- automation
|
| 10 |
+
- transformers
|
| 11 |
+
- lora
|
| 12 |
+
- fine-tuned
|
| 13 |
+
language:
|
| 14 |
+
- en
|
| 15 |
+
license: mit
|
| 16 |
+
datasets:
|
| 17 |
+
- custom
|
| 18 |
+
base_model: deepseek-ai/deepseek-coder-v2-lite-base
|
| 19 |
+
model_type: causal-lm
|
| 20 |
+
library_name: transformers
|
| 21 |
+
pipeline_tag: text-generation
|
| 22 |
+
---
|
| 23 |
+
|
| 24 |
+
# 🛠️ cli-model-deepseek-v2-lite-finetuned
|
| 25 |
|
| 26 |
A fine-tuned version of **[DeepSeek-Coder-V2-Lite-Base](https://huggingface.co/deepseek-ai/deepseek-coder-2)** specialized in generating and understanding **command-line interface (CLI)** tools, **automation scripts**, and **terminal-based workflows**.
|
| 27 |
|
| 28 |
---
|
| 29 |
|
| 30 |
+
## 🧠 Model Details
|
| 31 |
|
| 32 |
| Field | Value |
|
| 33 |
|-------------------|----------------------------------------|
|
| 34 |
| **Base Model** | DeepSeek-Coder-V2-Lite-Base |
|
| 35 |
| **Fine-tuned on** | Custom CLI-focused code dataset |
|
| 36 |
+
| **Objective** | Next-token prediction / code generation |
|
| 37 |
| **Domain** | CLI tools, Bash scripts, Python CLI apps |
|
| 38 |
| **Framework** | HuggingFace Transformers (PyTorch) |
|
| 39 |
| **Finetuning Method** | LoRA (Low-Rank Adaptation) |
|
|
|
|
| 65 |
- Build terminal wrappers around REST APIs
|
| 66 |
- Create documentation and examples for terminal apps
|
| 67 |
|
| 68 |
+
---
|