forked from tensorflow/tfjs-tsne
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
public npm config and build (tensorflow#40)
* update package.json and build targets for publishing
- Loading branch information
Showing
8 changed files
with
32 additions
and
1,959 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
package-lock.json | ||
node_modules/ | ||
dist/ | ||
dist-es6/ | ||
coverage/ | ||
*.lock | ||
.cache | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,16 +2,17 @@ | |
|
||
<head> | ||
<script src="https://cdn.jsdelivr.net/npm/@tensorflow/[email protected]"> </script> | ||
<script src="./tfjs-tsne.js"></script> | ||
<script src="https://cdn.jsdelivr.net/npm/@tensorflow/tfjs-tsne"></script> | ||
|
||
<script src="https://d3js.org/d3.v5.min.js"></script> | ||
</head> | ||
|
||
<body> | ||
<h1>tfjs-tsne simple example</h1> | ||
<p>Reduce 20000 points with 100 dimensions each. Open up the browser console to see progress while the embedding is being | ||
computed.</p> | ||
<script src="./index.js"></script> | ||
computed. | ||
</p> | ||
<script src="./index.js" defer></script> | ||
</body> | ||
|
||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"extends": "./tsconfig.json", | ||
"compilerOptions": { | ||
"module": "commonjs", | ||
"outDir": "./dist" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters