Tobias Cornille commited on
Commit
0b3651f
·
1 Parent(s): 5bc8adf

Update index.js

Browse files
Files changed (1) hide show
  1. index.js +2 -5
index.js CHANGED
@@ -13,7 +13,7 @@ const EXAMPLE_URL = 'https://huggingface.co/datasets/Xenova/transformers.js-docs
13
 
14
  // Create a new object detection pipeline
15
  status.textContent = 'Loading model...';
16
- const detector = await pipeline('object-detection', 'Xenova/detr-resnet-50');
17
  status.textContent = 'Ready';
18
 
19
  example.addEventListener('click', (e) => {
@@ -42,10 +42,7 @@ async function detect(img) {
42
  imageContainer.style.backgroundImage = `url(${img})`;
43
 
44
  status.textContent = 'Analysing...';
45
- const output = await detector(img, {
46
- threshold: 0.5,
47
- percentage: true,
48
- });
49
  status.textContent = '';
50
  output.forEach(renderBox);
51
  }
 
13
 
14
  // Create a new object detection pipeline
15
  status.textContent = 'Loading model...';
16
+ const detector = await pipeline('zero-shot-object-detection', 'Xenova/owlvit-base-patch-32');
17
  status.textContent = 'Ready';
18
 
19
  example.addEventListener('click', (e) => {
 
42
  imageContainer.style.backgroundImage = `url(${img})`;
43
 
44
  status.textContent = 'Analysing...';
45
+ const output = await detector(img, ["street", "car"]);
 
 
 
46
  status.textContent = '';
47
  output.forEach(renderBox);
48
  }