File size: 2,361 Bytes
d340b24
db8ace5
 
da5451a
 
db8ace5
da5451a
 
 
 
 
27d71d3
e1f4a9d
da5451a
 
e1f4a9d
da5451a
 
 
 
 
 
 
f9f3381
da5451a
 
 
 
 
 
 
 
 
 
 
 
 
 
f9f3381
da5451a
 
 
 
 
 
 
 
 
 
27d71d3
da5451a
 
 
 
 
 
 
 
 
 
 
 
 
e1f4a9d
da5451a
e1f4a9d
da5451a
 
 
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
import pandas as pd
from huggingface_hub import hf_hub_download
from fastai.learner import load_learner
from flask import Flask, request
import gradio as gr

# Charger le modèle et les données
modelname = 'model_gen0.pkl'
pokemon_types = pd.read_csv('pokemon.csv')
pokemon_types_en = pokemon_types['en']
examplespath = 'images/'
learn_inf = load_learner(hf_hub_download("Okkoman/PokeFace", modelname))

# Créer l'application Flask
app = Flask(__name__)

# Fonction de détection de la langue préférée du client
def detect_language():
    accept_language = request.headers.get("Accept-Language")
    if accept_language:
        languages = [lang.split(";")[0] for lang in accept_language.split(",")]
        return languages[0]
    return 'en'  # Par défaut, en anglais

# Route principale de l'application
@app.route("/")
def index():
    lang = detect_language()
    
    # Définir le titre, la description et le libellé "inconnu" en fonction de la langue
    if lang == 'fr':
        title = "# PokeFace - Quel est ce pokemon ?"
        description = "## Un classifieur pour les pokemons de 1ere et 2eme générations (001-251)"
        unknown = 'inconnu'
    else:
        title = "# PokeFace - What is this pokemon ?"
        description = "## An classifier for 1st-2nd generation pokemons (001-251)"
        unknown = 'unknown'

    # Fonction pour classifier l'image
    def classify_image(img):
        prob_threshold = 0.75
        pred, pred_idx, probs = learn_inf.predict(img)
        index = pokemon_types_en[pokemon_types_en == pred].index[0]
        label = pokemon_types[lang].iloc[index]
        if probs[pred_idx] > prob_threshold:
            return f"{index+1} - {label} ({probs[pred_idx]*100:.0f}%)"
        else:
            return unknown

    # Interface Gradio pour la classification d'image
    with gr.Blocks() as demo:
        with gr.Row():
            gr.Markdown(title)
        with gr.Row():
            gr.Markdown(description)        
        with gr.Row():
            interf = gr.Interface(
                fn=classify_image, 
                inputs=gr.inputs.Image(shape=(192,192)), 
                outputs=gr.outputs.Label(), 
                examples=examplespath, 
                allow_flagging='auto')

    return demo.launch(inline=False)

# Point d'entrée principal
if __name__ == "__main__":
    app.run()