franckew commited on
Commit
ec1fc80
1 Parent(s): de8aa20

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -6,7 +6,7 @@ from tensorflow.keras.applications.inception_v3 import preprocess_input
6
  from tensorflow.keras.models import load_model
7
 
8
  # Lade dein trainiertes Modell
9
- model = load_model('/home/user/app/one_piece_character_classifier.h5') # Stelle sicher, dass dieser Pfad korrekt ist
10
 
11
  def predict_character(img):
12
  img = Image.fromarray(img.astype('uint8'), 'RGB') # Stelle sicher, dass das Bild im RGB-Format vorliegt
 
6
  from tensorflow.keras.models import load_model
7
 
8
  # Lade dein trainiertes Modell
9
+ model = load_model('/home/user/app/inceptionv3.h5') # Stelle sicher, dass dieser Pfad korrekt ist
10
 
11
  def predict_character(img):
12
  img = Image.fromarray(img.astype('uint8'), 'RGB') # Stelle sicher, dass das Bild im RGB-Format vorliegt