Skip to content

Commit

Permalink
deploy: 656df1b
Browse files Browse the repository at this point in the history
  • Loading branch information
reveurmichael committed Dec 22, 2023
1 parent ce67d20 commit 61b83f2
Show file tree
Hide file tree
Showing 39 changed files with 1,283 additions and 1,292 deletions.
Binary file modified _images/gradient-descent_19_1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified _images/kernel-method_32_0.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified _images/kernel-method_39_1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified _images/tools-of-the-trade_29_0.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified _images/visualization-relationships_12_0.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified _images/visualization-relationships_16_0.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified _images/visualization-relationships_18_1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified _images/visualization-relationships_20_0.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,9 @@
"metadata": {},
"outputs": [],
"source": [
"df = pd.read_csv(\"FILE_PATH_TO_metadata.csv\")\n",
"df = pd.read_csv(\n",
" \"https://static-1300131294.cos.ap-shanghai.myqcloud.com/data/data-science/metadata.csv\"\n",
")\n",
"df.head()"
]
},
Expand Down Expand Up @@ -402,7 +404,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.9.7"
"version": "3.7.16"
},
"vscode": {
"interpreter": {
Expand Down
4 changes: 2 additions & 2 deletions _sources/assignments/data-science/analyzing-data.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
"import pandas as pd\n",
"import glob\n",
"\n",
"#Loading the dataset\n",
"path = '../../data/emails.csv'\n",
"# Loading the dataset\n",
"path = \"https://static-1300131294.cos.ap-shanghai.myqcloud.com/data/data-science/emails.csv\"\n",
"email_df = pd.read_csv(path)"
]
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
"id": "304ad719"
},
"source": [
"<a name='0'></a>\n",
"# Intro to TensorFlow for Deep Learning"
]
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@
"\n",
"# Load data\n",
"mnistDf_backup = pd.read_csv(\n",
" \"https://download.mlcc.google.com/mledu-datasets/mnist_train_small.csv\",\n",
" \"https://static-1300131294.cos.ap-shanghai.myqcloud.com/data/mnist_train_small.csv\",\n",
" sep=\",\",\n",
" header=None)\n",
"# Shuffle data\n",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@
"pd.options.display.float_format = '{:.1f}'.format\n",
"\n",
"wineDf = pd.read_csv(\n",
" \"https://download.mlcc.google.com/mledu-datasets/winequality.csv\",\n",
" \"https://static-1300131294.cos.ap-shanghai.myqcloud.com/data/winequality.csv\",\n",
" encoding='latin-1')\n",
"wineDf.columns = ['fixed acidity','volatile acidity','citric acid',\n",
" 'residual sugar','chlorides','free sulfur dioxide',\n",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
"id": "7f8c5d9c",
"id": "ffe91a20",
"metadata": {},
"source": [
"# Create a regression model\n",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
"id": "54030063",
"id": "f38f7776",
"metadata": {},
"source": [
"# Exploring visualizations\n",
Expand Down
2 changes: 1 addition & 1 deletion _sources/assignments/ml-fundamentals/parameter-play.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
"id": "1407fd89",
"id": "1798d5b8",
"metadata": {},
"source": [
"# Parameter play\n",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
"id": "6f86010f",
"id": "00646e5e",
"metadata": {},
"source": [
"# Regression with Scikit-learn\n",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "markdown",
"id": "63285526",
"id": "6a8e2a7e",
"metadata": {},
"source": [
"# Retrying some regression\n",
Expand Down
Loading

0 comments on commit 61b83f2

Please sign in to comment.