Skip to content
This repository was archived by the owner on Nov 9, 2022. It is now read-only.

Commit f16e9c6

Browse files
committed
log results to summary not config
1 parent d5929a6 commit f16e9c6

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

main.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
# dataset = 'dataset-medium' # 9.0 GB download
1212

1313
config = {
14-
'name' : 'baseline',
14+
'name' : 'baseline-fastai',
1515
'dataset' : dataset,
1616
}
1717

@@ -28,7 +28,8 @@
2828
# scores all the test images compared to the ground truth labels then
2929
# send the scores (f1, precision, recall) and prediction images to wandb
3030
score, predictions = scoring.score_predictions(dataset)
31-
wandb.config.update(score)
31+
print(score)
32+
wandb.log(score)
3233

3334
for f1, f2 in predictions:
3435
wandb.save( f1 )

0 commit comments

Comments
 (0)