-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.py
174 lines (157 loc) · 5.8 KB
/
app.py
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
import os
import json
import torch
import gradio as gr
import pandas as pd
from torchvision import transforms, models
from PIL import Image
# Configuración del dispositivo
device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
print(f'Usando el dispositivo: {device}')
# Cargar el modelo pre-entrenado
num_classes = 12
model = models.resnet50(weights=models.ResNet50_Weights.IMAGENET1K_V1)
num_ftrs = model.fc.in_features
model.fc = torch.nn.Sequential(
torch.nn.Dropout(0.5),
torch.nn.Linear(num_ftrs, num_classes)
)
model.load_state_dict(torch.load('model.pth', map_location=device))
model = model.to(device)
model.eval()
# Clases del modelo
class_names = [
'Acne',
'Actinic Keratosis',
'Basal Cell Carcinoma',
'Dermatofibroma',
'Eczema',
'Melanoma',
'Nevus',
'Pigmented Benign Keratosis',
'Rosacea',
'Seborrheic Keratosis',
'Squamous Cell Carcinoma',
'Vascular Lesion'
]
# Cargar información de afecciones desde el archivo JSON
with open('afeccion_info.json', 'r', encoding='utf-8') as f:
afeccion_info = json.load(f)
# Transformaciones para preprocesar la imagen de entrada
transform = transforms.Compose([
transforms.Resize(256),
transforms.CenterCrop(224),
transforms.ToTensor(),
transforms.Normalize(mean=[0.485, 0.456, 0.406],
std=[0.229, 0.224, 0.225]),
])
# Función para realizar la predicción
def predecir_imagen(image):
if image is None:
return "Por favor, sube una imagen para analizar."
img = transform(image).unsqueeze(0).to(device)
with torch.no_grad():
outputs = model(img)
probabilities = torch.nn.functional.softmax(outputs[0], dim=0)
confidence, predicted_idx = torch.max(probabilities, dim=0)
predicted_class = class_names[predicted_idx]
info = afeccion_info.get(predicted_class, {})
descripcion = info.get('descripcion', 'No disponible.')
sintomas = info.get('sintomas', 'No disponible.')
tratamientos = info.get('tratamientos', 'No disponible.')
historial_entry = {
'imagen': image.filename if hasattr(image, 'filename') else 'imagen_subida',
'clase_predicha': predicted_class,
'confianza': f"{confidence.item()*100:.2f}%",
'descripcion': descripcion,
'sintomas': sintomas,
'tratamientos': tratamientos
}
guardar_historial(historial_entry)
# Generar resultado en HTML para una mejor presentación
resultado = f"""
<div style="font-family: Arial, sans-serif; line-height: 1.6; padding: 10px;">
<h2>Resultados del Análisis</h2>
<p><strong>Clase Predicha:</strong> {predicted_class}</p>
<p><strong>Confianza:</strong> {confidence.item()*100:.2f}%</p>
<hr />
<h3>Descripción</h3>
<p>{descripcion}</p>
<h3>Síntomas Comunes</h3>
<p>{sintomas}</p>
<h3>Posibles Tratamientos</h3>
<p>{tratamientos}</p>
<hr />
<h3>Recomendación</h3>
<p style="color: #d9534f;"><em>Se sugiere consultar a un dermatólogo para una evaluación más detallada.</em></p>
</div>
"""
return resultado
# Guardar el historial
def guardar_historial(entry):
historial_file = 'historial.json'
if os.path.exists(historial_file):
with open(historial_file, 'r') as f:
historial = json.load(f)
else:
historial = []
historial.append(entry)
with open(historial_file, 'w') as f:
json.dump(historial, f, indent=4)
# Historial
def mostrar_historial():
historial_file = 'historial.json'
if os.path.exists(historial_file):
with open(historial_file, 'r') as f:
historial = json.load(f)
df = pd.DataFrame(historial)
return df
else:
return pd.DataFrame(columns=['imagen', 'clase_predicha', 'confianza', 'descripcion', 'sintomas', 'tratamientos'])
# Interfaz con Gradio
with gr.Blocks() as demo:
gr.Markdown("# Clasificación de Afecciones de la Piel")
with gr.Tabs():
with gr.TabItem("Análisis"):
with gr.Row():
with gr.Column(scale=1):
image_input = gr.Image(type='pil', label="Sube una imagen de la piel")
gr.Markdown("Sube una imagen de una zona de la piel para obtener una predicción sobre la posible afección.")
analyze_button = gr.Button("Analizar")
with gr.Column(scale=2):
# Placeholder
output_html = gr.HTML(
value="""
<div style="font-family: Arial, sans-serif; color: #555; padding: 10px;">
<h2>Resultados del Análisis</h2>
<p>Después de analizar una imagen, los resultados se mostrarán aquí.</p>
</div>
""",
label="Resultados"
)
analyze_button.click(fn=predecir_imagen, inputs=image_input, outputs=output_html)
with gr.TabItem("Historial"):
historial_button = gr.Button("Mostrar Historial")
historial_output = gr.Dataframe(
headers=["Imagen", "Clase Predicha", "Confianza", "Descripción", "Síntomas", "Tratamientos"],
datatype=["str", "str", "str", "str", "str", "str"],
interactive=False
)
historial_button.click(fn=mostrar_historial, inputs=None, outputs=historial_output)
gr.HTML("""
<style>
.gr-button.primary {
background-color: #4CAF50;
color: white;
}
.gr-button.secondary {
background-color: #008CBA;
color: white;
}
.gr-button:hover {
opacity: 0.8;
}
</style>
""")
# Ejecutar la interfaz
demo.launch()