Dataset Viewer

The dataset viewer is not available because its heuristics could not detect any supported data files. You can try uploading some data files, or configuring the data files location manually.

FORGE-269k — Unary and Binary Nanoclusters (DFT Energies & Forces, ASE DB)

Repo: smanna789/FORGE-269k

Files

  • clusters.db — ASE database
  • index.csv — optional index (if present)
  • logs/process.log, logs/bad_cases.csv — optional diagnostics (if present)

Quickstart

from huggingface_hub import hf_hub_download
from ase.db import connect

repo = "smanna789/FORGE-269k"
db_path = hf_hub_download(repo, "clusters.db", repo_type="dataset")

with connect(db_path) as db:
    print('rows:', db.count())
    r = db.get(id=1)
    print(r.formula, r.natoms, r.get("energy"))
Downloads last month
83