Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/moses-smt/vowpal_wabbit.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuong Hoang <lhoang@live.com>2014-11-10 02:22:33 +0300
committerLuong Hoang <lhoang@live.com>2014-11-10 02:22:33 +0300
commit627aff840078af599944eb897670b37e7d6dea06 (patch)
tree839d176d15d4603b13675df3d6e854eb5fc3a5b4 /cs_test
parent4bbf1edc7927f378b46eddb96f66de593cb7fdce (diff)
#85: renamed MwtExplorer to OldMwtExplorer to reuse name for the new interface class
Diffstat (limited to 'cs_test')
-rw-r--r--cs_test/ExploreClock.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/cs_test/ExploreClock.cs b/cs_test/ExploreClock.cs
index 73b9346f..e5333190 100644
--- a/cs_test/ExploreClock.cs
+++ b/cs_test/ExploreClock.cs
@@ -31,7 +31,7 @@ namespace cs_test
{
watch.Restart();
- MwtExplorer mwt = new MwtExplorer("test");
+ OldMwtExplorer mwt = new OldMwtExplorer("test");
mwt.InitializeEpsilonGreedy<int>(epsilon, new StatefulPolicyDelegate<int>(SampleStatefulPolicyFunc), policyParams, numActions);
timeInit += (iter < numWarmup) ? 0 : watch.Elapsed.TotalMilliseconds;