Add dataset card and links to paper/GitHub

#2
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +39 -0
README.md ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ task_categories:
3
+ - other
4
+ ---
5
+
6
+ # NIV: Neural Axis Variations for Variable Font Generation
7
+
8
+ This dataset contains over one million variation tuples derived from variable Google Fonts, used for training the **NIV (Neural Axis Variations)** model for automatic variable font generation.
9
+
10
+ - **Paper:** [NIV: Neural Axis Variations for Variable Font Generation](https://huggingface.co/papers/2606.05261)
11
+ - **Project Page:** [https://ndvbd.github.io/NIV/](https://ndvbd.github.io/NIV/)
12
+ - **Repository:** [https://github.com/ndvbd/NIV](https://github.com/ndvbd/NIV)
13
+
14
+ ## Dataset Description
15
+ The dataset comprises per-point displacements for glyph outlines across various design axes such as weight (`wght`), width (`wdth`), slant (`slnt`), and optical size (`opsz`). It is designed to enable neural models to predict continuous geometric variations for vector glyphs, allowing for the conversion of static fonts into functional variable fonts.
16
+
17
+ ## Sample Usage
18
+
19
+ As per the official repository, you can download the prepared dataset using the `huggingface_hub` CLI:
20
+
21
+ ```bash
22
+ pip install -U huggingface_hub
23
+ hf download ndvb/NIV \
24
+ --repo-type dataset \
25
+ --local-dir dataset
26
+ ```
27
+
28
+ ## Citation
29
+
30
+ If you find this work or dataset useful in your research, please consider citing:
31
+
32
+ ```bibtex
33
+ @article{benedek2026niv,
34
+ title={NIV: Neural Axis Variations for Variable Font Generation},
35
+ author={Benedek, Nadav and Shamir, Ariel and Fried, Ohad},
36
+ journal={arXiv preprint arXiv:2606.05261},
37
+ year={2026}
38
+ }
39
+ ```