Update jspp.js

This commit is contained in:
Sam Sneed 2024-05-31 21:54:34 +00:00 committed by GitHub
parent 9fc1cc7c1f
commit 5419286c37
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

10
jspp.js
View file

@ -14,9 +14,9 @@ class JSPlusPlus {
isToxic(sentences) { isToxic(sentences) {
// Load the model. Users optionally pass in a threshold and an array of // Load the model. Users optionally pass in a threshold and an array of
// labels to include. // labels to include.
const help = new JSPlusPlus.General.Helpers const gen = new JSPlusPlus.General
help.require("https://cdn.jsdelivr.net/npm/@tensorflow/tfjs") gen.require("https://cdn.jsdelivr.net/npm/@tensorflow/tfjs")
help.require("https://cdn.jsdelivr.net/npm/@tensorflow-models/toxicity") gen.require("https://cdn.jsdelivr.net/npm/@tensorflow-models/toxicity")
let threshold = 0.9; let threshold = 0.9;
let toxic = false let toxic = false
@ -754,8 +754,8 @@ class JSPlusPlus {
initGun(relays = []) { initGun(relays = []) {
const help = new JSPlusPlus.General.Helpers const gen = new JSPlusPlus.General
help.require("https://cdn.jsdelivr.net/npm/gun/gun.js") gen.require("https://cdn.jsdelivr.net/npm/gun/gun.js")
return Gun(relays) return Gun(relays)
} }
} }