mike dupont commited on
Commit
179dac9
Β·
1 Parent(s): 2406a1f

πŸ”§ Fix HuggingFace YAML metadata in repo card

Browse files

Added comprehensive YAML frontmatter to resolve HuggingFace Hub warning:

βœ… METADATA ADDED:
- License: AGPL-3.0 (open source research)
- Task categories: text-classification, feature-extraction, text-retrieval, text-generation
- Language: English (code comments and documentation)
- Size category: 1M-10M records (1.4+ million total)

🏷️ COMPREHENSIVE TAGS:
- rust, compiler, llvm, semantic-analysis, code-understanding
- programming-languages, compilation, optimization, performance
- machine-learning, dataset, parquet

πŸ“Š DATA CONFIGS:
- semantic: parsing, name_resolution, type_inference splits
- cargo: project_metadata split
- llvm_ir: ir_generation split across optimization levels
- compiler: compiler analysis splits (parsing, name_resolution, type_inference)

🎯 HUB OPTIMIZATION:
- Pretty name for better discoverability
- Proper file path configurations for data loading
- Viewer disabled (large dataset, use programmatic access)
- Complete metadata for ML researchers and tool developers

This resolves the 'empty or missing yaml metadata' warning and makes
the dataset properly discoverable and usable on HuggingFace Hub!

Files changed (1) hide show
  1. README.md +54 -1
README.md CHANGED
@@ -1,4 +1,57 @@
1
- # Complete Rust Compilation Pipeline Dataset: llvm-sys.rs
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
 
3
  This dataset contains the most comprehensive analysis of Rust compilation ever created, covering the complete pipeline from source code to LLVM IR generation.
4
 
 
1
+ ---
2
+ license: agpl-3.0
3
+ task_categories:
4
+ - text-classification
5
+ - feature-extraction
6
+ - text-retrieval
7
+ - text-generation
8
+ language:
9
+ - en
10
+ tags:
11
+ - rust
12
+ - compiler
13
+ - llvm
14
+ - semantic-analysis
15
+ - code-understanding
16
+ - programming-languages
17
+ - compilation
18
+ - optimization
19
+ - performance
20
+ - machine-learning
21
+ - dataset
22
+ - parquet
23
+ size_categories:
24
+ - 1M<n<10M
25
+ configs:
26
+ - config_name: semantic
27
+ data_files:
28
+ - path: "semantic/parsing-phase/*.parquet"
29
+ split: parsing
30
+ - path: "semantic/name_resolution-phase/*.parquet"
31
+ split: name_resolution
32
+ - path: "semantic/type_inference-phase/*.parquet"
33
+ split: type_inference
34
+ - config_name: cargo
35
+ data_files:
36
+ - path: "cargo/project_metadata-phase/*.parquet"
37
+ split: project_metadata
38
+ - config_name: llvm_ir
39
+ data_files:
40
+ - path: "llvm-ir/ir_generation-*-phase/*.parquet"
41
+ split: ir_generation
42
+ - config_name: compiler
43
+ data_files:
44
+ - path: "compiler/parsing-phase/*.parquet"
45
+ split: compiler_parsing
46
+ - path: "compiler/name_resolution-phase/*.parquet"
47
+ split: compiler_name_resolution
48
+ - path: "compiler/type_inference-phase/*.parquet"
49
+ split: compiler_type_inference
50
+ pretty_name: "Complete Rust Compilation Pipeline Dataset"
51
+ viewer: false
52
+ ---
53
+
54
+ # Complete Rust Compilation Pipeline Dataset
55
 
56
  This dataset contains the most comprehensive analysis of Rust compilation ever created, covering the complete pipeline from source code to LLVM IR generation.
57