Skip to content

Commit

Permalink
reorder imports
Browse files Browse the repository at this point in the history
  • Loading branch information
jwmueller authored Jul 9, 2024
1 parent 3cd40a2 commit ab18286
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions fasttext_amazon_reviews/fasttext_amazon_reviews.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -48,14 +48,15 @@
"outputs": [],
"source": [
"import json\n",
"from utils.fasttext_wrapper import FastTextClassifier, data_loader\n",
"import cleanlab\n",
"import numpy as np\n",
"from sklearn.model_selection import StratifiedKFold\n",
"from sklearn.metrics import accuracy_score\n",
"from sklearn.model_selection import ParameterGrid\n",
"import os\n",
"from datetime import datetime as dt"
"from datetime import datetime as dt\n",
"\n",
"from utils.fasttext_wrapper import FastTextClassifier, data_loader"
]
},
{
Expand Down

0 comments on commit ab18286

Please sign in to comment.