Skip to content

Commit ed0d85b

Browse files
committed
fix evaluation ouput
version bump
1 parent c1ba624 commit ed0d85b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

cs/azure/Trainer/Operations/EvalOperation.cs

+3-3
Original file line numberDiff line numberDiff line change
@@ -103,16 +103,16 @@ private List<EvalData> OfflineEvaluate(object trainerResultObj)
103103
return this.OfflineEvaluateInternal(trainerResult)
104104
// insert event id & timestamp to enable data correlation
105105
.Select(e => {
106+
e.EventId = trainerResult.EventId;
107+
e.Timestamp = trainerResult.Timestamp;
108+
106109
var ed = new EvalData
107110
{
108111
PartitionKey = trainerResult.PartitionKey,
109112
Data = e,
110113
JSON = JsonConvert.SerializeObject(e)
111114
};
112115

113-
ed.Data.EventId = trainerResult.EventId;
114-
ed.Data.Timestamp = trainerResult.Timestamp;
115-
116116
return ed;
117117
})
118118
.ToList();

cs/version.props

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<PropertyGroup>
4-
<VowpalWabbitAssemblyVersion>8.3.0.8</VowpalWabbitAssemblyVersion>
4+
<VowpalWabbitAssemblyVersion>8.3.0.9</VowpalWabbitAssemblyVersion>
55
</PropertyGroup>
66
</Project>

0 commit comments

Comments
 (0)