agent.py 7.1 KB
Newer Older
B
Bo Zhou 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
#   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')

H
Hongsheng Zeng 已提交
18
import os
B
Bo Zhou 已提交
19 20 21 22 23 24 25 26 27 28
import paddle.fluid as fluid
from parl.core.fluid import layers
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
    """
    | `alias`: ``parl.Agent``
    | `alias`: ``parl.core.fluid.agent.Agent``

B
Bo Zhou 已提交
33
    | Agent is one of the three basic classes of PARL.
B
Bo Zhou 已提交
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

    | 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:
        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()`.
B
Bo Zhou 已提交
59 60
        - ``save``: save parameters of the ``agent`` to a given path.
        - ``restore``: restore previous saved parameters from a given path.
B
Bo Zhou 已提交
61 62 63

    Todo:
        - allow users to get parameters of a specified model by specifying the model's name in ``get_weights()``.
B
Bo Zhou 已提交
64

B
Bo Zhou 已提交
65 66
    """

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

        Args:
B
Bo Zhou 已提交
71
            algorithm (parl.Algorithm): an instance of `parl.Algorithm`. This algorithm is then passed to `self.alg`.
B
Bo Zhou 已提交
72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
        """

        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 已提交
88
        """Build various programs here with the
B
Bo Zhou 已提交
89
        learn, predict, sample functions of the algorithm.
B
Bo Zhou 已提交
90

B
Bo Zhou 已提交
91
        Note:
B
Bo Zhou 已提交
92 93
            | Users **must** implement this function in an ``Agent``.
            | This function will be called automatically in the initialization function.
B
Bo Zhou 已提交
94

B
Bo Zhou 已提交
95 96 97 98 99 100 101 102 103 104 105 106 107 108 109
        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 已提交
110

B
Bo Zhou 已提交
111

B
Bo Zhou 已提交
112 113 114 115
        """
        raise NotImplementedError

    def learn(self, *args, **kwargs):
B
Bo Zhou 已提交
116 117
        """The training interface for ``Agent``.
        This function feeds the training data into the learn_program defined in ``build_program()``.
B
Bo Zhou 已提交
118 119 120 121
        """
        raise NotImplementedError

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

B
Bo Zhou 已提交
124
        This function feeds the observation into the prediction program defined in ``build_program()``. It is often used in the evaluation stage.
B
Bo Zhou 已提交
125 126 127 128
        """
        raise NotImplementedError

    def sample(self, *args, **kwargs):
B
Bo Zhou 已提交
129
        """Return an action with noise when given the observation of the environment.
B
Bo Zhou 已提交
130

B
Bo Zhou 已提交
131
        In general, this function is used in train process as noise is added to the action to preform exploration.
B
Bo Zhou 已提交
132 133 134

        """
        raise NotImplementedError
B
Bo Zhou 已提交
135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155

    def save(self, save_path, program=None):
        """Save parameters.

        Args:
            save_path(str): where to save the parameters.
            program(fluid.Program): program that describes the neural network structure. If None, will use self.learn_program.

        Raises:
            ValueError: if program is None and self.learn_program does not exist.

        Example:

        .. code-block:: python

            agent = AtariAgent()
            agent.save('./model.ckpt')

        """
        if program is None:
            program = self.learn_program
H
Hongsheng Zeng 已提交
156 157
        dirname = os.sep.join(save_path.split(os.sep)[:-1])
        filename = save_path.split(os.sep)[-1]
B
Bo Zhou 已提交
158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187
        fluid.io.save_params(
            executor=self.fluid_executor,
            dirname=dirname,
            main_program=program,
            filename=filename)

    def restore(self, save_path, program=None):
        """Restore previously saved parameters.
        This method requires a program that describes the network structure.
        The save_path argument is typically a value previously passed to ``save_params()``.

        Args:
            save_path(str): path where parameters were previously saved.
            program(fluid.Program): program that describes the neural network structure. If None, will use self.learn_program.

        Raises:
            ValueError: if program is None and self.learn_program does not exist.

        Example:

        .. code-block:: python

            agent = AtariAgent()
            agent.save('./model.ckpt')
            agent.restore('./model.ckpt')

        """

        if program is None:
            program = self.learn_program
L
LI Yunxiang 已提交
188 189
        if type(program) is fluid.compiler.CompiledProgram:
            program = program._init_program
H
Hongsheng Zeng 已提交
190 191
        dirname = os.sep.join(save_path.split(os.sep)[:-1])
        filename = save_path.split(os.sep)[-1]
B
Bo Zhou 已提交
192 193 194 195 196
        fluid.io.load_params(
            executor=self.fluid_executor,
            dirname=dirname,
            main_program=program,
            filename=filename)