Add huggingface checkpoints
Browse files- README.md +10 -5
- docs/DATA.md +1 -1
README.md
CHANGED
|
@@ -18,10 +18,11 @@
|
|
| 18 |
|
| 19 |
</div>
|
| 20 |
|
| 21 |
-
## Hugging Face models
|
| 22 |
|
| 23 |
-
The UniDisc checkpoints are available on
|
| 24 |
-
* [
|
|
|
|
| 25 |
|
| 26 |
## Getting Started
|
| 27 |
|
|
@@ -34,9 +35,13 @@ uv sync
|
|
| 34 |
|
| 35 |
For a more detailed installation guide, please refer to [INSTALL.md](docs/INSTALL.md).
|
| 36 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 37 |
## Training
|
| 38 |
|
| 39 |
-
See [TRAIN.md](docs/TRAIN.md) for
|
| 40 |
|
| 41 |
## Inference
|
| 42 |
|
|
@@ -47,7 +52,7 @@ TODO
|
|
| 47 |
<!-- <img src="docs/todo.png" width="1000"> -->
|
| 48 |
|
| 49 |
|
| 50 |
-
Interactive demo
|
| 51 |
```
|
| 52 |
python demo/server.py
|
| 53 |
python demo/client_simple_fasthtml.py
|
|
|
|
| 18 |
|
| 19 |
</div>
|
| 20 |
|
| 21 |
+
## Hugging Face models
|
| 22 |
|
| 23 |
+
The UniDisc checkpoints are available on Hugging Face:
|
| 24 |
+
* [Interleaved Image-Text](https://huggingface.co/aswerdlow/unidisc_interleaved)
|
| 25 |
+
* [Non-Interleaved (Static)](https://huggingface.co/aswerdlow/unidisc_non_interleaved)
|
| 26 |
|
| 27 |
## Getting Started
|
| 28 |
|
|
|
|
| 35 |
|
| 36 |
For a more detailed installation guide, please refer to [INSTALL.md](docs/INSTALL.md).
|
| 37 |
|
| 38 |
+
## Data
|
| 39 |
+
|
| 40 |
+
See [DATA.md](docs/DATA.md) for details on how to download and preprocess the datasets. We provide processing scripts and instructions for all of the used datasets. Additionally, we release a synthetic dataset available [here](https://huggingface.co/datasets/aswerdlow/unidisc_hq) and the corresponding [generation scripts](unidisc/datasets/preprocessing/unidisc_dataset/README.md) as well as the raw data.
|
| 41 |
+
|
| 42 |
## Training
|
| 43 |
|
| 44 |
+
See [TRAIN.md](docs/TRAIN.md) for training commands.
|
| 45 |
|
| 46 |
## Inference
|
| 47 |
|
|
|
|
| 52 |
<!-- <img src="docs/todo.png" width="1000"> -->
|
| 53 |
|
| 54 |
|
| 55 |
+
Interactive demo:
|
| 56 |
```
|
| 57 |
python demo/server.py
|
| 58 |
python demo/client_simple_fasthtml.py
|
docs/DATA.md
CHANGED
|
@@ -11,4 +11,4 @@ We support the following datasets:
|
|
| 11 |
- MMC4
|
| 12 |
- PixelProse
|
| 13 |
|
| 14 |
-
Additionally, we generated our own synthetic dataset and provide the [generation scripts](unidisc/datasets/preprocessing/unidisc_dataset/README.md) as well as the raw data.
|
|
|
|
| 11 |
- MMC4
|
| 12 |
- PixelProse
|
| 13 |
|
| 14 |
+
Additionally, we generated our own synthetic dataset available [here](https://huggingface.co/datasets/aswerdlow/unidisc_hq) and provide the [generation scripts](../unidisc/datasets/preprocessing/unidisc_dataset/README.md) as well as the raw data.
|