xuzhuo0417/openacm-gnn-16bit-dataset
Preview • Updated • 5
This repository packages the 16-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/16-bitGNNFEATURE.csv, and label_minmax_16.txt come from the OpenACM model files.best_model_weights_16.pthAll helper files and the 16-bit weight follow the OpenACM GitHub 16-bit model files.
best_model_weights_16.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_16.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-16bit-dataset
from huggingface_hub import hf_hub_download
weights_path = hf_hub_download(
repo_id="xuzhuo0417/openacm-gnn-16bit",
filename="best_model_weights_16.pth"
)
print(weights_path)
These are final model parameters only, without optimizer or epoch state.