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
Fix broken links in contrib/learn/python/learn/README.md
This fix fixes broken links in `contrib/learn/python/learn/README.md`
by replacing g3doc with appropriate URLs, e.g.,
```
- ([docs](../../../../g3doc/api_docs/python/contrib.learn.md#LinearClassifier))
+ ([docs](https://www.tensorflow.org/api_docs/python/tf/contrib/learn/LinearClassifier))
```
NOTE: Inside `contrib/learn/python/learn/README.md` there are still
several `g3doc` references. However the remaining links are actually
correct and are not broken.
Signed-off-by: Yong Tang <[email protected]>
Copy file name to clipboardExpand all lines: tensorflow/contrib/learn/python/learn/README.md
+9-9Lines changed: 9 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ TF Learn is a simplified interface for TensorFlow, to get people started on pred
9
9
10
10
### Why *TensorFlow Learn*?
11
11
12
-
- To smooth the transition from the [scikit-learn](http://scikit-learn.org/stable/) world of one-liner machine learning into the more open world of building different shapes of ML models. You can start by using [fit](../../../../g3doc/api_docs/python/contrib.learn.md#Estimator.fit)/[predict](../../../../g3doc/api_docs/python/contrib.learn.md#Estimator.predict) and slide into TensorFlow APIs as you are getting comfortable.
12
+
- To smooth the transition from the [scikit-learn](http://scikit-learn.org/stable/) world of one-liner machine learning into the more open world of building different shapes of ML models. You can start by using [fit](https://www.tensorflow.org/api_docs/python/tf/contrib/learn/Estimator#fit)/[predict](https://www.tensorflow.org/api_docs/python/tf/contrib/learn/Estimator#predict) and slide into TensorFlow APIs as you are getting comfortable.
13
13
- To provide a set of reference models that will be easy to integrate with existing code.
14
14
15
15
## Installation
@@ -43,17 +43,17 @@ Optionally you can install [scikit-learn](http://scikit-learn.org/stable/) and [
@@ -67,7 +67,7 @@ Below are a few simple examples of the API. For more examples, please see [examp
67
67
68
68
General tips:
69
69
70
-
- It's useful to rescale a dataset to 0 mean and unit standard deviation before passing it to an [`Estimator`](../../../../g3doc/api_docs/python/contrib.learn.md#estimators). [Stochastic Gradient Descent](https://en.wikipedia.org/wiki/Stochastic_gradient_descent) doesn't always do the right thing when variable are at very different scales.
70
+
- It's useful to rescale a dataset to 0 mean and unit standard deviation before passing it to an [`Estimator`](https://www.tensorflow.org/api_docs/python/tf/contrib/learn/Estimator). [Stochastic Gradient Descent](https://en.wikipedia.org/wiki/Stochastic_gradient_descent) doesn't always do the right thing when variable are at very different scales.
71
71
72
72
- Categorical variables should be managed before passing input to the estimator.
73
73
@@ -219,7 +219,7 @@ INFO:tensorflow:Loss for final step: 0.0162506.</pre>
219
219
220
220
## Summaries
221
221
222
-
If you supply a `model_dir` argument to your `Estimator`s, TensorFlow will write summaries for ``loss`` and histograms for variables in this directory. (You can also add custom summaries in your custom model function by calling [Summary](../../../../g3doc/api_docs/python/train.md#summary-operations) operations.)
222
+
If you supply a `model_dir` argument to your `Estimator`s, TensorFlow will write summaries for ``loss`` and histograms for variables in this directory. (You can also add custom summaries in your custom model function by calling [Summary](https://www.tensorflow.org/api_guides/python/summary) operations.)
223
223
224
224
To view the summaries in TensorBoard, run the following command, where `logdir` is the `model_dir` for your `Estimator`:
0 commit comments