Spaces:
Sleeping
Sleeping
File size: 1,391 Bytes
1046772 a2ca503 1ae2bef e53b04f 1f029d6 51718fb 1f029d6 a2ca503 e53b04f a2ca503 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 |
import utils
from huggingface_hub.keras_mixin import from_pretrained_keras
from PIL import Image
import streamlit as st
import tensorflow as tf
# Inputs
st.title("Input your image")
image_url = st.text_input(
label="URL of image",
value="https://dl.fbaipublicfiles.com/dino/img.png",
placeholder="https://your-favourite-image.png"
)
# Preprocess the same image but with normlization.
image, preprocessed_image = utils.load_image_from_url(
image_url,
model_type="dino"
)
st.image(image, caption="Original Image")
# Load the DINO model
dino = from_pretrained_keras("probing-vits/vit-dino-base16")
# Get the attention scores
_, attention_score_dict = dino.predict(preprocessed_image)
# De-normalize the image for visual clarity.
in1k_mean = tf.constant([0.485 * 255, 0.456 * 255, 0.406 * 255])
in1k_std = tf.constant([0.229 * 255, 0.224 * 255, 0.225 * 255])
preprocessed_img_orig = (preprocessed_image * in1k_std) + in1k_mean
preprocessed_img_orig = preprocessed_img_orig / 255.
preprocessed_img_orig = tf.clip_by_value(preprocessed_img_orig, 0.0, 1.0).numpy()
attentions = utils.attention_heatmap(
attention_score_dict=attention_score_dict,
image=preprocessed_img_orig
)
utils.plot(attentions=attentions, image=preprocessed_img_orig)
# Show the attention maps
image = Image.open("heat_map.png")
st.title("Attention Heat Maps")
st.image(image, caption="Attention Heat Maps") |