-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcalc_forgetting.py
26 lines (24 loc) · 1005 Bytes
/
calc_forgetting.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# incremental forgetting metric
# ASSUMES EQUAL TASK SIZE (e.g., classes per task)
#
# y is num_trials x num_tasks_time x num_tasks_eval
#
# so, y[0,1,0] would be the eval performance of the first task (third index) after
# training the second task (second index) in random seed trial 1 (first index). y[0,1,3] would be the eval performance of the
# fourth task after training the second task in random seed trial 1, and thus should not exist (will be ignored)
import numpy as np
# note that for 1 random trial, input should be 1 x T x T size, where T is number of tasks
def calc_forgetting(y):
y = np.asarray(y)
fgt_all=[]
index = y[0].shape[1]
for r in range(len(y)):
# calculate forgetting
fgt=0
for t in range(1,index):
for i in range(t):
fgt+= (y[r][t-1,i] - y[r][t,i]) * ((1)/(t))
fgt_all.append(fgt / (len(y[r])-1))
fgt_all = np.asarray(fgt_all)
return fgt_all
# return np.mean(fgt_all), np.std(fgt_all)