MCPcopy Create free account
hub / github.com/FidoProject/Fido / Model

Class Model

include/QLearn.h:15–25  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

13namespace rl {
14
15 struct Model {
16 net::NeuralNet *network;
17 Action action;
18
19 Model(net::NeuralNet * network_, Action action_) {
20 network = network_;
21 action = action_;
22 }
23
24 Model() {}
25 };
26
27 /** A Learner that follows the Q-Learning algorithm */
28 class QLearn : public Learner {

Callers 1

QLearnMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected