pub fn construct_realtime_model<A, B, M>(
architecture: A,
source_architecture: Option<A>,
prepared: PreparedRealtimeModelContract,
mechanisms: M,
context: &<<B as NeuralBackend>::Tensor as Tensor>::Context,
) -> Result<ConstructedRealtimeModel<A, B, M>, RealtimeModelConstructionError<A::Error, M::PolicyError, M::Error>>where
B: SubmissionBackend<Executor = <<B as NeuralBackend>::Tensor as Tensor>::Context>,
M: RealtimeModelConstructionMechanisms<A, B>,
A: LayeredArchitecture<B, M::State> + RealtimeArchitectureIdentity,
A::Error: Display,
M::PolicyError: Display,
M::Error: Display,Expand description
Constructs static modules, selected units, storage, and exact state once.