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
{{ message }}
This repository was archived by the owner on Aug 31, 2021. It is now read-only.
[](https://gitter.im/google/skflow?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
[](https://gitter.im/tensorflow/skflow?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
5
5
6
6
# Scikit Flow
7
7
8
8
This is a simplified interface for TensorFlow, to get people started on predictive analytics and data mining.
9
9
10
-
Why TensorFlow?
10
+
Library covers variety of needs from linear models to *Deep Learning* applications like text and image understanding.
11
+
12
+
Why *TensorFlow*?
11
13
* TensorFlow provides a good backbone for building different shapes of machine learning applications.
12
14
* It will continue to evolve both in the distributed direction and as general pipelinining machinery.
13
15
14
-
Why Scikit Flow?
16
+
Why *Scikit Flow*?
15
17
* To smooth the transition from the Scikit Learn world of one-liner machine learning into the
16
18
more open world of building different shapes of ML models. You can start by using fit/predict and slide into TensorFlow APIs as you are getting comfortable.
17
19
* To provide a set of reference models that would be easy to integrate with existing code.
@@ -26,19 +28,20 @@ Support versions of dependencies:
26
28
First, make sure you have TensorFlow and Scikit Learn installed, then just run:
*[Introduction to Scikit Flow and why you want to start learning TensorFlow](https://medium.com/@ilblackdragon/tensorflow-tutorial-part-1-c559c63c0cb1)
35
37
*[DNNs, custom model and Digit recognition examples](https://medium.com/@ilblackdragon/tensorflow-tutorial-part-2-9ffe47049c92)
38
+
*[Categorical variables: One hot vs Distributed representation](https://medium.com/@ilblackdragon/tensorflow-tutorial-part-3-c5fc0662bc08)
36
39
* More coming soon.
37
40
38
41
## Usage
39
42
40
43
Below are few simple examples of the API.
41
-
For more examples, please see [examples](https://github.com/google/skflow/tree/master/examples).
44
+
For more examples, please see [examples](https://github.com/tensorflow/skflow/tree/master/examples).
42
45
43
46
### General tips
44
47
@@ -58,7 +61,7 @@ from sklearn import datasets, metrics
Copy file name to clipboardExpand all lines: examples/README.md
+11-1Lines changed: 11 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,18 +4,28 @@ Examples of Using skflow
4
4
*[Deep Neural Network Regression with Boston Data](boston.py)
5
5
*[Convolutional Neural Networks with Digits Data](digits.py)
6
6
*[Deep Neural Network Classification with Iris Data](iris.py)
7
+
*[Deep Neural Network with Customized Decay Function](iris_custom_decay_dnn.py)
7
8
*[Building A Custom Model](iris_custom_model.py)
8
9
*[Building A Custom Model Using Multiple GPUs](multiple_gpu.py)
9
10
*[Using skflow with Pipeline](iris_with_pipeline.py)
10
11
*[Example of saving and restoring models](iris_save_restore.py)
11
12
*[Multi-output Deep Neural Network regression](multioutput_regression.py)
12
13
*[Improving Performance Using Early Stopping with Iris Data](iris_early_stopping.py)
14
+
*[Out-of-core Data Classification Using Dask](out_of_core_data_classification.py)
15
+
16
+
17
+
Image classification
18
+
--------------------
19
+
20
+
*[Convolutional Neural Networks on MNIST Data](mnist.py)
21
+
*[Deep Residual Networks on MNIST Data](resnet.py)
13
22
14
23
15
24
Text classification
16
25
-------------------
17
26
18
-
*[Text Classification Using Recurrent Neural Networks on Words](text_classification.py)
27
+
*[Text Classification Using Recurrent Neural Networks on Words](text_classification.py) (See also [Simplified Version Using Built-in RNN Model](text_classification_builtin_rnn_model.py))
19
28
*[Text Classification Using Convolutional Neural Networks on Words](text_classification_cnn.py)
20
29
*[Text Classification Using Recurrent Neural Networks on Characters](text_classification_character_rnn.py)
21
30
*[Text Classification Using Convolutional Neural Networks on Characters](text_classification_character_cnn.py)
0 commit comments