Skip to content

Commit 94d8c5a

Browse files
committed
change default epochs to 500 from 1000 in deep_emotion_recognition.py
1 parent 5a64aad commit 94d8c5a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

deep_emotion_recognition.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ def __init__(self, **kwargs):
9090

9191
# training attributes
9292
self.batch_size = kwargs.get("batch_size", 64)
93-
self.epochs = kwargs.get("epochs", 1000)
93+
self.epochs = kwargs.get("epochs", 500)
9494

9595
# the name of the model
9696
self.model_name = ""

0 commit comments

Comments
 (0)