Skip to content

Commit a0b4edf

Browse files
Set PODNet in fixed memory by default.
1 parent f3ad213 commit a0b4edf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

inclearn/models/podnet.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def __init__(self, args):
3838

3939
# Rehearsal Learning:
4040
self._memory_size = args["memory_size"]
41-
self._fixed_memory = args["fixed_memory"]
41+
self._fixed_memory = args.get("fixed_memory", True)
4242
self._herding_selection = args.get("herding_selection", {"type": "icarl"})
4343
self._n_classes = 0
4444
self._last_results = None

0 commit comments

Comments
 (0)