Skip to content

Commit

Permalink
fix evaluation ouput
Browse files Browse the repository at this point in the history
version bump
  • Loading branch information
eisber committed Feb 13, 2017
1 parent c1ba624 commit ed0d85b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions cs/azure/Trainer/Operations/EvalOperation.cs
Expand Up @@ -103,16 +103,16 @@ private List<EvalData> OfflineEvaluate(object trainerResultObj)
return this.OfflineEvaluateInternal(trainerResult)
// insert event id & timestamp to enable data correlation
.Select(e => {
e.EventId = trainerResult.EventId;
e.Timestamp = trainerResult.Timestamp;
var ed = new EvalData
{
PartitionKey = trainerResult.PartitionKey,
Data = e,
JSON = JsonConvert.SerializeObject(e)
};
ed.Data.EventId = trainerResult.EventId;
ed.Data.Timestamp = trainerResult.Timestamp;
return ed;
})
.ToList();
Expand Down
2 changes: 1 addition & 1 deletion cs/version.props
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<VowpalWabbitAssemblyVersion>8.3.0.8</VowpalWabbitAssemblyVersion>
<VowpalWabbitAssemblyVersion>8.3.0.9</VowpalWabbitAssemblyVersion>
</PropertyGroup>
</Project>

0 comments on commit ed0d85b

Please sign in to comment.