From 049facf72b1309bd22c8bb8f80495d1f33886856 Mon Sep 17 00:00:00 2001 From: Vladimir Mandic Date: Wed, 6 Jan 2021 06:51:20 -0500 Subject: [PATCH] fix emotion labels --- src/emotion/emotion.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/emotion/emotion.js b/src/emotion/emotion.js index 6a257679..84279ae3 100644 --- a/src/emotion/emotion.js +++ b/src/emotion/emotion.js @@ -2,7 +2,7 @@ import { log } from '../log.js'; import * as tf from '../../dist/tfjs.esm.js'; import * as profile from '../profile.js'; -const annotations = ['angry', 'disgust', 'fear', 'happy', 'sad', 'surpise', 'neutral']; +const annotations = ['angry', 'disgust', 'fear', 'happy', 'sad', 'surprise', 'neutral']; const models = {}; let last = []; let skipped = Number.MAX_SAFE_INTEGER;