File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -75,14 +75,14 @@ describe("end-to-end federated", () => {
75
75
await disco . close ( ) ;
76
76
77
77
expect ( logs . last ( ) ?. epochs . last ( ) ?. training . accuracy ) . to . be . greaterThan (
78
- 0.6 ,
78
+ 0.5 ,
79
79
) ;
80
80
if ( logs . last ( ) ?. epochs . last ( ) ?. validation === undefined )
81
81
throw new Error (
82
82
"No validation logs while validation dataset was specified" ,
83
83
) ;
84
84
const validationLogs = logs . last ( ) ?. epochs . last ( ) ?. validation ;
85
- expect ( validationLogs ?. accuracy ) . to . be . greaterThan ( 0.6 ) ;
85
+ expect ( validationLogs ?. accuracy ) . to . be . greaterThan ( 0.5 ) ;
86
86
87
87
return disco . trainer . model . weights ;
88
88
}
@@ -122,7 +122,7 @@ describe("end-to-end federated", () => {
122
122
await disco . close ( ) ;
123
123
124
124
const validationLogs = logs . last ( ) ?. epochs . last ( ) ?. validation ;
125
- expect ( validationLogs ?. accuracy ) . to . be . greaterThan ( 0.6 ) ;
125
+ expect ( validationLogs ?. accuracy ) . to . be . greaterThan ( 0.5 ) ;
126
126
127
127
return disco . trainer . model . weights ;
128
128
}
You can’t perform that action at this time.
0 commit comments