From 79bb6534094b177a080d8e2db4e0ac875bb6c0f9 Mon Sep 17 00:00:00 2001 From: Vladimir Mandic Date: Sun, 5 Sep 2021 16:42:11 -0400 Subject: [PATCH] add benchmark info --- TODO.md | 1 + package.json | 4 ++-- src/human.ts | 6 +++--- wiki | 2 +- 4 files changed, 7 insertions(+), 6 deletions(-) diff --git a/TODO.md b/TODO.md index 3d97a3e1..896cbd5b 100644 --- a/TODO.md +++ b/TODO.md @@ -6,6 +6,7 @@ WebGL shader optimizations for faster load and initial detection - Implement WebGL uniforms for shaders: - Fix shader packing: +- Event emitters
diff --git a/package.json b/package.json index 4cd6a46e..5d262ad6 100644 --- a/package.json +++ b/package.json @@ -73,7 +73,7 @@ "canvas": "^2.8.0", "chokidar": "^3.5.2", "dayjs": "^1.10.6", - "esbuild": "^0.12.24", + "esbuild": "^0.12.25", "eslint": "^7.32.0", "eslint-config-airbnb-base": "^14.2.1", "eslint-plugin-import": "^2.24.2", @@ -83,7 +83,7 @@ "node-fetch": "^3.0.0", "rimraf": "^3.0.2", "seedrandom": "^3.0.5", - "simple-git": "^2.45.0", + "simple-git": "^2.45.1", "tslib": "^2.3.1", "typedoc": "0.21.9", "typescript": "4.4.2" diff --git a/src/human.ts b/src/human.ts index fee348c1..cb3212ed 100644 --- a/src/human.ts +++ b/src/human.ts @@ -62,7 +62,7 @@ export type TensorFlow = typeof tf; */ export class Human { /** Current version of Human library in *semver* format */ - static version: string; + version: string; /** Current configuration * - Details: {@link Config} */ @@ -148,7 +148,7 @@ export class Human { * @param userConfig: {@link Config} */ constructor(userConfig?: Config | Record) { - Human.version = app.version; // expose version property on instance of class + this.version = app.version; // expose version property on instance of class Object.defineProperty(this, 'version', { value: app.version }); // expose version property directly on class itself defaults.wasmPath = `https://cdn.jsdelivr.net/npm/@tensorflow/tfjs-backend-wasm@${tf.version_core}/dist/`; this.config = mergeDeep(defaults, userConfig || {}); @@ -270,7 +270,7 @@ export class Human { if (userConfig) this.config = mergeDeep(this.config, userConfig) as Config; if (this.#firstRun) { // print version info on first run and check for correct backend setup - if (this.config.debug) log(`version: ${Human.version}`); + if (this.config.debug) log(`version: ${this.version}`); if (this.config.debug) log(`tfjs version: ${this.tf.version_core}`); if (this.config.debug) log('platform:', this.sysinfo.platform); if (this.config.debug) log('agent:', this.sysinfo.agent); diff --git a/wiki b/wiki index 7f55fd1c..82ce7a69 160000 --- a/wiki +++ b/wiki @@ -1 +1 @@ -Subproject commit 7f55fd1c8aea22f33a767da840147b15aeeed034 +Subproject commit 82ce7a69656a11fa4cd5c5bea447cd1a2797b903