org.deeplearning4j.rl4j.network.dqn.DQNFactoryStdConv Java Examples
The following examples show how to use
org.deeplearning4j.rl4j.network.dqn.DQNFactoryStdConv.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: QLearningDiscreteConv.java From deeplearning4j with Apache License 2.0 | 4 votes |
@Deprecated public QLearningDiscreteConv(MDP<OBSERVATION, Integer, DiscreteSpace> mdp, DQNFactoryStdConv.Configuration netConf, HistoryProcessor.Configuration hpconf, QLConfiguration conf, IDataManager dataManager) { this(mdp, new DQNFactoryStdConv(netConf.toNetworkConfiguration()), hpconf, conf, dataManager); }
Example #2
Source File: QLearningDiscreteConv.java From deeplearning4j with Apache License 2.0 | 4 votes |
@Deprecated public QLearningDiscreteConv(MDP<OBSERVATION, Integer, DiscreteSpace> mdp, DQNFactoryStdConv.Configuration netConf, HistoryProcessor.Configuration hpconf, QLConfiguration conf) { this(mdp, new DQNFactoryStdConv(netConf.toNetworkConfiguration()), hpconf, conf); }
Example #3
Source File: QLearningDiscreteConv.java From deeplearning4j with Apache License 2.0 | 4 votes |
public QLearningDiscreteConv(MDP<OBSERVATION, Integer, DiscreteSpace> mdp, NetworkConfiguration netConf, HistoryProcessor.Configuration hpconf, QLearningConfiguration conf) { this(mdp, new DQNFactoryStdConv(netConf), hpconf, conf); }
Example #4
Source File: AsyncNStepQLearningDiscreteConv.java From deeplearning4j with Apache License 2.0 | 4 votes |
@Deprecated public AsyncNStepQLearningDiscreteConv(MDP<OBSERVATION, Integer, DiscreteSpace> mdp, NetworkConfiguration netConf, HistoryProcessor.Configuration hpconf, AsyncQLearningConfiguration conf, IDataManager dataManager) { this(mdp, new DQNFactoryStdConv(netConf), hpconf, conf, dataManager); }
Example #5
Source File: AsyncNStepQLearningDiscreteConv.java From deeplearning4j with Apache License 2.0 | 4 votes |
public AsyncNStepQLearningDiscreteConv(MDP<OBSERVATION, Integer, DiscreteSpace> mdp, NetworkConfiguration netConf, HistoryProcessor.Configuration hpconf, AsyncQLearningConfiguration conf) { this(mdp, new DQNFactoryStdConv(netConf), hpconf, conf); }