We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 44dee49 commit 8831694Copy full SHA for 8831694
torch_geometric/nn/models/dimenet.py
@@ -593,7 +593,7 @@ def from_qm9_pretrained(
593
download_url(f'{url}/ckpt.index', path)
594
595
path = osp.join(path, 'ckpt')
596
- reader = tf.train.load_checkpoint(path)
+ reader = tf.compat.v1.train.load_checkpoint(path)
597
598
model = cls(
599
hidden_channels=128,
@@ -865,7 +865,7 @@ def from_qm9_pretrained(
865
866
867
868
869
870
# Configuration from DimeNet++:
871
# https://github.com/gasteigerjo/dimenet/blob/master/config_pp.yaml
0 commit comments