Skip to content

Commit b99bc28

Browse files
vabarbosadsmilkov
authored andcommitted
broken links (tensorflow#2033)
DOC after moving to mono repo some links in README (and other markdown) files got broken or point to the archived repos. this PR updates such links that i found.
1 parent e196c8e commit b99bc28

File tree

7 files changed

+13
-13
lines changed

7 files changed

+13
-13
lines changed

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ use GitHub pull requests for this purpose. Consult
2323
information on using pull requests.
2424

2525
## Continuous Integration
26-
Continuous Integration tests run for every PR that is sent against TensorFlow.js repositories. Any time you push to the branch, they will re-run. Before asking for a review, make sure that the continous integration tests are passing.
26+
Continuous Integration tests run for every PR that is sent against TensorFlow.js repositories. Any time you push to the branch, they will re-run. Before asking for a review, make sure that the continuous integration tests are passing.
2727

2828
To see the logs from the Cloud Build CI, please join either
2929
our [discussion](https://groups.google.com/a/tensorflow.org/forum/#!forum/tfjs)
@@ -67,7 +67,7 @@ add new backends.
6767
### Adding an op
6868

6969
When adding ops to the library and deciding whether to write a kernel
70-
implementation in [backend.ts](https://github.com/tensorflow/tfjs-core/blob/master/src/backends/backend.ts),
70+
implementation in [backend.ts](/tfjs-core/src/backends/backend.ts),
7171
be sure to check out the TensorFlow ops list [here](https://github.com/tensorflow/tensorflow/blob/master/tensorflow/core/ops/ops.pbtxt).
7272
This list shows the kernels available for the TensorFlow C API. To ensure that
7373
we can bind to this with node.js, we should ensure that our backend.ts

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,20 +23,20 @@ other client-side data.
2323

2424
This repository contains the logic and scripts that combine
2525
four packages:
26-
- [TensorFlow.js Core](https://github.com/tensorflow/tfjs-core),
26+
- [TensorFlow.js Core](/tfjs-core),
2727
a flexible low-level API, formerly known as *deeplearn.js*.
28-
- [TensorFlow.js Layers](https://github.com/tensorflow/tfjs-layers),
28+
- [TensorFlow.js Layers](/tfjs-layers),
2929
a high-level API which implements functionality similar to
3030
[Keras](https://keras.io/).
31-
- [TensorFlow.js Data](https://github.com/tensorflow/tfjs-data),
31+
- [TensorFlow.js Data](/tfjs-data),
3232
a simple API to load and prepare data analogous to
3333
[tf.data](https://www.tensorflow.org/guide/datasets).
34-
- [TensorFlow.js Converter](https://github.com/tensorflow/tfjs-converter),
34+
- [TensorFlow.js Converter](/tfjs-converter),
3535
tools to import a TensorFlow SavedModel to TensorFlow.js
3636

3737
If you care about bundle size, you can import those packages individually.
3838

39-
If you are looking for Node.js support, check out the [TensorFlow.js Node repository](https://github.com/tensorflow/tfjs-node).
39+
If you are looking for Node.js support, check out the [TensorFlow.js Node directory](/tfjs-node).
4040

4141
## Examples
4242

tfjs-automl/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ Make sure you can access those files as static assets from your web app by servi
109109
### Demo
110110

111111
The object detection demo lives in
112-
[demo/object_classification](./demo/object_classification). To run it:
112+
[demo/object_detection](./demo/object_detection). To run it:
113113

114114
```sh
115115
cd demo/object_detection

tfjs-core/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ To keep track of issues we use the [tensorflow/tfjs](https://github.com/tensorfl
1414
You can install TensorFlow.js via yarn or npm. We recommend using the
1515
[@tensorflow/tfjs](https://www.npmjs.com/package/@tensorflow/tfjs) npm package,
1616
which gives you both this Core API and the higher-level
17-
[Layers API](https://github.com/tensorflow/tfjs-layers):
17+
[Layers API](/tfjs-layers):
1818

1919
```js
2020
import * as tf from '@tensorflow/tfjs';
@@ -31,7 +31,7 @@ import * as tfc from '@tensorflow/tfjs-core';
3131
// No Layers API.
3232
```
3333

34-
For info about development, check out [DEVELOPMENT.md](./DEVELOPMENT.md).
34+
For info about development, check out [DEVELOPMENT.md](/DEVELOPMENT.md).
3535

3636
## For more information
3737

tfjs-layers/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# TensorFlow.js Layers: High-Level Machine Learning Model API
22

33
A part of the TensorFlow.js ecosystem, TensorFlow.js Layers is a high-level
4-
API built on [TensorFlow.js Core](https://github.com/tensorflow/tfjs-core),
4+
API built on [TensorFlow.js Core](/tfjs-core),
55
enabling users to build, train and execute deep learning models in the browser.
66
TensorFlow.js Layers is modeled after
77
[Keras](https://keras.io/) and

tfjs-node/WINDOWS_TROUBLESHOOTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Currently, node-gyp requires Python 2.x to work properly. If Python 3.x is insta
88

99
## 'The system cannot find the patch specified' Exceptions
1010

11-
This can happen for a variety of reasons. First, to inspect what is missing either `cd node_modules/@tensorflow/tfjs-node` or clone the [tensorflow/tfjs-node repo](https://github.com/tensorflow/tfjs-node).
11+
This can happen for a variety of reasons. First, to inspect what is missing either `cd node_modules/@tensorflow/tfjs-node` or clone the [tensorflow/tfjs repo](https://github.com/tensorflow/tfjs).
1212

1313
After `cd`'ing or cloning, run the following command (you might need node-gyp installed globablly `npm install -g node-gyp`):
1414

tfjs-react-native/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ export class App extends React.Component {
115115
After gathering feedback in the alpha release we will add an example to the [tensorflow/tfjs-examples](https://github.com/tensorflow/tfjs-examples) repository.
116116

117117
For now you can take a look at [`integration_rn59/App.tsx`](integration_rn59/App.tsx) for an example of what using tfjs-react-native looks like.
118-
The [Webcam demo folder](integration_rn70/components/webcam) has an example of a style transfer app.
118+
The [Webcam demo folder](integration_rn59/components/webcam) has an example of a style transfer app.
119119

120120
![style transfer app initial screen](images/rn-styletransfer_1.jpg)
121121
![style transfer app initial screen](images/rn-styletransfer_2.jpg)

0 commit comments

Comments
 (0)