Skip to content

Commit 6dc4b7f

Browse files
committed
added info about playing_with_outliers app
1 parent d192bed commit 6dc4b7f

File tree

1 file changed

+29
-4
lines changed

1 file changed

+29
-4
lines changed

README.md

Lines changed: 29 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,17 @@
11
# Introduction to TensorFlow
2-
In this tutorial the steps needed to clean a dataset and prepare it for modeling using the machine learning library TensorFlow. The tutorial uses the [Wine](http://archive.ics.uci.edu/ml/datasets/Wine) dataset from the [UCI Machine Learning Repository](http://archive.ics.uci.edu/ml).
2+
In this tutorial the steps needed to clean a dataset and prepare it for modeling using the machine learning library
3+
TensorFlow. The tutorial uses the [Wine](http://archive.ics.uci.edu/ml/datasets/Wine) dataset from the
4+
[UCI Machine Learning Repository](http://archive.ics.uci.edu/ml).
35

46
## Prerequesits
5-
This tutorial includes several machine learning terms. To get a good mathematical understanding of these concepts, please read the Math Primer.
7+
This tutorial includes several machine learning terms. To get a good mathematical understanding of these concepts,
8+
please read the Math Primer.
69

710
## Installation Notes
8-
There are a few packages you will need in order to run this tutorial. We recommend installing the miniconda environment, which makes the installation process quite easy. Please see the [README](https://github.com/PythonWorkshop/intro-to-sklearn) file for this mornings session for instructions on how to install miniconda.
11+
There are a few packages you will need in order to run this tutorial. We recommend installing the miniconda environment,
12+
which makes the installation process quite easy. Please see the
13+
[README](https://github.com/PythonWorkshop/intro-to-sklearn) file for this mornings session for instructions on how to
14+
install miniconda.
915

1016
In order to run this tutorial, you will need the following Python packages:
1117
* numpy
@@ -29,8 +35,27 @@ Alternatively if you are using conda you can do:
2935
conda install numpy pandas seaborn scikit-learn
3036
```
3137

32-
For TensorFlow, the installation depends on your environment. Below are installation instructions. For detailed instuctions, please see the TensorFlow [README](https://github.com/tensorflow/tensorflow/blob/master/tensorflow/g3doc/get_started/os_setup.md) file.
38+
For TensorFlow, the installation depends on your environment. Below are installation instructions. For detailed
39+
instuctions, please see the TensorFlow
40+
[README](https://github.com/tensorflow/tensorflow/blob/master/tensorflow/g3doc/get_started/os_setup.md) file.
3341

3442
### NOTE:
3543
What's better to use? The virtual environment or normal pip installation?
3644

45+
## Play with outliers
46+
47+
I have added a fun interactive application using the Python visualization library called Bokeh. The app allows you to
48+
pick features from the wine data set and set an outlier threshold to explore how this affects the data. The application
49+
source code is in the `playing_with_outliers` directory and is called `main.py`. To run this application, you will need
50+
to install bokeh:
51+
52+
```
53+
pip install bokeh
54+
```
55+
56+
Then, to run the application, download the `playing_with_outliers` directory. Then, in the directory where you downloaded
57+
it, run:
58+
59+
```
60+
bokeh serve --show playing_with_outliers
61+
```

0 commit comments

Comments
 (0)