Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
@@ -71,12 +71,13 @@ def merge_models() -> None:
|
|
71 |
"""
|
72 |
command = ["mergekit-yaml", "config.yaml", "merge", "--copy-tokenizer", "--allow-crimes", "--out-shard-size", "1B", "--lazy-unpickle"]
|
73 |
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
|
|
80 |
|
81 |
|
82 |
def make_df(file_path: str, n_rows: int) -> pd.DataFrame:
|
|
|
71 |
"""
|
72 |
command = ["mergekit-yaml", "config.yaml", "merge", "--copy-tokenizer", "--allow-crimes", "--out-shard-size", "1B", "--lazy-unpickle"]
|
73 |
|
74 |
+
with open("output.log", "a") as log_file:
|
75 |
+
try:
|
76 |
+
result = subprocess.run(command, check=True, stdout=log_file,
|
77 |
+
stderr=log_file, text=True)
|
78 |
+
print(f"mergekit: {result.stdout}")
|
79 |
+
except subprocess.CalledProcessError as e:
|
80 |
+
print(f"mergekit: {e.stderr}")
|
81 |
|
82 |
|
83 |
def make_df(file_path: str, n_rows: int) -> pd.DataFrame:
|