Skip to content

Commit

Permalink
Rename module tfjs-node => @tensorflow/tfjs-node (#78)
Browse files Browse the repository at this point in the history
  • Loading branch information
ry authored and dsmilkov committed Apr 24, 2018
1 parent ed3d058 commit 4c2bade
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ cd demo/
yarn

# Link the tfjs-node NPM we published above.
yarn link-local tfjs-node
yarn link-local @tensorflow/tfjs-node

# Run the training script. See demo/package.json for this script.
yarn mnist
Expand Down
2 changes: 1 addition & 1 deletion demo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@
},
"dependencies": {
"@tensorflow/tfjs-core": "0.8.1",
"tfjs-node": "link:.yalc/tfjs-node"
"@tensorflow/tfjs-node": "link:.yalc/@tensorflow/tfjs-node"
}
}
2 changes: 1 addition & 1 deletion demo/src/mnist.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
*/

import * as tf from '@tensorflow/tfjs-core';
import {bindTensorFlowBackend} from 'tfjs-node';
import {bindTensorFlowBackend} from '@tensorflow/tfjs-node';

import {MnistDataset} from './mnist_data';
import {Timer} from './timer';
Expand Down
2 changes: 1 addition & 1 deletion demo/src/mnist_data_demo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
*/

import * as tf from '@tensorflow/tfjs-core';
import {bindTensorFlowBackend} from 'tfjs-node';
import {bindTensorFlowBackend} from '@tensorflow/tfjs-node';

import {MnistDataset} from './mnist_data';
import {Timer} from './timer';
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "tfjs-node",
"name": "@tensorflow/tfjs-node",
"version": "0.0.1",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down

0 comments on commit 4c2bade

Please sign in to comment.