We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e4a69f8 commit 0bbd735Copy full SHA for 0bbd735
README.md
@@ -34,12 +34,18 @@ realtimeplt is a Python library made by VisionBrain which foucuses on getting th
34
## Use
35
The major dependency of realtimeplt is livelossplot
36
```python
37
+%matplotlib inline
38
+
39
+from keras.datasets import mnist
40
+from keras.utils import to_categorical
41
+from keras.models import Sequential
42
+from keras.layers import Flatten, Dense, Activation
43
44
+# raw keras
45
from livelossplot import PlotLossesKeras
-model.fit(X_train, Y_train,
- epochs=10,
- validation_data=(X_test, Y_test),
- callbacks=[PlotLossesKeras()],
- verbose=0)
46
47
+# tensorflow.keras
48
+# from livelossplot import PlotLossesKerasTF
49
```
50
51
## Supported DataScience Libraries
0 commit comments