Downloads · 30 days
4
50% of all-time downloads
bambezius/dissertation-tgn
dissertation-tgn is a machine learning model from bambezius. Use it for the machine learning task on the model card, and read the license before you ship it in a product.
JAX checkpoint for the Tgn temporal graph model with separate intention and outcome heads.
Downloads · 30 days
4
50% of all-time downloads
All-time downloads
8
Public
Repo size
15.4 MB
Likes
0
Public
Click a slice to open those files.
.joblib15.4 MB · 100%
From the Hugging Face model README
JAX checkpoint for the Tgn temporal graph model with separate intention and outcome heads.
Tgnjax20260430_135010model_params.joblibconfig.jsonmetrics.json{
"val/loss": 1.1337319612503052,
"val/intention_top1_accuracy": 0.6611314415931702,
"val/intention_top2_accuracy": 0.8483576774597168,
"val/intention_top3_accuracy": 0.9177007675170898,
"val/intention_mrr": 0.7940667867660522,
"val/outcome_top1_accuracy": 0.5961679220199585,
"val/outcome_top2_accuracy": 0.7636861801147461,
"val/outcome_top3_accuracy": 0.8319343328475952,
"val/outcome_mrr": 0.7304578423500061
}
import json
from pathlib import Path
import joblib
checkpoint_path = Path("path/to/checkpoint")
with open(checkpoint_path / "config.json") as f:
config = json.load(f)
params = joblib.load(checkpoint_path / "model_params.joblib")