diff --git a/stupid-bot/dataset/data.csv b/stupid-bot/dataset/data.csv new file mode 100644 index 0000000000000000000000000000000000000000..d17ce29511db6ddcab2e82b939ef4b4b774a1eea --- /dev/null +++ b/stupid-bot/dataset/data.csv @@ -0,0 +1,7 @@ +question,answer +how are you?,good +how are you?,sad +how are you?,upset +how old are you?,23 years old +how old are you?,9 years old +how old are you?,65 years old \ No newline at end of file diff --git a/stupid-bot/src/notebooks/dataset.ipynb b/stupid-bot/src/notebooks/dataset.ipynb index f94f1002a63eedcad22f12b8a4ee177c32e18107..ba254cfa4bc2d468edb1acf59d1add2042709f7e 100644 --- a/stupid-bot/src/notebooks/dataset.ipynb +++ b/stupid-bot/src/notebooks/dataset.ipynb @@ -11,7 +11,133 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "This section describes the process to load the dataset used to train and test the model." + "This section describes the process to load the dataset used to train and test the model. The dataset I am using on this project is just as stupid as the network. The idea is just to learn more about recurrent neural networks." + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + " | question | \n", + "answer | \n", + "
---|---|---|
0 | \n", + "how are you? | \n", + "good | \n", + "
1 | \n", + "how are you? | \n", + "sad | \n", + "
2 | \n", + "how are you? | \n", + "upset | \n", + "
3 | \n", + "how old are you? | \n", + "23 years old | \n", + "
4 | \n", + "how old are you? | \n", + "9 years old | \n", + "