|
|
--- |
|
|
pretty_name: "Nulla: Project Links" |
|
|
language: |
|
|
- en |
|
|
license: |
|
|
- cc0-1.0 |
|
|
tags: |
|
|
- tabular |
|
|
- links |
|
|
--- |
|
|
|
|
|
# Nulla v0.0.7 |
|
|
|
|
|
<p align="center"> |
|
|
<img src="./Nulla.png" alt="Nulla banner" width="960"> |
|
|
</p> |
|
|
|
|
|
# Nulla: Project Links (Hugging Face Dataset) |
|
|
|
|
|
This Hugging Face **dataset repository** contains a small, machine-readable CSV table of official/public links for the **Nulla** project. |
|
|
|
|
|
**Main GitHub repo (project source + full docs):** https://github.com/Tsoxer/nulla |
|
|
|
|
|
**Hugging Face Space (demo page with embedded YouTube trailer):** https://huggingface.co/spaces/Tsoxer/nulla |
|
|
|
|
|
## Dataset contents |
|
|
|
|
|
- `links.csv` — a single table with these columns: |
|
|
- `id`: short stable key **(NOT a URL)**, e.g. `github_repo`, `youtube_demo` |
|
|
- `type`: category label (repo / release / video / docs / community / etc.) |
|
|
- `title`: what humans see (e.g. “Nulla releases”) |
|
|
- `url`: the actual link (GitHub, YouTube, etc.) |
|
|
- `description`: one-line explanation of the link |
|
|
|
|
|
### Intended use |
|
|
|
|
|
- Provide a stable “official links index” for humans and tools |
|
|
- Let others programmatically fetch the canonical Nulla resources |
|
|
|
|
|
## How to load (Python) |
|
|
|
|
|
```python |
|
|
from datasets import load_dataset |
|
|
|
|
|
ds = load_dataset("Tsoxer/nulla") |
|
|
print(ds) |
|
|
print(ds["train"][0]) |
|
|
|