From 11343adf4add77b6ccdda0d0651cac14385688d4 Mon Sep 17 00:00:00 2001 From: Iron-Mike-Tyson Date: Tue, 1 Feb 2022 20:07:36 +0100 Subject: [PATCH 1/2] Described missing Datasets and fixed wrong number in exercise_deep_learning --- notebooks/data/Auto_mpg/ReadMe.md | 29 ++++++++++++++++++- notebooks/data/Letters/ReadMe.md | 13 +++++++-- .../exercises/exercise_deep_learning.ipynb | 2 +- 3 files changed, 40 insertions(+), 4 deletions(-) diff --git a/notebooks/data/Auto_mpg/ReadMe.md b/notebooks/data/Auto_mpg/ReadMe.md index 27b55f4..135a38d 100644 --- a/notebooks/data/Auto_mpg/ReadMe.md +++ b/notebooks/data/Auto_mpg/ReadMe.md @@ -1 +1,28 @@ -https://www.kaggle.com/shubhampundir/autompg-dataset \ No newline at end of file +# Context + +Mileage per gallon performances of various cars. The data is technical specs of cars. +Origin: This dataset was taken from the StatLib library which is +maintained at Carnegie Mellon University. The dataset was +used in the 1983 American Statistical Association Exposition. +(c) Date: July 7, 1993 + +# Content + +The dataset has 398 entries and 9 attributes. +This file contains the basic information (mpg, cylinders, displacement, horsepower, weight, acceleration, model year, origin, car name) about the cars. Be careful, there are 6 invalid values in the 'horsepower' column. + +# Example Entries + +|mpg|cylinders|displacement|horsepower|weight|acceleration|model year|origin|car name| +|----|----|----|----|----|----|----|----|----| +|18|8|307|130|3504|12|70|1|chevrolet chevelle malibu| +|15|8|350|165|3693|11.5|70|1|buick skylark 320| +|18|8|318|150|3436|11|70|1|plymouth satellite| +|16|8|304|150|3433|12|70|1|amc rebel sst| +|17|8|302|140|3449|10.5|70|1|ford torino| + + +# Credit + +Dataset acquired from [Kaggle](https://www.kaggle.com/uciml/autompg-dataset) + diff --git a/notebooks/data/Letters/ReadMe.md b/notebooks/data/Letters/ReadMe.md index dbc7b57..a5fa55c 100644 --- a/notebooks/data/Letters/ReadMe.md +++ b/notebooks/data/Letters/ReadMe.md @@ -1,5 +1,14 @@ +# Context + +This dataset holds example images(28x28 pixels) of handwritten letters. + +# Content + +The dataset has 1499 training and 3999 test images with labels. + +# Credit ## Test Data -https://www.kaggle.com/crawford/emnist?select=emnist-letters-test.csv +Dataset acquired from [Kaggle](https://www.kaggle.com/crawford/emnist?select=emnist-letters-test.csv) ## Train Data -https://www.kaggle.com/crawford/emnist/version/3?select=emnist-letters-train.csv \ No newline at end of file +Dataset acquired from [Kaggle](https://www.kaggle.com/crawford/emnist/version/3?select=emnist-letters-train.csv) diff --git a/notebooks/exercises/exercise_deep_learning.ipynb b/notebooks/exercises/exercise_deep_learning.ipynb index 1d51aee..c06ea02 100644 --- a/notebooks/exercises/exercise_deep_learning.ipynb +++ b/notebooks/exercises/exercise_deep_learning.ipynb @@ -41,7 +41,7 @@ "metadata": {}, "source": [ "## Load Test and Trainig Data\n", - "We reduced the training dataset to **15000** and the test dataset to **4000** entries. Otherwise the nodebook will fail because of RAM issues (especially for the **Raspberry PI 3**) \n", + "We reduced the training dataset to **14999** and the test dataset to **3999** entries. Otherwise the nodebook will fail because of RAM issues (especially for the **Raspberry PI 3**) \n", "Unfortunately it will reduce the accuracy of the model" ] }, -- GitLab From 5c3a10c92f07c727acd0bfad7ecd7ece5619ada8 Mon Sep 17 00:00:00 2001 From: Kevin de Riese-Meyer Date: Tue, 1 Feb 2022 19:16:23 +0000 Subject: [PATCH 2/2] Update notebooks/data/Auto_mpg/README.md, notebooks/data/Letters/README.md --- notebooks/data/Auto_mpg/{ReadMe.md => README.md} | 0 notebooks/data/Letters/{ReadMe.md => README.md} | 0 2 files changed, 0 insertions(+), 0 deletions(-) rename notebooks/data/Auto_mpg/{ReadMe.md => README.md} (100%) rename notebooks/data/Letters/{ReadMe.md => README.md} (100%) diff --git a/notebooks/data/Auto_mpg/ReadMe.md b/notebooks/data/Auto_mpg/README.md similarity index 100% rename from notebooks/data/Auto_mpg/ReadMe.md rename to notebooks/data/Auto_mpg/README.md diff --git a/notebooks/data/Letters/ReadMe.md b/notebooks/data/Letters/README.md similarity index 100% rename from notebooks/data/Letters/ReadMe.md rename to notebooks/data/Letters/README.md -- GitLab