avermeersch commited on
Commit
2f90b22
·
1 Parent(s): 7edfa9d

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +106 -0
README.md ADDED
@@ -0,0 +1,106 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ name: Reflexive Polyhedra of Calabi-Yau Threefolds
3
+ date: '2023-09-28'
4
+ license: other
5
+ domain: Physics
6
+ tags:
7
+ - Calabi-Yau
8
+ - Toric Geometry
9
+ - String Theory
10
+ - Polyhedra
11
+ - Geometry
12
+ - Physics
13
+ pretty_name: Calabi-Yau 3-Folds
14
+ size_categories:
15
+ - 1K<n<10K
16
+ ---
17
+
18
+ # Dataset Card for Reflexive Polyhedra of Calabi-Yau Threefolds
19
+
20
+ ## Table of Contents
21
+
22
+ - [Dataset Description](#dataset-description)
23
+ - [General Information](#general-information)
24
+ - [Dataset Origin](#dataset-origin)
25
+ - [Dataset Characteristics](#dataset-characteristics)
26
+ - [Schema](#schema)
27
+ - [Data Fields](#data-fields)
28
+ - [Data Format](#data-format)
29
+ - [Usage](#usage)
30
+ - [Getting Started](#getting-started)
31
+ - [Machine Learning Applications](#machine-learning-applications)
32
+ - [Citations](#citations)
33
+
34
+ ## Dataset Description
35
+
36
+ ### General Information
37
+
38
+ Calabi-Yau threefolds are a special class of smooth, compact three-dimensional spaces that have become fundamental objects in both mathematics and theoretical physics. In the context of string theory, they serve as the internal dimensions over which strings compactify, leading to a four-dimensional effective theory. The geometry of these threefolds is closely related to many physical phenomena, including the number of particle generations, gauge symmetries, and the cosmological constant. This dataset encompasses all 4319 reflexive polyhedra in 3 dimensions, offering a comprehensive view of potential Calabi-Yau geometries. The reflexive polyhedra serve as dual representations of these threefolds and are crucial in understanding their topological and geometric properties.
39
+
40
+ ### Dataset Origin
41
+
42
+ The dataset is derived from the original work documented in [hep-th/9805190](https://arxiv.org/abs/hep-th/9805190). While the original dataset was in a PALP-compatible structure, this version has been converted to a nested JSON format to better accommodate machine learning applications. The PALP-compatible version of the dataset can be accessed at [CYk3](http://hep.itp.tuwien.ac.at/~kreuzer/CY/CYk3.html).
43
+
44
+ ## Dataset Characteristics
45
+
46
+ ### Schema
47
+
48
+ The dataset is presented in a nested JSON format, with each entry containing both metadata and a matrix representing the vertices of the corresponding polyhedron.
49
+
50
+ ### Data Fields
51
+
52
+ - `M1`, `M2`: These are point and vertex numbers in the M lattice, which is a mathematical lattice in the context of toric geometry. This lattice serves as the foundational geometric space from which the polyhedron is constructed.
53
+
54
+ - `N1`, `N2`: Similar to the M lattice, these are point and vertex numbers in the N lattice, which is dual to the M lattice. The N lattice provides a different but equally important geometric perspective for understanding the polyhedron.
55
+
56
+ - `Pic`: The Picard number is a topological invariant that measures the dimension of the Néron-Severi group of a manifold. In the context of Calabi-Yau threefolds, it helps to determine the number of independent 2-cycles, which has physical implications like the number of U(1) gauge fields in the effective theory.
57
+
58
+ - `Cor`: The correction term is a specific mathematical entity that adjusts the Picard number to account for certain topological peculiarities. The Picard numbers of a polyhedron and its dual add up to \( 20 + \text{correction} \).
59
+
60
+ - `Matrix`: A 3xN matrix containing the coordinates of the vertices of the polyhedron. Each row represents a dimension in 3D space, and each column represents a vertex.
61
+
62
+ ### Data Format
63
+
64
+ Each entry in the dataset is structured as follows:
65
+
66
+ ```json
67
+ {
68
+ "M1": ...,
69
+ "M2": ...,
70
+ "N1": ...,
71
+ "N2": ...,
72
+ "Pic": ...,
73
+ "Cor": ...,
74
+ "Matrix": [
75
+ [...],
76
+ [...],
77
+ [...]
78
+ ]
79
+ }
80
+ ```
81
+
82
+ ## Usage
83
+
84
+ ### Getting Started
85
+
86
+ To access the dataset using the Hugging Face `datasets` library, the following Python code can be used:
87
+
88
+ ```python
89
+ from datasets import load_dataset
90
+
91
+ dataset = load_dataset("calabi-yau-threefolds")
92
+ ```
93
+
94
+ ### Machine Learning Applications
95
+
96
+ This dataset provides rich opportunities for various machine learning tasks:
97
+
98
+ - Geometric deep learning for topological invariant prediction.
99
+ - Unsupervised learning techniques for polyhedra clustering.
100
+ - Graph neural networks to model vertex connections.
101
+
102
+ ### Citations
103
+
104
+ For dataset usage, please cite:
105
+
106
+ - Original paper: hep-th/9805190