File size: 851 Bytes
f61db7c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
33
34
35
36
37
38
39
---
library_name: transformers
metrics:
- code_eval
tags:
- code
- mlx
model-index:
- name: WizardCoder
  results:
  - task:
      type: text-generation
    dataset:
      name: HumanEval
      type: openai_humaneval
    metrics:
    - type: pass@1
      value: 0.799
      name: pass@1
      verified: false
---

# ipetrukha/WizardCoder-33B-V1.1-4bit

The Model [ipetrukha/WizardCoder-33B-V1.1-4bit](https://huggingface.co/ipetrukha/WizardCoder-33B-V1.1-4bit) was converted to MLX format from [WizardLMTeam/WizardCoder-33B-V1.1](https://huggingface.co/WizardLMTeam/WizardCoder-33B-V1.1) using mlx-lm version **0.16.1**.

## Use with mlx

```bash
pip install mlx-lm
```

```python
from mlx_lm import load, generate

model, tokenizer = load("ipetrukha/WizardCoder-33B-V1.1-4bit")
response = generate(model, tokenizer, prompt="hello", verbose=True)
```