Skip to content

Commit

Permalink
Fix small typo (keras-team#4559)
Browse files Browse the repository at this point in the history
* Fix small typo

* Fix small typo
  • Loading branch information
amaotone authored and fchollet committed Dec 1, 2016
1 parent 79ec9b8 commit b23e873
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions keras/callbacks.py
Original file line number Diff line number Diff line change
Expand Up @@ -671,7 +671,7 @@ class CSVLogger(Callback):
model.fit(X_train, Y_train, callbacks=[csv_logger])
```
Arguments
# Arguments
filename: filename of the csv file, e.g. 'run/log.csv'.
separator: string used to separate elements in the csv file.
append: True: append if file exists (useful for continuing
Expand Down Expand Up @@ -723,7 +723,7 @@ class LambdaCallback(Callback):
"""Callback for creating simple, custom callbacks on-the-fly.
This callback is constructed with anonymous functions that will be called
at the appropiate time. Note that the callbacks expects positional
at the appropriate time. Note that the callbacks expects positional
arguments, as:
- `on_epoch_begin` and `on_epoch_end` expect two positional arguments: `epoch`, `logs`
- `on_batch_begin` and `on_batch_end` expect two positional arguments: `batch`, `logs`
Expand Down

0 comments on commit b23e873

Please sign in to comment.