ray.rllib.core.rl_module.default_model_config.DefaultModelConfig.conv_filters#
- DefaultModelConfig.conv_filters: List[Tuple[int, int | Tuple[int, int], int | Tuple[int, int]]] | None = None#
List of lists of format [num_out_channels, kernel, stride] defining a Conv2D stack if the input space is 2D. Each item in the outer list represents one Conv2D layer.
kernel
andstride
may be single ints (width and height have same value) or 2-tuples (int, int) specifying width and height dimensions separately. If None (default) and the input space is 2D, RLlib tries to find a default filter setup given the exact input dimensions.