Skip to content

Commit

Permalink
Fix valuelearn test
Browse files Browse the repository at this point in the history
  • Loading branch information
gavento committed Nov 28, 2018
1 parent ca0d0d3 commit cdb62e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/value_learning/test_valuesgd.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def test_rps():
us = UniformStrategy()
rng = get_rng(seed=3)
params = rng.rand(3, 3) - 0.5
vs = LinearValueStore(params, fix_mean=0.0, normalize_l1=6.0)
vs = LinearValueStore(params, fix_mean=0.0, regularize_l1=6.0)
infosampler = InformationSetSampler(g, us)
val = SparseSGDLinearValueLearning(g, matrix_zerosum_features, vs, infosampler, seed=44)
val.compute([us, us], 100, 0.1, 0.1)
Expand Down

0 comments on commit cdb62e2

Please sign in to comment.