File size: 1,471 Bytes
18af512
 
 
 
 
 
 
 
 
 
94488cb
18af512
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
40
41
42
43
44
45
46
47
48
49
50
---
license: other
license_name: deepseek
license_link: >-
  https://raw.githubusercontent.com/deepseek-ai/DeepSeek-Coder/main/LICENSE-MODEL
datasets:
- nllg/datikz-v2
---

# Model Card for DeTi*k*Zify-DS<sub>1.3b</sub>
DeTi*k*Zify-DS<sub>1.3b</sub> is a language model that automatically converts
sketches and existing scientific figures into editable, semantics-preserving
Ti*k*Z graphics programs. It is based on [DeepSeek Coder
1.3b](https://huggingface.co/deepseek-ai/deepseek-coder-1.3b-base) and was
fine-tuned on
[DaTi*k*Z<sub>v2</sub>](https://huggingface.co/datasets/nllg/datikz-v2). Check
out the [DeTi*k*Zify](https://github.com/potamides/DeTikZify) project for more
information and tips on how to best run the model.

## Usage
```python
from operator import itemgetter

from detikzify.model import load
from detikzify.infer import DetikzifyPipeline
import torch

image = "https://w.wiki/A7Cc"
pipeline = DetikzifyPipeline(*load(
    base_model="nllg/detikzify-ds-1.3b",
    device_map="auto",
    torch_dtype=torch.bfloat16,
))

# generate a single TikZ program
fig = pipeline.sample(image=image)

# if it compiles, rasterize it and show it
if fig.is_rasterizable:
    fig.rasterize().show()

# run MCTS for 10 minutes and generate multiple TikZ programs
figs = set()
for score, fig in pipeline.simulate(image=image, timeout=600):
    figs.add((score, fig))

# save the best TikZ program
best = sorted(figs, key=itemgetter(0))[-1][1]
best.save("fig.tex")
```