--- dataset_info: features: - name: cve dtype: string - name: commit_id dtype: string - name: label dtype: int64 splits: - name: train num_bytes: 3439573928.0 num_examples: 49507600 - name: test num_bytes: 217775125.0 num_examples: 3125297 - name: validation num_bytes: 173343931.0 num_examples: 2487284 download_size: 1681204396 dataset_size: 3830692984.0 configs: - config_name: default data_files: - split: train path: data/train-* - split: test path: data/test-* - split: validation path: data/validation-* --- # CVEVC Commit CVE Mappings Mapping between commmits and cves. Example usage: ```python from datasets import load_dataset cve_ds = load_dataset('fals3/cvevc_cve', split='test') commit_ds = load_dataset('fals3/cvevc_commits', 'patches', split='test') commit_cve_mapping = load_dataset('fals3/cvevc_cve_commit_mappings', split='test') cve_df = cve_ds.to_polars() commit_df = commit_ds.to_polars() commit_cve_mapping_df = commit_cve_mapping.to_polars() combined_df = commit_df.join(commit_cve_mapping_df, on='commit_id', how='inner') combined_df = combined_df.join(cve_df, on='cve', how='inner') ``` ## Dataset Details ### Dataset Description - **Curated by:** [More Information Needed] - **Funded by [optional]:** [More Information Needed] - **Shared by [optional]:** [More Information Needed] - **Language(s) (NLP):** [More Information Needed] - **License:** [More Information Needed] ### Dataset Sources [optional] - **Repository:** [More Information Needed] - **Paper [optional]:** [More Information Needed] - **Demo [optional]:** [More Information Needed] ## Uses ### Direct Use [More Information Needed] ### Out-of-Scope Use [More Information Needed] ## Dataset Structure [More Information Needed] ## Dataset Creation ### Curation Rationale [More Information Needed] ### Source Data #### Data Collection and Processing [More Information Needed] #### Who are the source data producers? [More Information Needed] ### Annotations [optional] #### Annotation process [More Information Needed] #### Who are the annotators? [More Information Needed] #### Personal and Sensitive Information [More Information Needed] ## Bias, Risks, and Limitations [More Information Needed] ### Recommendations Users should be made aware of the risks, biases and limitations of the dataset. More information needed for further recommendations. ### Citation ```bibtex @misc{storhaug2026favia, title={Favia: Forensic Agent for Vulnerability-fix Identification and Analysis}, author={André Storhaug and Jiamou Sun and Jingyue Li}, year={2026}, eprint={2602.12500}, archivePrefix={arXiv}, primaryClass={cs.SE}, url={https://arxiv.org/abs/2602.12500} } ``` ## Glossary [optional] [More Information Needed] ## More Information [optional] [More Information Needed] ## Dataset Card Authors [optional] [More Information Needed] ## Dataset Card Contact [More Information Needed]