Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -72,10 +72,10 @@ model_size = "large-v2"
|
|
72 |
# model = WhisperModel(model_size, device="cpu", compute_type="float16") # JB, DRAAIT OP COLAB CPU OK ?
|
73 |
# ValueError: Requested float16 compute type, but the target device or backend do not support efficient float16 computation.
|
74 |
#
|
|
|
75 |
model = WhisperModel(model_size, device="cpu") # , compute_type="float16") # JB, DRAAIT OP COLAB CPU OK ?
|
76 |
-
|
77 |
# JB: Dit gebruikt mijn HF Token !
|
78 |
-
|
79 |
|
80 |
|
81 |
|
|
|
72 |
# model = WhisperModel(model_size, device="cpu", compute_type="float16") # JB, DRAAIT OP COLAB CPU OK ?
|
73 |
# ValueError: Requested float16 compute type, but the target device or backend do not support efficient float16 computation.
|
74 |
#
|
75 |
+
st.write("Loading the WhisperModel: model = WhisperModel(model_size, device=\"cpu\")")
|
76 |
model = WhisperModel(model_size, device="cpu") # , compute_type="float16") # JB, DRAAIT OP COLAB CPU OK ?
|
|
|
77 |
# JB: Dit gebruikt mijn HF Token !
|
78 |
+
st.write("Ready Loading the WhisperModel: model = WhisperModel(model_size, device=\"cpu\")")
|
79 |
|
80 |
|
81 |
|