-
Notifications
You must be signed in to change notification settings - Fork 2k
Implement IOHandlers in TensorFlow.js Node.js binding #343
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Labels
Comments
cc @nkreeger |
This was referenced May 25, 2018
This was referenced Jun 1, 2018
This was referenced Jun 10, 2018
caisq
added a commit
to caisq/tfjs-layers-1
that referenced
this issue
Jun 12, 2018
* Currently, a call like tf.loadModel('./model.json') will be routed to tf.io.browserHTTPRequest regardless of whether the environment is browser or node.js. This will cause issues for node.js. This change makes it so that this routing of relative paths to browserHTTPRequest (using browser `fetch`) is done only in the browser. This implies that paths without a scheme is not supported. In other words, in node.js, a path given to tf.loadModel must have a scheme, e.g., tf.loadModel('file://./mode.json'), tf.loadModel('https://localhost/model.json'). Towards: tensorflow/tfjs#343
@caisq this should be closed now right? |
@nkreeger yep |
caisq
added a commit
to tensorflow/tfjs-node
that referenced
this issue
Dec 13, 2018
…tfjs-node (#182) FEATURE Fixes tensorflow/tfjs#410 tensorflow/tfjs#343
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
TensorFlow.js version
0.11.2
The scope may include:
fetch
.The text was updated successfully, but these errors were encountered: