Packages

o

com.scalarl

Evaluator

object Evaluator

Contains traits and instances for the two evaluation methods.

Source
Evaluator.scala
Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Evaluator
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. class FromAction[Obs, A, R, G, S[_], F[_, _, _, _, *[_]]] extends AnyRef

    Builder class that manages conversion of an evaluate.ActionValue instance into either an evaluate.ActionValue or evaluate.StateValue instance.

  2. class FromState[Obs, A, R, G, S[_], F[_, _, _, _, *[_]]] extends AnyRef

    Builder class that manages conversion of an evaluate.StateValue instance into either an evaluate.ActionValue or evaluate.StateValue instance.

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def action[Obs, A, R, G, S[_]]: FromAction[Obs, A, R, G, S, ActionValue]
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def bellman[Obs, A, R, G, M[_], S[_]](valueFn: StateValueFn[Obs, G], policy: Policy[Obs, A, R, M, S], prepare: (R) ⇒ G, merge: (G, G) ⇒ G)(implicit arg0: DModule[G], arg1: Expectation[M], arg2: Expectation[S]): StateValue[Obs, A, R, G, S]

    The full bellman estimation, where we know the dynamics of the policy and of the system.

    The full bellman estimation, where we know the dynamics of the policy and of the system.

    Could also be defined by

    state.byPolicy(policy).byStateValue(prepare, merge).apply(valueFn)
  7. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  8. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  9. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  10. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  11. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  12. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  13. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  14. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  15. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  16. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  17. def oneAhead[Obs, A, R, G, M[_], S[_]](valueFn: StateValueFn[Obs, G], prepare: (R) ⇒ G, merge: (G, G) ⇒ G)(implicit arg0: DModule[G], arg1: Expectation[S]): ActionValue[Obs, A, R, G, S]

    Evaluator that uses a world's dynamics to estimate the value of a given action.

  18. def state[Obs, A, R, G, S[_]]: FromState[Obs, A, R, G, S, StateValue]

    This is my attempt at getting a better builder syntax going!

  19. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  20. def toString(): String
    Definition Classes
    AnyRef → Any
  21. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  22. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  23. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()

Inherited from AnyRef

Inherited from Any

Ungrouped