-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added a virtual environment to make running simpler; README contains …
…instructions on running
- Loading branch information
Roni Lazimi
authored and
Roni Lazimi
committed
Apr 25, 2021
1 parent
b93eeea
commit 158b70d
Showing
4 changed files
with
97 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,3 @@ | ||
archive | ||
.vscode | ||
venv |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
{ | ||
"metadata": { | ||
"orig_nbformat": 2, | ||
"kernelspec": { | ||
"name": "python394jvsc74a57bd0daf19b0280700678d1b30283c052a0b4f397f6934ace6c653c7a54482fc82c11", | ||
"display_name": "Python 3.9.4 64-bit ('venv')" | ||
} | ||
}, | ||
"nbformat": 4, | ||
"nbformat_minor": 2, | ||
"cells": [ | ||
{ | ||
"source": [ | ||
"# Imports" | ||
], | ||
"cell_type": "markdown", | ||
"metadata": {} | ||
}, | ||
{ | ||
"cell_type": "code", | ||
"execution_count": 1, | ||
"metadata": {}, | ||
"outputs": [], | ||
"source": [ | ||
"import pandas as pd\n", | ||
"import sklearn as skl" | ||
] | ||
}, | ||
{ | ||
"source": [ | ||
"# Data Cleaning" | ||
], | ||
"cell_type": "markdown", | ||
"metadata": {} | ||
}, | ||
{ | ||
"source": [ | ||
"## Selecting Relevant Fields" | ||
], | ||
"cell_type": "markdown", | ||
"metadata": {} | ||
}, | ||
{ | ||
"source": [ | ||
"## One-Hot Encoding" | ||
], | ||
"cell_type": "markdown", | ||
"metadata": {} | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
appnope==0.1.2 | ||
backcall==0.2.0 | ||
decorator==5.0.7 | ||
ipykernel==5.5.3 | ||
ipython==7.22.0 | ||
ipython-genutils==0.2.0 | ||
jedi==0.18.0 | ||
joblib==1.0.1 | ||
jupyter-client==6.1.12 | ||
jupyter-core==4.7.1 | ||
numpy==1.20.2 | ||
pandas==1.2.4 | ||
parso==0.8.2 | ||
pexpect==4.8.0 | ||
pickleshare==0.7.5 | ||
prompt-toolkit==3.0.18 | ||
ptyprocess==0.7.0 | ||
Pygments==2.8.1 | ||
python-dateutil==2.8.1 | ||
pytz==2021.1 | ||
pyzmq==22.0.3 | ||
scikit-learn==0.24.1 | ||
scipy==1.6.2 | ||
six==1.15.0 | ||
sklearn==0.0 | ||
threadpoolctl==2.1.0 | ||
tornado==6.1 | ||
traitlets==5.0.5 | ||
wcwidth==0.2.5 |