metarl.tf.regressors.regressor module¶
Regressor base classes without Parameterized.
-
class
Regressor(input_shape, output_dim, name)[source]¶ Bases:
metarl.tf.models.module.ModuleRegressor base class.
Parameters:
-
class
StochasticRegressor(input_shape, output_dim, name)[source]¶ Bases:
metarl.tf.regressors.regressor.Regressor,metarl.tf.models.module.StochasticModuleStochasticRegressor base class.
-
log_likelihood_sym(x_var, y_var, name=None)[source]¶ Symbolic graph of the log likelihood.
Parameters: - x_var (tf.Tensor) – Input tf.Tensor for the input data.
- y_var (tf.Tensor) – Input tf.Tensor for the label of data.
- name (str) – Name of the new graph.
Returns: tf.Tensor output of the symbolic log likelihood.
-