Spaghetti Command Returns!

This commit is contained in:
Dragon Fire
2024-05-09 14:33:39 -04:00
parent 632474620a
commit f102b72b24
21 changed files with 46 additions and 3 deletions
+1 -1
View File
@@ -37,7 +37,7 @@ module.exports = class Tensorflow {
async loadTransformerModel() {
const model = await tf.loadGraphModel(
url.pathToFileURL(path.join(__dirname, '..', 'tf_models', 'transformer_separable_js', 'model.json')).href
url.pathToFileURL(path.join(__dirname, '..', 'tf_models', 'transformer_js', 'model.json')).href
);
this.transformerModel = model;
return this.transformerModel;