Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
fix wrong usage of `dict.update`, reported in Issue victoresque#61
  • Loading branch information
SunQpark authored Oct 24, 2019
1 parent 7dcece9 commit 0f70b64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ If you have additional information to be logged, in `_train_epoch()` of your tra

```python
additional_log = {"gradient_norm": g, "sensitivity": s}
log = log.update(additional_log)
log.update(additional_log)
return log
```

Expand Down

0 comments on commit 0f70b64

Please sign in to comment.