asamasach commited on
Commit
f9ac53c
·
1 Parent(s): fe1ed20

Add specific URLs for each model in documentation

Browse files
Files changed (1) hide show
  1. README.md +22 -6
README.md CHANGED
@@ -25,12 +25,28 @@ A unified service providing both **FastAPI endpoints** (for production) and **Gr
25
 
26
  ## Available Models
27
 
28
- - Data Matrix Code Detection
29
- - Dental Implant Defect Detection
30
- - Ball Pen Defect Detection
31
- - Knit Fabric (Up/Back) Defect Detection
32
- - Jean Fabric (Up/Back) Defect Detection
33
- - Tire Cord Defect Detection
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
34
 
35
  ## API Usage
36
 
 
25
 
26
  ## Available Models
27
 
28
+ Each model has its own dedicated endpoint:
29
+
30
+ | Model | Model Key | API Endpoint |
31
+ |-------|-----------|--------------|
32
+ | Data Matrix | `data-matrix` | `/v1/object-detection/data-matrix/detect` |
33
+ | Dental Implant | `dental-implant` | `/v1/object-detection/dental-implant/detect` |
34
+ | Ball Pen | `ball-pen` | `/v1/object-detection/ball-pen/detect` |
35
+ | Knit Up | `knit-up` | `/v1/object-detection/knit-up/detect` |
36
+ | Knit Back | `knit-back` | `/v1/object-detection/knit-back/detect` |
37
+ | Jean Up | `jean-up` | `/v1/object-detection/jean-up/detect` |
38
+ | Jean Back | `jean-back` | `/v1/object-detection/jean-back/detect` |
39
+ | Tire Cord | `tire-cord` | `/v1/object-detection/tire-cord/detect` |
40
+
41
+ **Full URLs:**
42
+ - Data Matrix: `https://smartfalcon-ai-industrial-defect-detection.hf.space/v1/object-detection/data-matrix/detect`
43
+ - Dental Implant: `https://smartfalcon-ai-industrial-defect-detection.hf.space/v1/object-detection/dental-implant/detect`
44
+ - Ball Pen: `https://smartfalcon-ai-industrial-defect-detection.hf.space/v1/object-detection/ball-pen/detect`
45
+ - Knit Up: `https://smartfalcon-ai-industrial-defect-detection.hf.space/v1/object-detection/knit-up/detect`
46
+ - Knit Back: `https://smartfalcon-ai-industrial-defect-detection.hf.space/v1/object-detection/knit-back/detect`
47
+ - Jean Up: `https://smartfalcon-ai-industrial-defect-detection.hf.space/v1/object-detection/jean-up/detect`
48
+ - Jean Back: `https://smartfalcon-ai-industrial-defect-detection.hf.space/v1/object-detection/jean-back/detect`
49
+ - Tire Cord: `https://smartfalcon-ai-industrial-defect-detection.hf.space/v1/object-detection/tire-cord/detect`
50
 
51
  ## API Usage
52