Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
NormanTUD committed Dec 21, 2023
1 parent db234ed commit 717e25a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion asanai.js
Original file line number Diff line number Diff line change
Expand Up @@ -4376,7 +4376,7 @@ class asanAI {
}

if(this.#model.input.shape.length != 4) {
this.err(`[load_image_urls_to_div_and_tensor] this.#model.input must be an array with 4 elements, but is [${this.#model.input.shape.join(", ")}]`);
this.err(`[load_image_urls_to_div_and_tensor] this.#model.input must be an array with 4 elements, but is [${this.#model.input.shape.map(item => item === null ? "null" : item).join(", ")}]`);
return;
}

Expand Down

0 comments on commit 717e25a

Please sign in to comment.