nielsr HF Staff commited on
Commit
4ef9787
·
verified ·
1 Parent(s): e227b58

Add comprehensive dataset card for AIGer_Dataset

Browse files

This PR adds a comprehensive dataset card for the `AIGer_Dataset`.

It includes:
- A link to the associated paper: https://huggingface.co/papers/2508.11991
- A link to the GitHub repository: https://github.com/ichont/AIGer
- Relevant `task_categories` (`graph-ml`) and descriptive `tags`.
- A detailed description of the dataset's content and purpose.
- Practical usage information, including environmental configuration and experimental parameters, drawn from the project's GitHub README, to facilitate reproducibility.

Files changed (1) hide show
  1. README.md +63 -0
README.md ADDED
@@ -0,0 +1,63 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ task_categories:
3
+ - graph-ml
4
+ tags:
5
+ - electronic-design-automation
6
+ - eda
7
+ - logic-circuits
8
+ - and-inverter-graphs
9
+ - aigs
10
+ - graph-neural-networks
11
+ - signal-probability-prediction
12
+ - truth-table-distance-prediction
13
+ ---
14
+
15
+ # AIGer Dataset
16
+
17
+ This dataset provides the experimental data associated with the paper [Modeling Relational Logic Circuits for And-Inverter Graph Convolutional Network](https://huggingface.co/papers/2508.11991).
18
+
19
+ And-Inverter Graphs (AIGs) are fundamental in Electronic Design Automation (EDA) for efficiently representing, optimizing, and verifying the functional characteristics of digital circuits. This dataset contains the AIGs used to evaluate the AIGer model, a GNN-based approach designed to enhance the expression of AIGs by jointly modeling functional and structural characteristics and improving message passing.
20
+
21
+ The data supports research in critical EDA tasks such as Signal Probability Prediction (SSP) and Truth Table Distance Prediction (TTDP), which are crucial for improving chip performance, energy efficiency, and reliability.
22
+
23
+ **Paper:** [Modeling Relational Logic Circuits for And-Inverter Graph Convolutional Network](https://huggingface.co/papers/2508.11991)
24
+
25
+ **Code:** [https://github.com/ichont/AIGer](https://github.com/ichont/AIGer)
26
+
27
+ ## Dataset Description
28
+
29
+ This dataset consists of various And-Inverter Graph (AIG) samples, structured for training and evaluating graph neural networks in the context of logic circuit analysis. It is specifically designed to be used with the AIGer model for tasks like Signal Probability Prediction (SSP) and Truth Table Distance Prediction (TTDP), demonstrating improved performance compared to existing methods.
30
+
31
+ ## Environmental Configuration
32
+
33
+ To utilize the AIGer model with this dataset, the following environment setup is recommended, as per the associated GitHub repository:
34
+
35
+ **Experimental Environment Installation Package Version Requirements:**
36
+
37
+ ```
38
+ torch==2.2.1+cu118
39
+ torch-sparse==0.6.18
40
+ torch_scatter==2.1.2
41
+ numpy==1.26.4
42
+ ```
43
+
44
+ **Experimental Equipment:**
45
+
46
+ Ubuntu 22.04.5 LTS
47
+ Nvidia A6000
48
+
49
+ ## Sample Usage
50
+
51
+ This dataset is essential for training and evaluating the AIGer model. Below are the key experimental parameters provided in the GitHub repository for configuring experiments:
52
+
53
+ - `--task 'prob'`: Select signal probability prediction (SPP) task.
54
+ - `--model 'AIGer'`: Use AIGer model.
55
+ - `--batch_size 256`: Set the batch size required for training.
56
+ - `--split_file 0.05-0.05-0.9`: Indicates the data split proportions for training, validation, and testing.
57
+ - `--layer_num 9`: Set the number of layers of the AIGer network to 9.
58
+
59
+ You can run the AIGer training process by ensuring proper bash environment configuration and executing:
60
+
61
+ ```bash
62
+ bash train.sh
63
+ ```