Instructions to use lattice-ai/deepseek-coder-v2-lite with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use lattice-ai/deepseek-coder-v2-lite with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("lattice-ai/deepseek-coder-v2-lite", dtype="auto") - Notebooks
- Google Colab
- Kaggle
Add Lattice privacy config
Browse files- lattice_config.json +23 -0
lattice_config.json
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"lattice_version": "0.1.4",
|
| 3 |
+
"model_id": "lattice-ai/deepseek-coder-v2-lite",
|
| 4 |
+
"model_name": "Lattice DeepSeek Coder V2 Lite",
|
| 5 |
+
"base_model": "deepseek-ai/DeepSeek-Coder-V2-Lite-Instruct",
|
| 6 |
+
"tier": "wrapped",
|
| 7 |
+
"params": "15.7B",
|
| 8 |
+
"context_length": 163840,
|
| 9 |
+
"capabilities": [
|
| 10 |
+
"code",
|
| 11 |
+
"instruct",
|
| 12 |
+
"reasoning"
|
| 13 |
+
],
|
| 14 |
+
"privacy": {
|
| 15 |
+
"epsilon": null,
|
| 16 |
+
"delta": null,
|
| 17 |
+
"guardrails": true,
|
| 18 |
+
"sandbox": true,
|
| 19 |
+
"encrypted_logs": true,
|
| 20 |
+
"zero_telemetry": true,
|
| 21 |
+
"dp_sgd_support": true
|
| 22 |
+
}
|
| 23 |
+
}
|