const { createWorker, createScheduler } = require('../../'); const path = require('path'); const [,, imagePath] = process.argv; // Note: This example recognizes the same image 4 times in parallel // to show how schedulers can be used to speed up bulk jobs. // In actual use you would (obviously) not want to run multiple identical jobs. const image = path.resolve(__dirname, (imagePath || '../../tests/assets/images/cosmic.png')); const imageArr = [image, image, image, image]; const scheduler = createScheduler(); // Creates worker and adds to scheduler const workerGen = async () => { const worker = await createWorker("eng", 1, {cachePath: "."}); scheduler.addWorker(worker); } const workerN = 4; (async () => { const resArr = Array(workerN); for (let i=0; i console.log(x.data.text)); } await Promise.all(resArr2); await scheduler.terminate(); // It also terminates all workers. })();