Datasets:
Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -106,6 +106,15 @@ All columns from `nodes.csv` plus:
|
|
| 106 |
| betweenness | float | Betweenness centrality (k=500, seed=42) |
|
| 107 |
| community_id | int | Louvain community |
|
| 108 |
| dag_layer | int | Topological depth; -1 for 5,732 nodes in cycles |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 109 |
|
| 110 |
### v2/module/nodes.csv
|
| 111 |
|
|
@@ -120,13 +129,14 @@ All columns from `nodes.csv` plus:
|
|
| 120 |
|--------|------|-------------|
|
| 121 |
| source | str | Importing module |
|
| 122 |
| target | str | Imported module |
|
|
|
|
| 123 |
|
| 124 |
### v2/module/metrics.csv
|
| 125 |
|
| 126 |
| Column | Type | Description |
|
| 127 |
|--------|------|-------------|
|
| 128 |
| module | str | Module name |
|
| 129 |
-
| decl_count | int | Declarations (
|
| 130 |
| in_degree | int | Modules that import this one |
|
| 131 |
| out_degree | int | Modules this one imports |
|
| 132 |
| pagerank | float | PageRank on module import graph |
|
|
|
|
| 106 |
| betweenness | float | Betweenness centrality (k=500, seed=42) |
|
| 107 |
| community_id | int | Louvain community |
|
| 108 |
| dag_layer | int | Topological depth; -1 for 5,732 nodes in cycles |
|
| 109 |
+
| file_module | str | Source file module (from Lean environment, 278K coverage) |
|
| 110 |
+
| is_tactic_proof | bool | Whether the proof uses tactics (78,315 declarations) |
|
| 111 |
+
| tactic_count | int | Number of tactics used in the proof |
|
| 112 |
+
| top_tactic | str | Most frequently used tactic in this proof |
|
| 113 |
+
| is_instance | bool | Whether this is a typeclass instance (26,415 declarations) |
|
| 114 |
+
| instance_class | str | Which typeclass this instance implements |
|
| 115 |
+
| is_coercion | bool | Whether this is a coercion (241 declarations) |
|
| 116 |
+
| to_additive_pair | str | Name of the corresponding additive/multiplicative variant |
|
| 117 |
+
| def_height | float | Definitional height in the kernel (42,935 declarations) |
|
| 118 |
|
| 119 |
### v2/module/nodes.csv
|
| 120 |
|
|
|
|
| 129 |
|--------|------|-------------|
|
| 130 |
| source | str | Importing module |
|
| 131 |
| target | str | Imported module |
|
| 132 |
+
| is_exported | bool | Whether this is a public import (20,699 of 20,881) |
|
| 133 |
|
| 134 |
### v2/module/metrics.csv
|
| 135 |
|
| 136 |
| Column | Type | Description |
|
| 137 |
|--------|------|-------------|
|
| 138 |
| module | str | Module name |
|
| 139 |
+
| decl_count | int | Declarations in this module (full decl_module mapping, 499K coverage) |
|
| 140 |
| in_degree | int | Modules that import this one |
|
| 141 |
| out_degree | int | Modules this one imports |
|
| 142 |
| pagerank | float | PageRank on module import graph |
|