Fix loadModel

This commit is contained in:
simon987 2024-04-03 20:03:46 -04:00
parent fc06b3e378
commit 59bc418a95
2 changed files with 3 additions and 11 deletions

View File

@ -78,16 +78,6 @@ export default {
}
};
document.onpointerdown = (e) => {
if (e.button === 2) {
const isLightboxOpen = this.$refs.lightbox === undefined || this.$refs.lightbox.$el.tagName === undefined;
if (isLightboxOpen) {
e.preventDefault();
return false;
}
}
}
},
methods: {
keyDownListener(e) {

View File

@ -22,7 +22,9 @@ export class CLIPTransformerModel {
async loadModel(onProgress) {
ort.env.wasm.wasmPaths = ORT_WASM_PATHS;
ort.env.wasm.numThreads = 2;
if (window.crossOriginIsolated) {
ort.env.wasm.numThreads = 2;
}
let buf = await ModelStore.get(this._modelUrl);
if (!buf) {