Skip to content

Commit

Permalink
tsne fix
Browse files Browse the repository at this point in the history
  • Loading branch information
cpietsch committed Nov 6, 2020
1 parent e7e11b7 commit 3cf1e75
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions similarity/tsne.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ var path = require("path");
const glob = require('glob-promise');
const localPath = i => path.relative(process.cwd(), i)
const argv = require('minimist')(process.argv.slice(2));
const tf = require('@tensorflow/tfjs-node');
const tf = require('@tensorflow/tfjs');
// const tsne = require('@tensorflow/tfjs-tsne');
const { createCanvas, loadImage } = require('canvas')
const tsnejs = require('./lib/tsne-lib.js');
const tsnejs = require('./lib/tsne.js');

const canvas = createCanvas(224, 224)
const ctx = canvas.getContext('2d')
Expand Down

0 comments on commit 3cf1e75

Please sign in to comment.