diff --git a/notebooks/Experiment-Logistic_Regression.ipynb b/notebooks/Experiment-Logistic_Regression.ipynb new file mode 100644 index 0000000..69c3a5a --- /dev/null +++ b/notebooks/Experiment-Logistic_Regression.ipynb @@ -0,0 +1,39 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": null, + "id": "2f3d6dad-7c0d-4f0c-8a4f-125c2008004b", + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd\n", + "import numpy as np\n", + "from sklearn.feature_extraction.text import CountVectorizer\n", + "from sklearn.pipeline import make_pipeline\n", + "from sklearn.linear_model import LogisticRegression" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.9.18" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +}