xuzhuo0417/openacm-gnn-8bit-dataset
Preview • Updated • 5
This repository packages the 8-bit OpenACM PEA-GNN surrogate model files for Hugging Face.
The model predicts five approximate multiplier metrics from graph-structured multiplier configurations:
mrednmeddelayareapowerhttps://github.com/ShenShan123/OpenACMopenacm/multiplier_gnn/8-bitGNNFEATURE.csv, and label_minmax_8.txt come from the OpenACM model files.best_model_weights_8.pthHelper code, FEATURE, and minmax follow the OpenACM GitHub 8-bit model files; the 8-bit weight is the newer user-provided final weight.
best_model_weights_8.pth: final model parameters.gnn_predictor.py: GraphSAGE model definition and prediction wrapper.my_io.py: helper code for building PyTorch Geometric graph inputs from multiplier configurations.FEATURE.csv: static feature table used by the input builder.label_minmax_8.txt: min/max values used to map normalized model outputs to raw target units.config.json: compact metadata and hash information.requirements.txt: Python package dependencies.https://huggingface.co/datasets/xuzhuo0417/openacm-gnn-8bit-dataset
from huggingface_hub import hf_hub_download
weights_path = hf_hub_download(
repo_id="xuzhuo0417/openacm-gnn-8bit",
filename="best_model_weights_8.pth"
)
print(weights_path)
These are final model parameters only, without optimizer or epoch state.