--- license: gpl-3.0 task_categories: - other pretty_name: CICY — Complete-intersection Calabi–Yau threefold database tags: - physics - string-theory - flux-compactifications - calabi-yau - complete-intersection - mathematics size_categories: - 1K **Mirror convention.** The catalogue exposes Hodge numbers in *catalogue convention*. Use `stringforge.LCSDatabase(dataset="cicy")` for the *mirror* convention used by `jaxvacua.lcs.lcs_tree`; it swaps the two columns at the boundary. ## Data splits ### `lcs_data/h11_{N}/` One row per model. Contains the topological data needed to build the Kähler cone and the LCS prepotential. | Column | Description | |---|---| | `cicy_id`, `h11`, `h12`, `chi` | Identity | | `intnums_coo_i`, `intnums_coo_j`, `intnums_coo_k`, `intnums_coo_v` | Triple intersection numbers $\kappa_{ijk}$ in coordinate (COO) sparse form | | `c2` | Second Chern class $c_{2,i}$ | | `a_matrix` | Symmetrised second-derivative matrix $a_{ij}$ entering the LCS prepotential | | `hyperplanes` | Hyperplane constraints defining the Kähler cone | | `kahler_generators` | Kähler-cone generators in the working basis | | `kahler_rays` | Rays of the Kähler cone | | `mori_rays` | Rays of the Mori cone | | `basis_change` | Integer change-of-basis matrix to the working basis | | `extra_data` | Per-model auxiliary fields, stored as a dictionary column | ### `gv/` Gopakumar–Vafa invariants in sparse form, one row per model that has GV data. | Column | Description | |---|---| | `cicy_id`, `h11`, `h12` | Identity | | `gv_charges` | Array of effective-curve charge vectors $q \in \mathbb{Z}^{h^{1,1}}$ | | `gv_invariants` | Array of integer GV invariants $n_q^0$, aligned with `gv_charges` | | `grading_vector` | Grading vector used during the computation | ## Loading without `stringforge` Plain Parquet access with `pandas` + `huggingface_hub`: ```python import pandas as pd from huggingface_hub import hf_hub_download # Download only the catalogue catalog_path = hf_hub_download( repo_id = "aschachner/cy-database", filename = "cicy/catalog.parquet", repo_type = "dataset", ) catalog = pd.read_parquet(catalog_path) # Resolve one model's geometry shard row = catalog.query("cicy_id == 7884").iloc[0] lcs_path = hf_hub_download( repo_id = "aschachner/cy-database", filename = f"cicy/lcs_data/h11_{int(row['h11'])}/data-{int(row['lcs_shard_id']):05d}.parquet", repo_type = "dataset", ) lcs = pd.read_parquet(lcs_path) model_row = lcs.iloc[int(row["lcs_row_index"])] ``` `stringforge.CICYDatabase` (pure I/O) and `stringforge.LCSDatabase(dataset="cicy")` (JAXVacua-compatible model loading) wrap this pattern with a consistent API, caching, mirror-convention handling, and filtering. ## Scope and limitations specific to CICY - Models are stored in the working basis defined by `basis_change`; downstream code that needs the original CICY-list basis should apply the inverse rotation. - GV invariants are precomputed only for a subset of models — use `has_gv=True` in queries to filter. - CICY threefolds in the standard list **do not carry conifold or polytope metadata**: this dataset has no `conifold_catalog.parquet`, no `conifolds/` split, and no `polytope/` split. Conifold-aware workflows should use the [TDF sub-dataset](../tdf/). - The catalogue currently lists **7\,406** models out of the canonical 7\,890; missing entries reflect ongoing computation of the topological data and will be back-filled in incremental rebuilds. ## Building / updating Produced by `build_cicy_database.ipynb` under [`stringforge/private/database/`](https://github.com/AndreasSchachner/stringforge/tree/main/private/database) from a local collection of per-model computations. Builds are incremental: models already in the manifest (by content hash) are skipped; only new or changed models are appended to the existing shards. ## References - P. Candelas, A. M. Dale, C. A. Lütken, R. Schimmrigk, *Complete Intersection Calabi–Yau Manifolds*, Nucl. Phys. B 298 (1988) 493. For citation, licence, and contact details, see the [umbrella `cy-database` card](../README.md).