Skip to content

Commit b23620f

Browse files
authored
Add files via upload
0 parents  commit b23620f

31 files changed

+83948
-0
lines changed

CNN - Fashion MNIST.ipynb

+549
Large diffs are not rendered by default.

Decision Trees - Fertility Diagnosis ~.ipynb

+443
Large diffs are not rendered by default.

Decision Trees - Diabetes.ipynb

+679
Large diffs are not rendered by default.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
{
2+
"cells": [
3+
{
4+
"cell_type": "code",
5+
"execution_count": 1,
6+
"id": "fe674c9a",
7+
"metadata": {},
8+
"outputs": [],
9+
"source": [
10+
"from sklearn.model_selection import train_test_split\n",
11+
"from keras.models import Sequential\n",
12+
"from keras.layers import Dense,Dropout\n",
13+
"import numpy as np\n",
14+
"import pandas as pd\n"
15+
]
16+
},
17+
{
18+
"cell_type": "code",
19+
"execution_count": null,
20+
"id": "bb2ad044",
21+
"metadata": {},
22+
"outputs": [],
23+
"source": []
24+
}
25+
],
26+
"metadata": {
27+
"kernelspec": {
28+
"display_name": "Python 3 (ipykernel)",
29+
"language": "python",
30+
"name": "python3"
31+
},
32+
"language_info": {
33+
"codemirror_mode": {
34+
"name": "ipython",
35+
"version": 3
36+
},
37+
"file_extension": ".py",
38+
"mimetype": "text/x-python",
39+
"name": "python",
40+
"nbconvert_exporter": "python",
41+
"pygments_lexer": "ipython3",
42+
"version": "3.11.3"
43+
}
44+
},
45+
"nbformat": 4,
46+
"nbformat_minor": 5
47+
}

0 commit comments

Comments
 (0)