Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixing a typo in nli_02_models.ipynb #59

Merged
merged 1 commit into from
Apr 27, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Fixing a typo in nli_02_models.ipynb
The module containing `fit_classifier_with_crossvalidation()` has
changed from `sst` to `utils`.
  • Loading branch information
wcmac committed Apr 27, 2020
commit 7f01ab47b0e27e53e4375b7766699507d42caf35
2 changes: 1 addition & 1 deletion nli_02_models.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@
"source": [
"### Model wrapper\n",
"\n",
"Our experiment framework is basically the same as the one we used for the Stanford Sentiment Treebank. Here, I actually use `sst.fit_classifier_with_crossvalidation` (from that unit) to create a wrapper around `LogisticRegression` for cross-validation of hyperparameters. At this point, I am not sure what parameters will be good for our NLI datasets, so this hyperparameter search is vital."
"Our experiment framework is basically the same as the one we used for the Stanford Sentiment Treebank. Here, I actually use `utils.fit_classifier_with_crossvalidation` (introduced in that unit) to create a wrapper around `LogisticRegression` for cross-validation of hyperparameters. At this point, I am not sure what parameters will be good for our NLI datasets, so this hyperparameter search is vital."
]
},
{
Expand Down