Class: Jubatus::Bandit::ArmInfo

Inherits:
Object
  • Object
show all
Includes:
Common
Defined in:
lib/jubatus/bandit/types.rb

Constant Summary collapse

TYPE =
TTuple.new(TInt.new(true, 4), TFloat.new)

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods included from Common

check_type, check_types

Constructor Details

#initialize(trial_count, weight) ⇒ ArmInfo

Returns a new instance of ArmInfo.



15
16
17
18
# File 'lib/jubatus/bandit/types.rb', line 15

def initialize(trial_count, weight)
  @trial_count = trial_count
  @weight = weight
end

Instance Attribute Details

#trial_countObject (readonly)

Returns the value of attribute trial_count.



39
40
41
# File 'lib/jubatus/bandit/types.rb', line 39

def trial_count
  @trial_count
end

#weightObject (readonly)

Returns the value of attribute weight.



39
40
41
# File 'lib/jubatus/bandit/types.rb', line 39

def weight
  @weight
end

Class Method Details

.from_msgpack(m) ⇒ Object



25
26
27
28
# File 'lib/jubatus/bandit/types.rb', line 25

def ArmInfo.from_msgpack(m)
  val = TYPE.from_msgpack(m)
  ArmInfo.new(*val)
end

Instance Method Details

#to_msgpack(out = '') ⇒ Object



20
21
22
23
# File 'lib/jubatus/bandit/types.rb', line 20

def to_msgpack(out = '')
  t = [@trial_count, @weight]
  return TYPE.to_msgpack(t)
end

#to_sObject



30
31
32
33
34
35
36
37
# File 'lib/jubatus/bandit/types.rb', line 30

def to_s
  gen = Jubatus::Common::MessageStringGenerator.new
  gen.open("arm_info")
  gen.add("trial_count", @trial_count)
  gen.add("weight", @weight)
  gen.close()
  return gen.to_s
end