Skip to content

Commit

Permalink
Merge branch 'main' of github.com:inoue0426/drGAT
Browse files Browse the repository at this point in the history
  • Loading branch information
inoue0426 committed Aug 30, 2024
2 parents edf589a + 5ca7597 commit 39ab42b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Tutorial.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
"metadata": {},
"outputs": [],
"source": [
"test = torch.load('test.pt')"
"test = torch.load(\"test.pt\")"
]
},
{
Expand All @@ -53,7 +53,7 @@
"source": [
"tmp = !ls | grep pt\n",
"device = torch.device(\"cuda\" if torch.cuda.is_available() else \"cpu\")\n",
"model = torch.load('sample.pt', map_location=device)"
"model = torch.load(\"sample.pt\", map_location=device)"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion model_training.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
"metadata": {},
"outputs": [],
"source": [
"data = torch.load('train.pt')"
"data = torch.load(\"train.pt\")"
]
},
{
Expand Down

0 comments on commit 39ab42b

Please sign in to comment.