You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+29-4Lines changed: 29 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -1,11 +1,17 @@
1
1
# 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
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.
6
9
7
10
## 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.
9
15
10
16
In order to run this tutorial, you will need the following Python packages:
11
17
* numpy
@@ -29,8 +35,27 @@ Alternatively if you are using conda you can do:
29
35
conda install numpy pandas seaborn scikit-learn
30
36
```
31
37
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
0 commit comments