File size: 1,542 Bytes
22d8c5e
 
be1cec5
22d8c5e
be1f8d6
a3ea565
be1f8d6
5a15b4d
be1cec5
be1f8d6
 
346a504
be1f8d6
0c59e8e
e7b7c5d
be1f8d6
be1cec5
be1f8d6
be1cec5
a3ea565
 
be1f8d6
 
 
 
be1cec5
22d8c5e
5a15b4d
a3ea565
 
 
 
22d8c5e
be1f8d6
be1cec5
be1f8d6
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
import gradio as gr
import tensorflow as tf
from PIL import Image
import numpy as np

labels = ['Birch Forest', 'Cave', 'Cherry Grove', 'Dark Forest', 'Deep Dark', 'Desert', 'End', 'Forest', 'Jungle', 'Mushroom Fields', 'Nether', 'Ocean', 'Plains', 'Savanna', 'Swamp', 'Taiga']

def predict_biome(uploaded_file):
    if uploaded_file is None:
        return "No file uploaded.", None, "No prediction"

    model = tf.keras.models.load_model('biomes-xception-model.keras')

    # Load the image from the file path
    with Image.open(uploaded_file).convert('RGB') as img:
        img = img.resize((150, 150))
        img_array = np.array(img)

        prediction = model.predict(np.expand_dims(img_array, axis=0))

        # Identify the most confident prediction
        confidences = {labels[i]: np.round(float(prediction[0][i]), 2) for i in range(len(labels))}

        return img, confidences

# Define the Gradio interface
iface = gr.Interface(
    fn=predict_biome,  # Function to process the input
    inputs=gr.File(label="Upload File"),  # File upload widget
    outputs=["image", "text"],  # Output types for image and text
    title="Minecraft Biomes Classifier",  # Title of the interface
    description="Upload a picture of a Fruit (preferably a Birch Forest, Cave, Cherry Grove, Dark Forest, Deep Dark, Desert, End, Forest, Jungle, Mushroom Fields, Nether, Ocean, Plains, Savanna, Swamp or Taiga) to see what fruit it is and the models confidence level."  # Description of the interface
)

# Launch the interface
iface.launch()