Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Mario Infang
ML-ADML-HSLU
Commits
c4b76865
Commit
c4b76865
authored
5 months ago
by
Pascal Wullschleger
Browse files
Options
Download
Email Patches
Plain Diff
Work on CNN blood cell classificaiton exercise
parent
7334840a
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
notebooks/09A Convolutional Neural Network/09A Blood Cell Classification using CNNs.ipynb
+681
-136
...al Network/09A Blood Cell Classification using CNNs.ipynb
notebooks/09A Convolutional Neural Network/plots.py
+2
-2
notebooks/09A Convolutional Neural Network/plots.py
with
683 additions
and
138 deletions
+683
-138
notebooks/09A Convolutional Neural Network/09A Blood Cell Classification using CNNs.ipynb
+
681
-
136
View file @
c4b76865
This diff is collapsed.
Click to expand it.
notebooks/09A Convolutional Neural Network/plots.py
+
2
-
2
View file @
c4b76865
...
...
@@ -2,8 +2,8 @@ import matplotlib.pyplot as plt
def
show_history_plots_of_trained_model
(
history
,
fill_between
=
True
):
acc
=
history
.
history
[
"accuracy"
]
val_acc
=
history
.
history
[
"val_accuracy"
]
acc
=
history
.
history
[
"
sparse_categorical_
accuracy"
]
val_acc
=
history
.
history
[
"val_
sparse_categorical_
accuracy"
]
loss
=
history
.
history
[
"loss"
]
val_loss
=
history
.
history
[
"val_loss"
]
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment
Menu
Projects
Groups
Snippets
Help