File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -103,16 +103,16 @@ private List<EvalData> OfflineEvaluate(object trainerResultObj)
103
103
return this . OfflineEvaluateInternal ( trainerResult )
104
104
// insert event id & timestamp to enable data correlation
105
105
. Select ( e => {
106
+ e . EventId = trainerResult . EventId ;
107
+ e . Timestamp = trainerResult . Timestamp ;
108
+
106
109
var ed = new EvalData
107
110
{
108
111
PartitionKey = trainerResult . PartitionKey ,
109
112
Data = e ,
110
113
JSON = JsonConvert . SerializeObject ( e )
111
114
} ;
112
115
113
- ed . Data . EventId = trainerResult . EventId ;
114
- ed . Data . Timestamp = trainerResult . Timestamp ;
115
-
116
116
return ed ;
117
117
} )
118
118
. ToList ( ) ;
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" utf-8" ?>
2
2
<Project ToolsVersion =" 12.0" DefaultTargets =" Build" xmlns =" http://schemas.microsoft.com/developer/msbuild/2003" >
3
3
<PropertyGroup >
4
- <VowpalWabbitAssemblyVersion >8.3.0.8 </VowpalWabbitAssemblyVersion >
4
+ <VowpalWabbitAssemblyVersion >8.3.0.9 </VowpalWabbitAssemblyVersion >
5
5
</PropertyGroup >
6
6
</Project >
You can’t perform that action at this time.
0 commit comments