dyngpt.solver.solving_STN

dyngpt.solver.solving_STN(model_name, params=[], initial_value=[], args='')[source]

Solve the state transition network using a trained neural network model.

Args:

model_name (str): The name of the model to be used. params (list, optional): A list of parameters for the model. Defaults to []. initial_value (list, optional): A list of initial values for the system. Defaults to []. args (Namespace, optional): Additional arguments containing model configurations,

including device, batch size, and initial values. Defaults to “”.

Returns:

np.ndarray: Sampled data generated by the neural network based on the provided parameters.