agent.py 6.2 KB
Newer Older
B
Bo Zhou 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
#   Copyright (c) 2018 PaddlePaddle Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

import warnings
warnings.simplefilter('default')

import paddle.fluid as fluid
from parl.core.fluid import layers
from parl.utils.deprecation import deprecated
from parl.core.agent_base import AgentBase
from parl.core.fluid.algorithm import Algorithm
from parl.utils import machine_info

__all__ = ['Agent']


class Agent(AgentBase):
B
Bo Zhou 已提交
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
    """
    | `alias`: ``parl.Agent``
    | `alias`: ``parl.core.fluid.agent.Agent``

    | Agent is one of the three basic classes of PARL. 

    | It is responsible for interacting with the environment and collecting data for training the policy.
    | To implement a customized ``Agent``, users can:

      .. code-block:: python

        import parl

        class MyAgent(parl.Agent):
            def __init__(self, algorithm, act_dim):
                super(MyAgent, self).__init__(algorithm)
                self.act_dim = act_dim
      This class will initialize the neural network parameters automatically, and provides an executor for users to run the programs (self.fluid_executor).

    Attributes:
        gpu_id (int): deprecated. specify which GPU to be used. -1 if to use the CPU.
        fluid_executor (fluid.Executor): executor for running programs of the agent.
        alg (parl.algorithm): algorithm of this agent.

    Public Functions:
        - ``build_program`` (**abstract function**): build various programs for the agent to interact with outer environment.
        - ``get_weights``: return a Python dictionary containing all the parameters of self.alg.
        - ``set_weights``: copy parameters from ``set_weights()`` to this agent.
        - ``sample``: return a noisy action to perform exploration according to the policy.
        - ``predict``: return an action given current observation.
        - ``learn``: update the parameters of self.alg using the `learn_program` defined in `build_program()`.

    Todo:
        - allow users to get parameters of a specified model by specifying the model's name in ``get_weights()``.
          
    """

B
Bo Zhou 已提交
66
    def __init__(self, algorithm, gpu_id=None):
B
Bo Zhou 已提交
67
        """Build programs by calling the method ``self.build_program()`` and run initialization function of ``fluid.default_startup_program()``.
B
Bo Zhou 已提交
68 69

        Args:
B
Bo Zhou 已提交
70 71
            algorithm (parl.Algorithm): an instance of `parl.Algorithm`. This algorithm is then passed to `self.alg`.
            gpu_id (int): deprecated. specify which GPU to be used. -1 if to use the CPU.
B
Bo Zhou 已提交
72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92
        """
        if gpu_id is not None:
            warnings.warn(
                "the `gpu_id` argument of `__init__` function in `parl.Agent` is deprecated since version 1.2 and will be removed in version 1.3.",
                DeprecationWarning,
                stacklevel=2)

        assert isinstance(algorithm, Algorithm)
        super(Agent, self).__init__(algorithm)

        self.alg = algorithm
        self.gpu_id = 0 if machine_info.is_gpu_available() else -1

        self.build_program()

        self.place = fluid.CUDAPlace(
            0) if machine_info.is_gpu_available() else fluid.CPUPlace()
        self.fluid_executor = fluid.Executor(self.place)
        self.fluid_executor.run(fluid.default_startup_program())

    def build_program(self):
B
Bo Zhou 已提交
93 94
        """Build various programs here with the 
        learn, predict, sample functions of the algorithm.
B
Bo Zhou 已提交
95 96
        
        Note:
B
Bo Zhou 已提交
97 98
            | Users **must** implement this function in an ``Agent``.
            | This function will be called automatically in the initialization function.
B
Bo Zhou 已提交
99
        
B
Bo Zhou 已提交
100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116
        To build a program, you must do the following:
            a. Create a fluid program with ``fluid.program_guard()``;
            b. Define data layers for feeding the data;
            c. Build various programs(e.g., learn_program, predict_program) with data layers defined in step b.

        Example:

        .. code-block:: python

	    self.pred_program = fluid.Program()

            with fluid.program_guard(self.pred_program):
                obs = layers.data(
                    name='obs', shape=[self.obs_dim], dtype='float32')
                self.act_prob = self.alg.predict(obs)
          

B
Bo Zhou 已提交
117 118 119 120 121 122
        """
        raise NotImplementedError

    @deprecated(
        deprecated_in='1.2', removed_in='1.3', replace_function='get_weights')
    def get_params(self):
B
Bo Zhou 已提交
123
        """ Returns a Python dictionary containing the whole parameters of self.alg.
B
Bo Zhou 已提交
124 125

        Returns:
B
Bo Zhou 已提交
126
            a Python List containing the parameters of self.alg.
B
Bo Zhou 已提交
127 128 129 130 131 132
        """
        return self.algorithm.get_params()

    @deprecated(
        deprecated_in='1.2', removed_in='1.3', replace_function='set_weights')
    def set_params(self, params):
B
Bo Zhou 已提交
133
        """Copy parameters from ``get_params()`` into this agent.
B
Bo Zhou 已提交
134 135

        Args:
B
Bo Zhou 已提交
136
            params(dict): a Python List containing the parameters of self.alg.
B
Bo Zhou 已提交
137 138 139 140
        """
        self.algorithm.set_params(params)

    def learn(self, *args, **kwargs):
B
Bo Zhou 已提交
141 142
        """The training interface for ``Agent``.
        This function feeds the training data into the learn_program defined in ``build_program()``.
B
Bo Zhou 已提交
143 144 145 146
        """
        raise NotImplementedError

    def predict(self, *args, **kwargs):
B
Bo Zhou 已提交
147
        """Predict an action when given the observation of the environment.
B
Bo Zhou 已提交
148

B
Bo Zhou 已提交
149
        This function feeds the observation into the prediction program defined in ``build_program()``. It is often used in the evaluation stage.
B
Bo Zhou 已提交
150 151 152 153
        """
        raise NotImplementedError

    def sample(self, *args, **kwargs):
B
Bo Zhou 已提交
154
        """Return an action with noise when given the observation of the environment.
B
Bo Zhou 已提交
155
            
B
Bo Zhou 已提交
156
        In general, this function is used in train process as noise is added to the action to preform exploration.
B
Bo Zhou 已提交
157 158 159

        """
        raise NotImplementedError