Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
@@ -9,9 +9,9 @@ def convert(file):
|
|
9 |
obj = joblib.load(in_file)
|
10 |
|
11 |
if "." in in_file.name:
|
12 |
-
out_file = in_file.split(".")[:-1]
|
13 |
else:
|
14 |
-
out_file = in_file
|
15 |
|
16 |
out_file += ".skops"
|
17 |
_, fname = tempfile.mkstemp(suffix=out_file)
|
|
|
9 |
obj = joblib.load(in_file)
|
10 |
|
11 |
if "." in in_file.name:
|
12 |
+
out_file = in_file.name.split(".")[:-1]
|
13 |
else:
|
14 |
+
out_file = in_file.name
|
15 |
|
16 |
out_file += ".skops"
|
17 |
_, fname = tempfile.mkstemp(suffix=out_file)
|