You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I used a trick to use the StateSimulator in Loader mode: usually a loader use fetch to load data from files and then uses some Transformers to process data, these classes use transform function which takes a dataset as input and outputs a transformed dataset, but basically the output of the first Transformer is the input of the second.
Leveraging on this mechanism, I used a StateSimulator that outputs the dynamics and the SimulationModel class then use this information to produce a dataset.
This thread is used to sketch ideas for a better implementation of this feature. (Related with #57 )
The text was updated successfully, but these errors were encountered:
I can use a base StateSimulator class which can be used to simulate states dynamics, then this can be used by another class that simulates the real signal.
I used a trick to use the
StateSimulator
inLoader
mode: usually a loader usefetch
to load data from files and then uses someTransformer
s to process data, these classes usetransform
function which takes a dataset as input and outputs a transformed dataset, but basically the output of the firstTransformer
is the input of the second.Leveraging on this mechanism, I used a
StateSimulator
that outputs the dynamics and theSimulationModel
class then use this information to produce a dataset.This thread is used to sketch ideas for a better implementation of this feature. (Related with #57 )
The text was updated successfully, but these errors were encountered: