File size: 880 Bytes
fb28955
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
---

license: mit
language:
- pt
- en
tags:
- code
- list-coder
- deepseek
---


# List-2.0-Ultra-Coder

List-2.0-Ultra-Coder is a lightweight, efficient coding assistant based on the DeepSeek-R1-Distill-Qwen-1.5B architecture. It is optimized for use within the List Coder ecosystem, providing high-speed reasoning and code suggestions.

## Model Details
- **Architecture**: DeepSeek-R1-Distill-Qwen-1.5B
- **Parameters**: 1.5 Billion
- **Task**: Code Generation, Reasoning, Logic
- **Optimization**: Optimized for low-latency local execution.

## Usage
You can use this model with the `transformers` library:

```python

from transformers import AutoModelForCausalLM, AutoTokenizer



model_name = "List-Enterprise/List-2.0-Ultra-Coder"

tokenizer = AutoTokenizer.from_pretrained(model_name)

model = AutoModelForCausalLM.from_pretrained(model_name)

```