Commit
•
33a42fa
1
Parent(s):
61d242b
Comment out broken loop
Browse files- utilities.py +1 -1
utilities.py
CHANGED
@@ -194,7 +194,7 @@ def train_model(proj_dir, progress=gr.Progress(track_tqdm=True)):
|
|
194 |
model.apply(clipper)
|
195 |
pbar.update()
|
196 |
pbar.close()
|
197 |
-
for name, param in model.named_parameters():
|
198 |
# print(f"{name}: {list(map(lambda x: round(float(x), 4), param))}")
|
199 |
|
200 |
train_set = dataset[dataset['i'] > 2]
|
|
|
194 |
model.apply(clipper)
|
195 |
pbar.update()
|
196 |
pbar.close()
|
197 |
+
# for name, param in model.named_parameters():
|
198 |
# print(f"{name}: {list(map(lambda x: round(float(x), 4), param))}")
|
199 |
|
200 |
train_set = dataset[dataset['i'] > 2]
|