Update app.py
Browse files
app.py
CHANGED
|
@@ -3,6 +3,9 @@ import librosa
|
|
| 3 |
import numpy as np
|
| 4 |
import tensorflow as tf
|
| 5 |
from tensorflow.keras.models import load_model
|
|
|
|
|
|
|
|
|
|
| 6 |
|
| 7 |
# Load your pre-trained model (make sure it's in the same directory or provide a path)
|
| 8 |
model = load_model('voice_authentication_model.keras') # Replace with your model's filename
|
|
|
|
| 3 |
import numpy as np
|
| 4 |
import tensorflow as tf
|
| 5 |
from tensorflow.keras.models import load_model
|
| 6 |
+
import os
|
| 7 |
+
os.system('pip install --upgrade pip')
|
| 8 |
+
|
| 9 |
|
| 10 |
# Load your pre-trained model (make sure it's in the same directory or provide a path)
|
| 11 |
model = load_model('voice_authentication_model.keras') # Replace with your model's filename
|