steven0226 commited on
Commit
09fc563
·
verified ·
1 Parent(s): 99c7519

Update ownership and portfolio links

Browse files
Files changed (1) hide show
  1. README.md +3 -3
README.md CHANGED
@@ -35,8 +35,8 @@ Ultralytics **YOLO26** (NMS-free, end-to-end detection head) fine-tuned to detec
35
  bare printed-circuit-board defects: `missing_hole`, `mouse_bite`, `open_circuit`, `short`, `spur`,
36
  `spurious_copper`.
37
 
38
- - **Code, training notebooks, benchmark/ablation scripts**: [https://github.com/tun0000/pcb-defect-detection](https://github.com/tun0000/pcb-defect-detection)
39
- - **Interactive demo**: [Space](https://huggingface.co/spaces/betty0/pcb-defect-detection)
40
 
41
  ## Why this matters for AOI (Automated Optical Inspection)
42
 
@@ -78,7 +78,7 @@ cite for this model's real-world generalization.
78
  from huggingface_hub import hf_hub_download
79
  from ultralytics import YOLO
80
 
81
- path = hf_hub_download(repo_id="betty0/pcb-defect-detection", filename="best.pt")
82
  model = YOLO(path)
83
  results = model.predict("your_pcb_image.jpg", conf=0.25)
84
  ```
 
35
  bare printed-circuit-board defects: `missing_hole`, `mouse_bite`, `open_circuit`, `short`, `spur`,
36
  `spurious_copper`.
37
 
38
+ - **Code, training notebooks, benchmark/ablation scripts**: [source repository publication pending)
39
+ - **Interactive demo**: [Space](https://huggingface.co/spaces/steven0226/pcb-defect-detection)
40
 
41
  ## Why this matters for AOI (Automated Optical Inspection)
42
 
 
78
  from huggingface_hub import hf_hub_download
79
  from ultralytics import YOLO
80
 
81
+ path = hf_hub_download(repo_id="steven0226/pcb-defect-detection", filename="best.pt")
82
  model = YOLO(path)
83
  results = model.predict("your_pcb_image.jpg", conf=0.25)
84
  ```