Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -1,9 +1,15 @@
|
|
1 |
-
from transformers import
|
2 |
-
import
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
|
8 |
# import streamlit as st
|
9 |
# from transformers import pipeline
|
|
|
1 |
+
from transformers import AutoImageProcessor, AutoBackbone
|
2 |
+
import torch
|
3 |
+
from PIL import Image
|
4 |
+
import requests
|
5 |
+
url = "http://images.cocodataset.org/val2017/000000039769.jpg"
|
6 |
+
image = Image.open(requests.get(url, stream=True).raw)
|
7 |
+
processor = AutoImageProcessor.from_pretrained("microsoft/swin-tiny-patch4-window7-224")
|
8 |
+
model = AutoBackbone.from_pretrained("microsoft/swin-tiny-patch4-window7-224", out_indices=(1,))
|
9 |
|
10 |
+
inputs = processor(image, return_tensors="pt")
|
11 |
+
outputs = model(**inputs)
|
12 |
+
feature_maps = outputs.feature_maps
|
13 |
|
14 |
# import streamlit as st
|
15 |
# from transformers import pipeline
|