Changeset 11974 for branches/HeuristicLab.Problems.GrammaticalOptimization/HeuristicLab.Algorithms.Bandits/Policies
- Timestamp:
- 02/10/15 02:05:31 (10 years ago)
- Location:
- branches/HeuristicLab.Problems.GrammaticalOptimization/HeuristicLab.Algorithms.Bandits/Policies
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.Problems.GrammaticalOptimization/HeuristicLab.Algorithms.Bandits/Policies/GaussianThompsonSamplingPolicy.cs
r11832 r11974 57 57 } 58 58 59 // very unlikely to be the same (and we don't care) 59 60 if (theta > bestQ) { 60 61 bestQ = theta; -
branches/HeuristicLab.Problems.GrammaticalOptimization/HeuristicLab.Algorithms.Bandits/Policies/GenericThompsonSamplingPolicy.cs
r11806 r11974 23 23 aIdx++; 24 24 var q = aInfo.SampleExpectedReward(random); 25 // very unlikely to be equal and we don't care 25 26 if (q > bestQ) { 26 27 bestQ = q;
Note: See TracChangeset
for help on using the changeset viewer.