(self, x)
| 13 | self.pred_len = configs.pred_len |
| 14 | |
| 15 | def forward(self, x): |
| 16 | B,L,D = x.shape |
| 17 | x = x[:,-1,:].reshape(B,1,D).repeat(self.pred_len,axis=1) |
| 18 | return x # [B, L, D] |
| 19 | |
| 20 | class Naive_thread(threading.Thread): |
| 21 | def __init__(self,func,args=()): |
nothing calls this directly
no outgoing calls
no test coverage detected