Skip to content

TensorFlow Agents 1.1.0

Compare
Choose a tag to compare
@danijar danijar released this 04 Oct 15:49
· 58 commits to master since this release

Features:

  • Policy networks are now defined as functions mapping sequences of observations to sequences of actions. As a result, feed forward policies are faster now, and memory based agents are easier to implement. Previously, networks were restricted to be defined as RNNCells.
  • All functions of the agent interface receive a tensor of agent indices now. This adds the flexibility to process observations in smaller batches. Previously, perform() and experience() was defined on data from all the environments.