Class: Gsplat::Optim::Adam::State
- Inherits:
-
Data
- Object
- Data
- Gsplat::Optim::Adam::State
- Defined in:
- lib/gsplat/optim/adam.rb
Overview
Adam step count and first/second moments.
Instance Attribute Summary collapse
-
#exp_avg ⇒ Object
readonly
Returns the value of attribute exp_avg.
-
#exp_avg_sq ⇒ Object
readonly
Returns the value of attribute exp_avg_sq.
-
#step ⇒ Object
readonly
Returns the value of attribute step.
Instance Attribute Details
#exp_avg ⇒ Object (readonly)
Returns the value of attribute exp_avg
11 12 13 |
# File 'lib/gsplat/optim/adam.rb', line 11 def exp_avg @exp_avg end |
#exp_avg_sq ⇒ Object (readonly)
Returns the value of attribute exp_avg_sq
11 12 13 |
# File 'lib/gsplat/optim/adam.rb', line 11 def exp_avg_sq @exp_avg_sq end |
#step ⇒ Object (readonly)
Returns the value of attribute step
11 12 13 |
# File 'lib/gsplat/optim/adam.rb', line 11 def step @step end |