yttuncel

Results 4 comments of yttuncel

@vrodriguezf I didn't do a thorough testing of this, but using `TSRollingMean()` instead of `TSSmooth()` addressed the problem. `TSRollingMean()` inherits `Transform` and not `RandTransform`, so you might be correct with...

Thanks for answering. I'm trying to implement Hinton's Forward-forward algorithm. Basically, I have a binary classification problem: $\hat y \in \{-1,1\}$. My loss function is something like the following: $L...

Yes, to be frank, I've seen log(1+exp) in an implementation I've found on github. I compared it with 1/(1+exp) and the log(1+exp) is working better for my dataset. I have...

Hi again, I have a working implementation of BP and FF for my dataset. Now, I'm trying to get a count of the total allocated memory for training. For example,...