Spaces:
Running
Running
Update index.js
Browse files
index.js
CHANGED
@@ -16,7 +16,8 @@ status.textContent = 'Loading model...';
|
|
16 |
// To-Do #1 pipeline API를 사용하여 detr-resnet-50 object detection 모델의 instance를 detector라는 이름을 붙여 생성하십시오.
|
17 |
// DETR 모델 참고 문서 https://huggingface.co/facebook/detr-resnet-50
|
18 |
|
19 |
-
const detector = await pipeline("object-detection","facebook/detr-resnet-50");
|
|
|
20 |
status.textContent = 'Ready';
|
21 |
|
22 |
example.addEventListener('click', (e) => {
|
@@ -46,7 +47,7 @@ async function detect(img) {
|
|
46 |
|
47 |
status.textContent = 'Analysing...';
|
48 |
// To-Do #2 객체 탐지를 위한 오브젝트에 threshold를 0.5, percentage를 true로 지정하고 그 결과를 output에 저장하십시오
|
49 |
-
const output = detector({
|
50 |
threshold:0.5,
|
51 |
percentage: true,
|
52 |
// threshold 값을 지정하고 쉼표를 붙이시오
|
|
|
16 |
// To-Do #1 pipeline API를 사용하여 detr-resnet-50 object detection 모델의 instance를 detector라는 이름을 붙여 생성하십시오.
|
17 |
// DETR 모델 참고 문서 https://huggingface.co/facebook/detr-resnet-50
|
18 |
|
19 |
+
//const detector = await pipeline("object-detection","facebook/detr-resnet-50");
|
20 |
+
const detector = await pipeline('object-detection');
|
21 |
status.textContent = 'Ready';
|
22 |
|
23 |
example.addEventListener('click', (e) => {
|
|
|
47 |
|
48 |
status.textContent = 'Analysing...';
|
49 |
// To-Do #2 객체 탐지를 위한 오브젝트에 threshold를 0.5, percentage를 true로 지정하고 그 결과를 output에 저장하십시오
|
50 |
+
const output = await detector({
|
51 |
threshold:0.5,
|
52 |
percentage: true,
|
53 |
// threshold 값을 지정하고 쉼표를 붙이시오
|