p5js-object-detection-webgpu / modules /transformerLoader.js
Alan Ren
Update HTML and CSS files for Transformers.js demo page
8c200b4
raw
history blame
279 Bytes
import { pipeline, env } from './transformers.js';
// Since we will download the model from the Hugging Face Hub, we can skip the local model check
env.allowLocalModels = false;
// Export the pipeline funco it can be used in other files
window.transformersPipeline = pipeline;