Skip to content

Commit

Permalink
add comments
Browse files Browse the repository at this point in the history
  • Loading branch information
inoue0426 committed Nov 7, 2024
1 parent d42f0ad commit 3cebe75
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions Tutorial.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@
}
],
"source": [
"predict, res = drGAT.eval(model, test)\n",
"predict, res = drGAT.eval(model, test) # Probability and Metrics\n",
"res"
]
},
Expand All @@ -181,7 +181,7 @@
{
"data": {
"text/plain": [
"tensor([1., 0., 0., ..., 1., 0., 0.])"
"tensor([0.7653, 0.3292, 0.3037, ..., 0.9121, 0.4277, 0.2037])"
]
},
"execution_count": 7,
Expand Down Expand Up @@ -211,7 +211,7 @@
},
{
"cell_type": "code",
"execution_count": 11,
"execution_count": 8,
"id": "6097126f-f158-495b-bb1d-b8131a01ac13",
"metadata": {},
"outputs": [
Expand Down Expand Up @@ -246,7 +246,7 @@
" tensor([1])]"
]
},
"execution_count": 11,
"execution_count": 8,
"metadata": {},
"output_type": "execute_result"
}
Expand All @@ -260,22 +260,23 @@
},
{
"cell_type": "code",
"execution_count": 12,
"execution_count": 9,
"id": "986b0120-115d-4f84-bb87-ca6b3e45b34c",
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"tensor(1.)"
"tensor(0.7653)"
]
},
"execution_count": 12,
"execution_count": 9,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"# Probability\n",
"predict, _ = drGAT.eval(model, test)\n",
"predict"
]
Expand Down

0 comments on commit 3cebe75

Please sign in to comment.