Yifeng-Liu
commited on
Commit
•
0144301
1
Parent(s):
096e78f
Update README.md
Browse files
README.md
CHANGED
@@ -57,7 +57,7 @@ model-index:
|
|
57 |
value: 0.712
|
58 |
---
|
59 |
|
60 |
-
# Model Card
|
61 |
|
62 |
Roof Detection for Remote Sensing task.
|
63 |
<!-- Provide a quick summary of what the model is/does. -->
|
@@ -93,3 +93,9 @@ Users (both direct and downstream) should be made aware of the risks, biases and
|
|
93 |
## How to Get Started with the Model
|
94 |
|
95 |
Use the code below to get started with the model.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
57 |
value: 0.712
|
58 |
---
|
59 |
|
60 |
+
# Model Card
|
61 |
|
62 |
Roof Detection for Remote Sensing task.
|
63 |
<!-- Provide a quick summary of what the model is/does. -->
|
|
|
93 |
## How to Get Started with the Model
|
94 |
|
95 |
Use the code below to get started with the model.
|
96 |
+
```python
|
97 |
+
from transformers import AutoModelForObjectDetection, AutoImageProcessor
|
98 |
+
|
99 |
+
model = AutoModelForObjectDetection.from_pretrained("Yifeng-Liu/rt-detr-finetuned-for-satellite-image-roofs-detection")
|
100 |
+
image_processor = AutoImageProcessor.from_pretrained("Yifeng-Liu/rt-detr-finetuned-for-satellite-image-roofs-detection")
|
101 |
+
```
|