MatteoOmenetti
commited on
Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,32 @@
|
|
1 |
-
---
|
2 |
-
license: mit
|
3 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: mit
|
3 |
+
---
|
4 |
+
|
5 |
+
# Code Formula Model
|
6 |
+
|
7 |
+
The **Code Formula Model** processes an image of a code snippet or formula at 120 DPI and outputs its content.
|
8 |
+
|
9 |
+
- **Code Snippets**:
|
10 |
+
The model identifies the programming language and outputs the code repsecting the indendation shown in the given image. The output format will be:<br>
|
11 |
+
"<\_\<programming language\>\_> \<content of the image\>"<br>
|
12 |
+
Example:<br>
|
13 |
+
"<_Java_> System.out.println("Hello World.");"
|
14 |
+
|
15 |
+
- **Formulas**:
|
16 |
+
The model generates the corresponding LaTeX code.
|
17 |
+
|
18 |
+
|
19 |
+
|
20 |
+
# References
|
21 |
+
```
|
22 |
+
@techreport{Docling,
|
23 |
+
author = {Deep Search Team},
|
24 |
+
month = {8},
|
25 |
+
title = {{Docling Technical Report}},
|
26 |
+
url={https://arxiv.org/abs/2408.09869},
|
27 |
+
eprint={2408.09869},
|
28 |
+
doi = "10.48550/arXiv.2408.09869",
|
29 |
+
version = {1.0.0},
|
30 |
+
year = {2024}
|
31 |
+
}
|
32 |
+
```
|