File size: 1,628 Bytes
1f166b0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
import streamlit as st
import numpy as np
from tensorflow.keras.preprocessing import image

# Lade das gespeicherte Modell
model = tf.keras.models.load_model("pokemon_classification_model_xception_v2.keras")

# Setze die Bildabmessungen
img_height, img_width = 299, 299  # Eingabegröße für Xception

# Definiere eine Funktion zur Vorhersage und Rückgabe des Labels und der Wahrscheinlichkeit
def predict_label_and_probability(image_path):
    # Lade das Bild und passe es an die Eingabegröße des Modells an
    img = image.load_img(image_path, target_size=(img_height, img_width))
    x = image.img_to_array(img)
    x = np.expand_dims(x, axis=0)
    x /= 255.  # Skalieren der Bildpixel

    # Vorhersage mit dem Modell
    preds = model.predict(x)
    class_idx = np.argmax(preds[0])
    
    # Mappe Klassenindizes auf Klassennamen
    class_labels = {0: 'Abra', 1: 'Butterfree', 2: 'Eevee'}
    predicted_class = class_labels[class_idx]
    
    # Gib das vorhergesagte Label und die Wahrscheinlichkeit zurück
    probability = preds[0][class_idx]
    return predicted_class, probability

# Streamlit App
st.title("Pokémon Classification")

uploaded_file = st.file_uploader("Choose a Pokémon image...", type="jpg")

if uploaded_file is not None:
    # Zeige das hochgeladene Bild
    st.image(uploaded_file, caption='Uploaded Pokémon Image.', use_column_width=True)

    # Führe die Vorhersage durch und zeige das Ergebnis
    label, probability = predict_label_and_probability(uploaded_file)
    st.write("Prediction:", label)
    st.write("Probability:", probability)