Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
@@ -72,8 +72,8 @@ def merge_models() -> None:
|
|
72 |
command = ["mergekit-yaml", "config.yaml", "merge", "--copy-tokenizer", "--allow-crimes", "--out-shard-size", "1B", "--lazy-unpickle"]
|
73 |
|
74 |
try:
|
75 |
-
result = subprocess.run(command, check=True, stdout=
|
76 |
-
stderr=
|
77 |
print(f"mergekit: {result.stdout}")
|
78 |
except subprocess.CalledProcessError as e:
|
79 |
print(f"mergekit: {e.stderr}")
|
|
|
72 |
command = ["mergekit-yaml", "config.yaml", "merge", "--copy-tokenizer", "--allow-crimes", "--out-shard-size", "1B", "--lazy-unpickle"]
|
73 |
|
74 |
try:
|
75 |
+
result = subprocess.run(command, check=True, stdout="output.log",
|
76 |
+
stderr="output.log", text=True)
|
77 |
print(f"mergekit: {result.stdout}")
|
78 |
except subprocess.CalledProcessError as e:
|
79 |
print(f"mergekit: {e.stderr}")
|