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 28, 2024
2 parents 2aa3d00 + c3b9ec7 commit 414b538
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Figs/Fig2.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@
}
],
"source": [
"np.sum(df['num'] != 0)"
"np.sum(df[\"num\"] != 0)"
]
},
{
Expand All @@ -232,7 +232,7 @@
}
],
"source": [
"df['num'].sum()"
"df[\"num\"].sum()"
]
},
{
Expand Down Expand Up @@ -3018,7 +3018,7 @@
}
],
"source": [
"matrix2 = (comparison_matrix == '♣')\n",
"matrix2 = comparison_matrix == \"♣\"\n",
"matrix2"
]
},
Expand Down Expand Up @@ -3066,7 +3066,7 @@
],
"source": [
"true_count = np.sum(result)\n",
"print(f'Predicted DTIs which have PubMed abstract: {true_count}')"
"print(f\"Predicted DTIs which have PubMed abstract: {true_count}\")"
]
},
{
Expand Down

0 comments on commit 414b538

Please sign in to comment.