1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
|
%global _empty_manifest_terminate_build 0
Name: python-mlbench-core
Version: 3.0.0
Release: 1
Summary: A public and reproducible collection of reference implementations and benchmark suite for distributed machine learning systems.
License: Apache Software License 2.0
URL: https://github.com/mlbench/mlbench_core
Source0: https://mirrors.nju.edu.cn/pypi/web/packages/c2/a2/1d07aa39c109f46e6ce66bb83c5c8d214945876a9c6ef5d65001160557b4/mlbench_core-3.0.0.tar.gz
BuildArch: noarch
Requires: python3-appdirs
Requires: python3-boto3
Requires: python3-Click
Requires: python3-deprecation
Requires: python3-dill
Requires: python3-docker
Requires: python3-GitPython
Requires: python3-google-api-python-client
Requires: python3-google-auth
Requires: python3-google-cloud
Requires: python3-google-cloud-container
Requires: python3-grpcio
Requires: python3-kubernetes
Requires: python3-lmdb
Requires: python3-matplotlib
Requires: python3-numpy
Requires: python3-oauth2client
Requires: python3-sklearn
Requires: python3-supermutes
Requires: python3-tabulate
Requires: python3-tensorpack
Requires: python3-sacrebleu
Requires: python3-torch
Requires: python3-torchvision
Requires: python3-tensorflow
Requires: python3-black
Requires: python3-isort
Requires: python3-codecov
Requires: python3-coverage
Requires: python3-freezegun
Requires: python3-pre-commit
Requires: python3-pytest
Requires: python3-pytest-cov
Requires: python3-pytest-mock
Requires: python3-wcwidth
Requires: python3-black
Requires: python3-isort
Requires: python3-tensorflow
Requires: python3-codecov
Requires: python3-coverage
Requires: python3-freezegun
Requires: python3-pre-commit
Requires: python3-pytest
Requires: python3-pytest-cov
Requires: python3-pytest-mock
Requires: python3-wcwidth
Requires: python3-black
Requires: python3-isort
Requires: python3-sacrebleu
Requires: python3-torch
Requires: python3-torchvision
Requires: python3-tensorflow
Requires: python3-sacrebleu
Requires: python3-torch
Requires: python3-torchvision
%description

[](https://mlbench.readthedocs.io/projects/mlbench_core/en/latest/?badge=latest)
[](https://codecov.io/gh/mlbench/mlbench-core)
MLBench is a Benchmarking Framework for Distributed Machine Learning algorithms.
This repository contains the core Python library for MLBench which is used to share code between Benchmark implementations as well as for communication with the dashboard.
For more information refer to the [MLBench Core Documentation](https://mlbench.readthedocs.io/projects/mlbench_core/en/stable/api.html)
or the [Main Documentation](https://mlbench.readthedocs.io/)
# Changelog
## [v3.0.0](https://github.com/mlbench/mlbench-core/tree/v3.0.0) (2020-12-07)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/v2.4.0...v3.0.0)
**Implemented enhancements:**
- Support multiple clusters in CLI [\#91](https://github.com/mlbench/mlbench-core/issues/91)
- Add notebook/code to visualize results [\#72](https://github.com/mlbench/mlbench-core/issues/72)
- Support AWS in CLI [\#33](https://github.com/mlbench/mlbench-core/issues/33)
- Fix rnn language model [\#303](https://github.com/mlbench/mlbench-core/pull/303) ([ehoelzl](https://github.com/ehoelzl))
- Transformer language translation [\#99](https://github.com/mlbench/mlbench-core/pull/99) ([ehoelzl](https://github.com/ehoelzl))
**Fixed bugs:**
- Training code keeps running for PyTorch after training is done [\#26](https://github.com/mlbench/mlbench-core/issues/26)
**Closed issues:**
- Remove loss argument for metric computation [\#295](https://github.com/mlbench/mlbench-core/issues/295)
- Update PyTorch to 1.7 [\#286](https://github.com/mlbench/mlbench-core/issues/286)
- Refactor optimizer and chose more appropriate names [\#284](https://github.com/mlbench/mlbench-core/issues/284)
- fails to create kind cluster [\#277](https://github.com/mlbench/mlbench-core/issues/277)
- Refactor CLI [\#253](https://github.com/mlbench/mlbench-core/issues/253)
- Dependabot couldn't authenticate with https://pypi.python.org/simple/ [\#252](https://github.com/mlbench/mlbench-core/issues/252)
- Unify requirements/setup.py versions [\#244](https://github.com/mlbench/mlbench-core/issues/244)
- isort failing on all PRs [\#227](https://github.com/mlbench/mlbench-core/issues/227)
- torch.div is not supported in PyTorch 1.6 [\#223](https://github.com/mlbench/mlbench-core/issues/223)
- Refactor common functionality for tiller and helm [\#108](https://github.com/mlbench/mlbench-core/issues/108)
- Add GPU support for AWS in CLI [\#104](https://github.com/mlbench/mlbench-core/issues/104)
- Change CPU limit to \#CPUs - 1 [\#101](https://github.com/mlbench/mlbench-core/issues/101)
- Add --version flag [\#97](https://github.com/mlbench/mlbench-core/issues/97)
- Cluster creation/deletion errors with non-default zone [\#94](https://github.com/mlbench/mlbench-core/issues/94)
- Add command to list runs [\#86](https://github.com/mlbench/mlbench-core/issues/86)
- RefreshError from gcloud [\#83](https://github.com/mlbench/mlbench-core/issues/83)
- Run new benchmarks and document costs [\#82](https://github.com/mlbench/mlbench-core/issues/82)
- Make nvidia k80 default GPU [\#80](https://github.com/mlbench/mlbench-core/issues/80)
- Fix random seeds [\#79](https://github.com/mlbench/mlbench-core/issues/79)
- benchmark against torch.nn.parallel.DistributedDataParallel MPSG [\#75](https://github.com/mlbench/mlbench-core/issues/75)
- upgrade to pytorch 1.5 [\#74](https://github.com/mlbench/mlbench-core/issues/74)
- Provide comparison to competitors [\#66](https://github.com/mlbench/mlbench-core/issues/66)
- Add some integration tests [\#64](https://github.com/mlbench/mlbench-core/issues/64)
- Remove stale branches [\#62](https://github.com/mlbench/mlbench-core/issues/62)
- Add PowerSGD optimizer [\#59](https://github.com/mlbench/mlbench-core/issues/59)
- Add RNN Language Model [\#54](https://github.com/mlbench/mlbench-core/issues/54)
- Use torch.nn.DataParallel for intra-node computation [\#46](https://github.com/mlbench/mlbench-core/issues/46)
- Add CLI support for DIND [\#42](https://github.com/mlbench/mlbench-core/issues/42)
- Port over functionality from Language Model benchmark to the core library [\#34](https://github.com/mlbench/mlbench-core/issues/34)
- make results reproducible from command-line [\#24](https://github.com/mlbench/mlbench-core/issues/24)
- Contribution and docs section on README.md [\#17](https://github.com/mlbench/mlbench-core/issues/17)
- test new torch.distributed [\#15](https://github.com/mlbench/mlbench-core/issues/15)
**Merged pull requests:**
- Bugfix KIND cli [\#307](https://github.com/mlbench/mlbench-core/pull/307) ([ehoelzl](https://github.com/ehoelzl))
- Update README.md to show new badge [\#306](https://github.com/mlbench/mlbench-core/pull/306) ([ehoelzl](https://github.com/ehoelzl))
- Create manual.yml [\#305](https://github.com/mlbench/mlbench-core/pull/305) ([ehoelzl](https://github.com/ehoelzl))
- Switch to github actions [\#304](https://github.com/mlbench/mlbench-core/pull/304) ([ehoelzl](https://github.com/ehoelzl))
- Bump sphinx from 3.3.0 to 3.3.1 [\#301](https://github.com/mlbench/mlbench-core/pull/301) ([dependabot[bot]](https://github.com/apps/dependabot))
- Remove loss from metric argument [\#297](https://github.com/mlbench/mlbench-core/pull/297) ([ehoelzl](https://github.com/ehoelzl))
- Fix translators [\#294](https://github.com/mlbench/mlbench-core/pull/294) ([ehoelzl](https://github.com/ehoelzl))
- Update pytorch [\#292](https://github.com/mlbench/mlbench-core/pull/292) ([ehoelzl](https://github.com/ehoelzl))
- Bump sphinx from 3.2.1 to 3.3.0 in /docs [\#288](https://github.com/mlbench/mlbench-core/pull/288) ([dependabot[bot]](https://github.com/apps/dependabot))
- Refactor optimizers [\#285](https://github.com/mlbench/mlbench-core/pull/285) ([ehoelzl](https://github.com/ehoelzl))
- Bump isort from 5.5.4 to 5.6.4 [\#283](https://github.com/mlbench/mlbench-core/pull/283) ([dependabot[bot]](https://github.com/apps/dependabot))
- Bump sphinx-autoapi from 1.5.0 to 1.5.1 [\#280](https://github.com/mlbench/mlbench-core/pull/280) ([dependabot[bot]](https://github.com/apps/dependabot))
- Add gpu functionality on AWS [\#278](https://github.com/mlbench/mlbench-core/pull/278) ([mmilenkoski](https://github.com/mmilenkoski))
- Catch exceptions when creating/deleting clusters [\#276](https://github.com/mlbench/mlbench-core/pull/276) ([ehoelzl](https://github.com/ehoelzl))
- Fix doc [\#275](https://github.com/mlbench/mlbench-core/pull/275) ([ehoelzl](https://github.com/ehoelzl))
- Fix AWS deployment [\#274](https://github.com/mlbench/mlbench-core/pull/274) ([mmilenkoski](https://github.com/mmilenkoski))
- Create dependabot.yml [\#260](https://github.com/mlbench/mlbench-core/pull/260) ([ehoelzl](https://github.com/ehoelzl))
- Merge requirements & Update doc [\#259](https://github.com/mlbench/mlbench-core/pull/259) ([ehoelzl](https://github.com/ehoelzl))
- Bump google-api-python-client from 1.9.3 to 1.12.1 [\#246](https://github.com/mlbench/mlbench-core/pull/246) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
- Bump numpy from 1.19.0 to 1.19.2 [\#245](https://github.com/mlbench/mlbench-core/pull/245) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
- Bump boto3 from 1.14.6 to 1.14.50 [\#234](https://github.com/mlbench/mlbench-core/pull/234) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
- Fix isort errors [\#233](https://github.com/mlbench/mlbench-core/pull/233) ([mmilenkoski](https://github.com/mmilenkoski))
- Bump pytest-mock from 3.1.1 to 3.3.1 [\#231](https://github.com/mlbench/mlbench-core/pull/231) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
- Bump isort from 4.3.21 to 5.4.2 [\#221](https://github.com/mlbench/mlbench-core/pull/221) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
- Bump sphinx from 3.0.4 to 3.2.1 [\#220](https://github.com/mlbench/mlbench-core/pull/220) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
- Bump grpcio from 1.29.0 to 1.31.0 [\#207](https://github.com/mlbench/mlbench-core/pull/207) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
- Bump spacy from 2.3.0 to 2.3.2 [\#182](https://github.com/mlbench/mlbench-core/pull/182) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
- Downgrade Sphinx [\#162](https://github.com/mlbench/mlbench-core/pull/162) ([ehoelzl](https://github.com/ehoelzl))
- Add developer docs [\#161](https://github.com/mlbench/mlbench-core/pull/161) ([Panaetius](https://github.com/Panaetius))
- Fp optimizer changes [\#160](https://github.com/mlbench/mlbench-core/pull/160) ([ehoelzl](https://github.com/ehoelzl))
- Bump wcwidth from 0.1.9 to 0.2.5 [\#156](https://github.com/mlbench/mlbench-core/pull/156) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
- Bump all versions and add doc test [\#152](https://github.com/mlbench/mlbench-core/pull/152) ([Panaetius](https://github.com/Panaetius))
- Bump torchvision from 0.6.0 to 0.6.1 [\#151](https://github.com/mlbench/mlbench-core/pull/151) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
- Bump numpy from 1.18.5 to 1.19.0 [\#150](https://github.com/mlbench/mlbench-core/pull/150) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
- Bump torch from 1.5.0 to 1.5.1 [\#148](https://github.com/mlbench/mlbench-core/pull/148) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
- Bump google-auth from 1.17.2 to 1.18.0 [\#147](https://github.com/mlbench/mlbench-core/pull/147) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
- Bump sphinx-rtd-theme from 0.4.3 to 0.5.0 [\#144](https://github.com/mlbench/mlbench-core/pull/144) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
- Bump spacy from 2.2.4 to 2.3.0 [\#142](https://github.com/mlbench/mlbench-core/pull/142) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
- Bump sphinx from 3.1.0 to 3.1.1 [\#140](https://github.com/mlbench/mlbench-core/pull/140) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
- Bump dill from 0.3.1.1 to 0.3.2 [\#138](https://github.com/mlbench/mlbench-core/pull/138) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
- Update dependencies [\#137](https://github.com/mlbench/mlbench-core/pull/137) ([Panaetius](https://github.com/Panaetius))
- Bump spacy from 2.2.3 to 2.2.4 [\#135](https://github.com/mlbench/mlbench-core/pull/135) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
- Bump numpy from 1.16.6 to 1.18.5 [\#133](https://github.com/mlbench/mlbench-core/pull/133) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
- Bump freezegun from 0.3.12 to 0.3.15 [\#129](https://github.com/mlbench/mlbench-core/pull/129) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
- Bump tabulate from 0.8.6 to 0.8.7 [\#128](https://github.com/mlbench/mlbench-core/pull/128) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
- Bump deprecation from 2.0.6 to 2.1.0 [\#125](https://github.com/mlbench/mlbench-core/pull/125) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
- Bump pytest-black from 0.3.8 to 0.3.9 [\#124](https://github.com/mlbench/mlbench-core/pull/124) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
- Bump sphinx-rtd-theme from 0.4.2 to 0.4.3 [\#123](https://github.com/mlbench/mlbench-core/pull/123) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
- Bump sphinx from 1.8.1 to 3.1.0 [\#121](https://github.com/mlbench/mlbench-core/pull/121) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
- Bump pytest-mock from 1.10.0 to 3.1.1 [\#120](https://github.com/mlbench/mlbench-core/pull/120) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
- Bump torchtext from 0.5.0 to 0.6.0 [\#118](https://github.com/mlbench/mlbench-core/pull/118) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
- Bump torchvision from 0.5.0 to 0.6.0 [\#117](https://github.com/mlbench/mlbench-core/pull/117) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
- Adds support for multiple clusters [\#115](https://github.com/mlbench/mlbench-core/pull/115) ([Panaetius](https://github.com/Panaetius))
- Bump click from 7.0 to 7.1.2 [\#114](https://github.com/mlbench/mlbench-core/pull/114) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
- Bump google-cloud-container from 0.3.0 to 0.5.0 [\#113](https://github.com/mlbench/mlbench-core/pull/113) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
- Bump appdirs from 1.4.3 to 1.4.4 [\#112](https://github.com/mlbench/mlbench-core/pull/112) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
- Bump sphinxcontrib-bibtex from 0.4.0 to 1.0.0 [\#111](https://github.com/mlbench/mlbench-core/pull/111) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
- Bump sphinx-autoapi from 1.3.0 to 1.4.0 [\#110](https://github.com/mlbench/mlbench-core/pull/110) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
- Remove unused arguments in create\_aws [\#109](https://github.com/mlbench/mlbench-core/pull/109) ([mmilenkoski](https://github.com/mmilenkoski))
- Fix Random seeds, Add new tracker stats [\#107](https://github.com/mlbench/mlbench-core/pull/107) ([ehoelzl](https://github.com/ehoelzl))
- Add return\_code check in test\_cli [\#106](https://github.com/mlbench/mlbench-core/pull/106) ([mmilenkoski](https://github.com/mmilenkoski))
- Add AWS support in CLI [\#103](https://github.com/mlbench/mlbench-core/pull/103) ([mmilenkoski](https://github.com/mmilenkoski))
- Update test\_cli.py [\#100](https://github.com/mlbench/mlbench-core/pull/100) ([giorgiosav](https://github.com/giorgiosav))
- Adds a chart command to cli [\#95](https://github.com/mlbench/mlbench-core/pull/95) ([Panaetius](https://github.com/Panaetius))
- Add support for kind cluster creation in the CLI [\#93](https://github.com/mlbench/mlbench-core/pull/93) ([mmilenkoski](https://github.com/mmilenkoski))
# Changelog
## [v2.4.0](https://github.com/mlbench/mlbench-core/tree/v2.4.0) (2020-04-20)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/v2.3.2...v2.4.0)
**Implemented enhancements:**
- Switch to black for code formatting [\#35](https://github.com/mlbench/mlbench-core/issues/35)
**Closed issues:**
- Travis tests run only for Python 3.6 [\#65](https://github.com/mlbench/mlbench-core/issues/65)
- Downloading results fails if `--output` option is not provided [\#57](https://github.com/mlbench/mlbench-core/issues/57)
- Remember user input in mlbench run [\#56](https://github.com/mlbench/mlbench-core/issues/56)
- Aggregate the gradients by model, instead of by layers. [\#45](https://github.com/mlbench/mlbench-core/issues/45)
- Update docker images to CUDA10, mlbench-core module to newest [\#43](https://github.com/mlbench/mlbench-core/issues/43)
- Upgrade PyTorch to 1.4 [\#40](https://github.com/mlbench/mlbench-core/issues/40)
**Merged pull requests:**
- Pytorch v1.4.0 [\#68](https://github.com/mlbench/mlbench-core/pull/68) ([ehoelzl](https://github.com/ehoelzl))
- Fix ci [\#67](https://github.com/mlbench/mlbench-core/pull/67) ([ehoelzl](https://github.com/ehoelzl))
- Add aggregation by model [\#61](https://github.com/mlbench/mlbench-core/pull/61) ([ehoelzl](https://github.com/ehoelzl))
- Remember user input in mlbench run [\#60](https://github.com/mlbench/mlbench-core/pull/60) ([mmilenkoski](https://github.com/mmilenkoski))
- Add default name of output file in CLI [\#58](https://github.com/mlbench/mlbench-core/pull/58) ([mmilenkoski](https://github.com/mmilenkoski))
- Cli adaptation [\#55](https://github.com/mlbench/mlbench-core/pull/55) ([ehoelzl](https://github.com/ehoelzl))
- Update tags and patch version to 2.3.2 [\#52](https://github.com/mlbench/mlbench-core/pull/52) ([ehoelzl](https://github.com/ehoelzl))
- Add get\_optimizer to create optimizer object [\#48](https://github.com/mlbench/mlbench-core/pull/48) ([mmilenkoski](https://github.com/mmilenkoski))
# Changelog
## [v2.3.2](https://github.com/mlbench/mlbench-core/tree/v2.3.2) (2020-04-07)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/v2.3.1...v2.3.2)
**Implemented enhancements:**
- Add NCCL & GLOO Backend support [\#49](https://github.com/mlbench/mlbench-core/issues/49)
- Add NCCL & GLOO Backend support [\#47](https://github.com/mlbench/mlbench-core/pull/47) ([giorgiosav](https://github.com/giorgiosav))
**Fixed bugs:**
- math ValueError with 1-node cluster [\#38](https://github.com/mlbench/mlbench-core/issues/38)
**Merged pull requests:**
- num\_workers fix [\#51](https://github.com/mlbench/mlbench-core/pull/51) ([giorgiosav](https://github.com/giorgiosav))
- Adds centralized Adam implementation [\#41](https://github.com/mlbench/mlbench-core/pull/41) ([mmilenkoski](https://github.com/mmilenkoski))
# Change Log
## [2.3.1](https://github.com/mlbench/mlbench-core/tree/2.3.1) (2020-03-09)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/v2.3.0...2.3.1)
**Implemented enhancements:**
- Customize Communication Scheme For Sparsified/Quantizatized/Decentralized scenarios [\#12](https://github.com/mlbench/mlbench-core/issues/12)
## [v2.3.0](https://github.com/mlbench/mlbench-core/tree/v2.3.0) (2019-12-23)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/v2.2.1...v2.3.0)
## [v2.2.1](https://github.com/mlbench/mlbench-core/tree/v2.2.1) (2019-12-16)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/v2.2.0...v2.2.1)
# Change Log
## [v2.2.0](https://github.com/mlbench/mlbench-core/tree/v2.2.0) (2019-11-11)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/v2.1.0...v2.1.1)
**Implemented enhancements:**
- `initialize_backends` can now be called as context manager
- Improved CLI to run multiple runs in parallel
## [v2.1.1](https://github.com/mlbench/mlbench-core/tree/v2.1.1) (2019-11-11)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/v2.1.0...v2.1.1)
## [v2.1.0](https://github.com/mlbench/mlbench-core/tree/v2.1.0) (2019-11-4)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/v2.0.0...v2.1.0)
**Implemented enhancements:**
- Added CLI for MLBench runs
## [v1.4.4](https://github.com/mlbench/mlbench-core/tree/v1.4.4) (2019-05-28)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/v1.4.3...v1.4.4)
## [v1.4.3](https://github.com/mlbench/mlbench-core/tree/v1.4.3) (2019-05-23)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/v1.4.2...v1.4.3)
## [v1.4.2](https://github.com/mlbench/mlbench-core/tree/v1.4.2) (2019-05-21)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/v1.4.1...v1.4.2)
## [v1.4.1](https://github.com/mlbench/mlbench-core/tree/v1.4.1) (2019-05-16)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/v1.4.0...v1.4.1)
## [v1.4.0](https://github.com/mlbench/mlbench-core/tree/v1.4.0) (2019-05-02)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/v1.3.4...v1.4.0)
**Implemented enhancements:**
- Split Train and Validation in Tensorflow [\#22](https://github.com/mlbench/mlbench-core/issues/22)
## [v1.3.4](https://github.com/mlbench/mlbench-core/tree/v1.3.4) (2019-03-20)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/v1.3.3...v1.3.4)
**Implemented enhancements:**
- in controlflow, don't mix train and validation [\#20](https://github.com/mlbench/mlbench-core/issues/20)
**Fixed bugs:**
- Add metrics logging for Tensorflow [\#19](https://github.com/mlbench/mlbench-core/issues/19)
## [v1.3.3](https://github.com/mlbench/mlbench-core/tree/v1.3.3) (2019-02-26)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/v1.3.2...v1.3.3)
## [v1.3.2](https://github.com/mlbench/mlbench-core/tree/v1.3.2) (2019-02-13)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/v1.3.1...v1.3.2)
## [v1.3.1](https://github.com/mlbench/mlbench-core/tree/v1.3.1) (2019-02-13)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/v1.3.0...v1.3.1)
## [v1.3.0](https://github.com/mlbench/mlbench-core/tree/v1.3.0) (2019-02-12)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/v1.2.1...v1.3.0)
## [v1.2.1](https://github.com/mlbench/mlbench-core/tree/v1.2.1) (2019-01-31)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/v1.2.0...v1.2.1)
## [v1.2.0](https://github.com/mlbench/mlbench-core/tree/v1.2.0) (2019-01-30)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/v1.1.1...v1.2.0)
## [v1.1.1](https://github.com/mlbench/mlbench-core/tree/v1.1.1) (2019-01-09)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/v1.1.0...v1.1.1)
## [v1.1.0](https://github.com/mlbench/mlbench-core/tree/v1.1.0) (2018-12-06)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/v1.0.0...v1.1.0)
**Fixed bugs:**
- Bug when saving checkpoints [\#13](https://github.com/mlbench/mlbench-core/issues/13)
## [v1.0.0](https://github.com/mlbench/mlbench-core/tree/v1.0.0) (2018-11-20)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/1.4.2...v1.0.0)
**Implemented enhancements:**
- Add API Client to mlbench-core [\#6](https://github.com/mlbench/mlbench-core/issues/6)
- Move to google-style docs [\#4](https://github.com/mlbench/mlbench-core/issues/4)
- Add Imagenet Dataset for pytorch [\#3](https://github.com/mlbench/mlbench-core/issues/3)
- Move worker code to mlbench-core repo [\#1](https://github.com/mlbench/mlbench-core/issues/1)
# Change Log
## [1.4.2](https://github.com/mlbench/mlbench-core/tree/1.4.2) (2019-05-21)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/v1.0.0...1.4.2)
**Implemented enhancements:**
- Split Train and Validation in Tensorflow [\#22](https://github.com/mlbench/mlbench-core/issues/22)
- in controlflow, don't mix train and validation [\#20](https://github.com/mlbench/mlbench-core/issues/20)
**Fixed bugs:**
- Add metrics logging for Tensorflow [\#19](https://github.com/mlbench/mlbench-core/issues/19)
- Bug when saving checkpoints [\#13](https://github.com/mlbench/mlbench-core/issues/13)
# Change Log
## [v1.4.1](https://github.com/mlbench/mlbench-core/tree/v1.4.1) (2019-05-16)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/v1.4.0...v1.4.1)
## [1.4.0](https://github.com/mlbench/mlbench-core/tree/1.4.0) (2019-05-02)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/v1.0.0...1.4.0)
**Implemented enhancements:**
- Split Train and Validation in Tensorflow [\#22](https://github.com/mlbench/mlbench-core/issues/22)
- in controlflow, don't mix train and validation [\#20](https://github.com/mlbench/mlbench-core/issues/20)
**Fixed bugs:**
- Add metrics logging for Tensorflow [\#19](https://github.com/mlbench/mlbench-core/issues/19)
- Bug when saving checkpoints [\#13](https://github.com/mlbench/mlbench-core/issues/13)
# Change Log
## [v1.3.4](https://github.com/mlbench/mlbench-core/tree/v1.3.4) (2019-03-20)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/v1.3.3...v1.3.4)
**Implemented enhancements:**
- in controlflow, don't mix train and validation [\#20](https://github.com/mlbench/mlbench-core/issues/20)
**Fixed bugs:**
- Add metrics logging for Tensorflow [\#19](https://github.com/mlbench/mlbench-core/issues/19)
## [v1.3.3](https://github.com/mlbench/mlbench-core/tree/v1.3.3) (2019-02-26)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/v1.3.2...v1.3.3)
## [v1.3.2](https://github.com/mlbench/mlbench-core/tree/v1.3.2) (2019-02-13)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/v1.3.1...v1.3.2)
## [v1.3.1](https://github.com/mlbench/mlbench-core/tree/v1.3.1) (2019-02-13)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/v1.3.0...v1.3.1)
## [v1.3.0](https://github.com/mlbench/mlbench-core/tree/v1.3.0) (2019-02-12)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/v1.2.1...v1.3.0)
## [v1.2.1](https://github.com/mlbench/mlbench-core/tree/v1.2.1) (2019-01-31)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/v1.2.0...v1.2.1)
## [v1.2.0](https://github.com/mlbench/mlbench-core/tree/v1.2.0) (2019-01-30)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/v1.1.1...v1.2.0)
## [v1.1.1](https://github.com/mlbench/mlbench-core/tree/v1.1.1) (2019-01-09)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/v1.1.0...v1.1.1)
# Change Log
## [v1.1.0](https://github.com/mlbench/mlbench-core/tree/v1.1.0) (2018-12-06)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/v1.0.0...v1.1.0)
**Fixed bugs:**
- Bug when saving checkpoints [\#13](https://github.com/mlbench/mlbench-core/issues/13)
- Adds Tensorflow Controlflow, Dataset and Model code
- Adds Pytorch linear models
- Adds sparsified and decentralized optimizers
## [v1.0.0](https://github.com/mlbench/mlbench-core/tree/v1.0.0) (2018-11-15)
**Implemented enhancements:**
- Add API Client to mlbench-core [\#6](https://github.com/mlbench/mlbench-core/issues/6)
- Move to google-style docs [\#4](https://github.com/mlbench/mlbench-core/issues/4)
- Add Imagenet Dataset for pytorch [\#3](https://github.com/mlbench/mlbench-core/issues/3)
- Move worker code to mlbench-core repo [\#1](https://github.com/mlbench/mlbench-core/issues/1)
## [0.1.0](https://github.com/mlbench/mlbench/tree/0.1.0) (2018-09-14)
**Implemented enhancements:**
- Add documentation in reference implementation to docs [\#46](https://github.com/mlbench/mlbench/issues/46)
- Replace cAdvisor with Kubernetes stats for Resource usage [\#38](https://github.com/mlbench/mlbench/issues/38)
- Rename folders [\#31](https://github.com/mlbench/mlbench/issues/31)
- Change docker image names [\#30](https://github.com/mlbench/mlbench/issues/30)
- Add continuous output for mpirun [\#27](https://github.com/mlbench/mlbench/issues/27)
- Replace SQlite with Postgres [\#25](https://github.com/mlbench/mlbench/issues/25)
- Fix unittest [\#23](https://github.com/mlbench/mlbench/issues/23)
- Add/Fix CI/Automated build [\#22](https://github.com/mlbench/mlbench/issues/22)
- Cleanup unneeded project files [\#21](https://github.com/mlbench/mlbench/issues/21)
- Remove hardcoded values [\#20](https://github.com/mlbench/mlbench/issues/20)
- Improves Notes.txt [\#19](https://github.com/mlbench/mlbench/issues/19)
- Rename components [\#15](https://github.com/mlbench/mlbench/issues/15)
**Fixed bugs:**
- 504 Error when downloading metrics for long runs [\#61](https://github.com/mlbench/mlbench/issues/61)
**Closed issues:**
- small doc improvements for first release [\#54](https://github.com/mlbench/mlbench/issues/54)
- Check mlbench works on Google Cloud [\#51](https://github.com/mlbench/mlbench/issues/51)
- learning rate scheduler [\#50](https://github.com/mlbench/mlbench/issues/50)
- Add Nvidia k8s-device-plugin to charts [\#48](https://github.com/mlbench/mlbench/issues/48)
- Add Weave to Helm Chart [\#41](https://github.com/mlbench/mlbench/issues/41)
- Allow limiting of resources for experiments [\#39](https://github.com/mlbench/mlbench/issues/39)
- Allow downloading of Run measurements [\#35](https://github.com/mlbench/mlbench/issues/35)
- Worker Details page [\#33](https://github.com/mlbench/mlbench/issues/33)
- Run Visualizations [\#32](https://github.com/mlbench/mlbench/issues/32)
- Show experiment history in Dashboard [\#18](https://github.com/mlbench/mlbench/issues/18)
- Show model progress in Dashboard [\#13](https://github.com/mlbench/mlbench/issues/13)
- Report cluster status in Dashboard [\#12](https://github.com/mlbench/mlbench/issues/12)
- Send metrics from SGD example to metrics api [\#11](https://github.com/mlbench/mlbench/issues/11)
- Add metrics endpoint for experiments [\#10](https://github.com/mlbench/mlbench/issues/10)
- Let Coordinator Dashboard start a distributed Experiment [\#9](https://github.com/mlbench/mlbench/issues/9)
- Add mini-batch SGD model experiment [\#8](https://github.com/mlbench/mlbench/issues/8)
- add benchmark code for MPI [\#7](https://github.com/mlbench/mlbench/issues/7)
- add benchmark code for tensorflow [\#6](https://github.com/mlbench/mlbench/issues/6)
- add benchmark code for apache reef [\#5](https://github.com/mlbench/mlbench/issues/5)
- add benchmark code for apache flink [\#4](https://github.com/mlbench/mlbench/issues/4)
- get initial benchmark numbers \(spark reference implementation and mllib/ml\) [\#3](https://github.com/mlbench/mlbench/issues/3)
- evaluate script \(framework-independent\) and algorithm output format [\#2](https://github.com/mlbench/mlbench/issues/2)
- bench-spark: remove prepare-data for now, comment on solver prequisites [\#1](https://github.com/mlbench/mlbench/issues/1)
\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
\* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*
\* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*
\* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*
%package -n python3-mlbench-core
Summary: A public and reproducible collection of reference implementations and benchmark suite for distributed machine learning systems.
Provides: python-mlbench-core
BuildRequires: python3-devel
BuildRequires: python3-setuptools
BuildRequires: python3-pip
%description -n python3-mlbench-core

[](https://mlbench.readthedocs.io/projects/mlbench_core/en/latest/?badge=latest)
[](https://codecov.io/gh/mlbench/mlbench-core)
MLBench is a Benchmarking Framework for Distributed Machine Learning algorithms.
This repository contains the core Python library for MLBench which is used to share code between Benchmark implementations as well as for communication with the dashboard.
For more information refer to the [MLBench Core Documentation](https://mlbench.readthedocs.io/projects/mlbench_core/en/stable/api.html)
or the [Main Documentation](https://mlbench.readthedocs.io/)
# Changelog
## [v3.0.0](https://github.com/mlbench/mlbench-core/tree/v3.0.0) (2020-12-07)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/v2.4.0...v3.0.0)
**Implemented enhancements:**
- Support multiple clusters in CLI [\#91](https://github.com/mlbench/mlbench-core/issues/91)
- Add notebook/code to visualize results [\#72](https://github.com/mlbench/mlbench-core/issues/72)
- Support AWS in CLI [\#33](https://github.com/mlbench/mlbench-core/issues/33)
- Fix rnn language model [\#303](https://github.com/mlbench/mlbench-core/pull/303) ([ehoelzl](https://github.com/ehoelzl))
- Transformer language translation [\#99](https://github.com/mlbench/mlbench-core/pull/99) ([ehoelzl](https://github.com/ehoelzl))
**Fixed bugs:**
- Training code keeps running for PyTorch after training is done [\#26](https://github.com/mlbench/mlbench-core/issues/26)
**Closed issues:**
- Remove loss argument for metric computation [\#295](https://github.com/mlbench/mlbench-core/issues/295)
- Update PyTorch to 1.7 [\#286](https://github.com/mlbench/mlbench-core/issues/286)
- Refactor optimizer and chose more appropriate names [\#284](https://github.com/mlbench/mlbench-core/issues/284)
- fails to create kind cluster [\#277](https://github.com/mlbench/mlbench-core/issues/277)
- Refactor CLI [\#253](https://github.com/mlbench/mlbench-core/issues/253)
- Dependabot couldn't authenticate with https://pypi.python.org/simple/ [\#252](https://github.com/mlbench/mlbench-core/issues/252)
- Unify requirements/setup.py versions [\#244](https://github.com/mlbench/mlbench-core/issues/244)
- isort failing on all PRs [\#227](https://github.com/mlbench/mlbench-core/issues/227)
- torch.div is not supported in PyTorch 1.6 [\#223](https://github.com/mlbench/mlbench-core/issues/223)
- Refactor common functionality for tiller and helm [\#108](https://github.com/mlbench/mlbench-core/issues/108)
- Add GPU support for AWS in CLI [\#104](https://github.com/mlbench/mlbench-core/issues/104)
- Change CPU limit to \#CPUs - 1 [\#101](https://github.com/mlbench/mlbench-core/issues/101)
- Add --version flag [\#97](https://github.com/mlbench/mlbench-core/issues/97)
- Cluster creation/deletion errors with non-default zone [\#94](https://github.com/mlbench/mlbench-core/issues/94)
- Add command to list runs [\#86](https://github.com/mlbench/mlbench-core/issues/86)
- RefreshError from gcloud [\#83](https://github.com/mlbench/mlbench-core/issues/83)
- Run new benchmarks and document costs [\#82](https://github.com/mlbench/mlbench-core/issues/82)
- Make nvidia k80 default GPU [\#80](https://github.com/mlbench/mlbench-core/issues/80)
- Fix random seeds [\#79](https://github.com/mlbench/mlbench-core/issues/79)
- benchmark against torch.nn.parallel.DistributedDataParallel MPSG [\#75](https://github.com/mlbench/mlbench-core/issues/75)
- upgrade to pytorch 1.5 [\#74](https://github.com/mlbench/mlbench-core/issues/74)
- Provide comparison to competitors [\#66](https://github.com/mlbench/mlbench-core/issues/66)
- Add some integration tests [\#64](https://github.com/mlbench/mlbench-core/issues/64)
- Remove stale branches [\#62](https://github.com/mlbench/mlbench-core/issues/62)
- Add PowerSGD optimizer [\#59](https://github.com/mlbench/mlbench-core/issues/59)
- Add RNN Language Model [\#54](https://github.com/mlbench/mlbench-core/issues/54)
- Use torch.nn.DataParallel for intra-node computation [\#46](https://github.com/mlbench/mlbench-core/issues/46)
- Add CLI support for DIND [\#42](https://github.com/mlbench/mlbench-core/issues/42)
- Port over functionality from Language Model benchmark to the core library [\#34](https://github.com/mlbench/mlbench-core/issues/34)
- make results reproducible from command-line [\#24](https://github.com/mlbench/mlbench-core/issues/24)
- Contribution and docs section on README.md [\#17](https://github.com/mlbench/mlbench-core/issues/17)
- test new torch.distributed [\#15](https://github.com/mlbench/mlbench-core/issues/15)
**Merged pull requests:**
- Bugfix KIND cli [\#307](https://github.com/mlbench/mlbench-core/pull/307) ([ehoelzl](https://github.com/ehoelzl))
- Update README.md to show new badge [\#306](https://github.com/mlbench/mlbench-core/pull/306) ([ehoelzl](https://github.com/ehoelzl))
- Create manual.yml [\#305](https://github.com/mlbench/mlbench-core/pull/305) ([ehoelzl](https://github.com/ehoelzl))
- Switch to github actions [\#304](https://github.com/mlbench/mlbench-core/pull/304) ([ehoelzl](https://github.com/ehoelzl))
- Bump sphinx from 3.3.0 to 3.3.1 [\#301](https://github.com/mlbench/mlbench-core/pull/301) ([dependabot[bot]](https://github.com/apps/dependabot))
- Remove loss from metric argument [\#297](https://github.com/mlbench/mlbench-core/pull/297) ([ehoelzl](https://github.com/ehoelzl))
- Fix translators [\#294](https://github.com/mlbench/mlbench-core/pull/294) ([ehoelzl](https://github.com/ehoelzl))
- Update pytorch [\#292](https://github.com/mlbench/mlbench-core/pull/292) ([ehoelzl](https://github.com/ehoelzl))
- Bump sphinx from 3.2.1 to 3.3.0 in /docs [\#288](https://github.com/mlbench/mlbench-core/pull/288) ([dependabot[bot]](https://github.com/apps/dependabot))
- Refactor optimizers [\#285](https://github.com/mlbench/mlbench-core/pull/285) ([ehoelzl](https://github.com/ehoelzl))
- Bump isort from 5.5.4 to 5.6.4 [\#283](https://github.com/mlbench/mlbench-core/pull/283) ([dependabot[bot]](https://github.com/apps/dependabot))
- Bump sphinx-autoapi from 1.5.0 to 1.5.1 [\#280](https://github.com/mlbench/mlbench-core/pull/280) ([dependabot[bot]](https://github.com/apps/dependabot))
- Add gpu functionality on AWS [\#278](https://github.com/mlbench/mlbench-core/pull/278) ([mmilenkoski](https://github.com/mmilenkoski))
- Catch exceptions when creating/deleting clusters [\#276](https://github.com/mlbench/mlbench-core/pull/276) ([ehoelzl](https://github.com/ehoelzl))
- Fix doc [\#275](https://github.com/mlbench/mlbench-core/pull/275) ([ehoelzl](https://github.com/ehoelzl))
- Fix AWS deployment [\#274](https://github.com/mlbench/mlbench-core/pull/274) ([mmilenkoski](https://github.com/mmilenkoski))
- Create dependabot.yml [\#260](https://github.com/mlbench/mlbench-core/pull/260) ([ehoelzl](https://github.com/ehoelzl))
- Merge requirements & Update doc [\#259](https://github.com/mlbench/mlbench-core/pull/259) ([ehoelzl](https://github.com/ehoelzl))
- Bump google-api-python-client from 1.9.3 to 1.12.1 [\#246](https://github.com/mlbench/mlbench-core/pull/246) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
- Bump numpy from 1.19.0 to 1.19.2 [\#245](https://github.com/mlbench/mlbench-core/pull/245) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
- Bump boto3 from 1.14.6 to 1.14.50 [\#234](https://github.com/mlbench/mlbench-core/pull/234) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
- Fix isort errors [\#233](https://github.com/mlbench/mlbench-core/pull/233) ([mmilenkoski](https://github.com/mmilenkoski))
- Bump pytest-mock from 3.1.1 to 3.3.1 [\#231](https://github.com/mlbench/mlbench-core/pull/231) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
- Bump isort from 4.3.21 to 5.4.2 [\#221](https://github.com/mlbench/mlbench-core/pull/221) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
- Bump sphinx from 3.0.4 to 3.2.1 [\#220](https://github.com/mlbench/mlbench-core/pull/220) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
- Bump grpcio from 1.29.0 to 1.31.0 [\#207](https://github.com/mlbench/mlbench-core/pull/207) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
- Bump spacy from 2.3.0 to 2.3.2 [\#182](https://github.com/mlbench/mlbench-core/pull/182) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
- Downgrade Sphinx [\#162](https://github.com/mlbench/mlbench-core/pull/162) ([ehoelzl](https://github.com/ehoelzl))
- Add developer docs [\#161](https://github.com/mlbench/mlbench-core/pull/161) ([Panaetius](https://github.com/Panaetius))
- Fp optimizer changes [\#160](https://github.com/mlbench/mlbench-core/pull/160) ([ehoelzl](https://github.com/ehoelzl))
- Bump wcwidth from 0.1.9 to 0.2.5 [\#156](https://github.com/mlbench/mlbench-core/pull/156) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
- Bump all versions and add doc test [\#152](https://github.com/mlbench/mlbench-core/pull/152) ([Panaetius](https://github.com/Panaetius))
- Bump torchvision from 0.6.0 to 0.6.1 [\#151](https://github.com/mlbench/mlbench-core/pull/151) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
- Bump numpy from 1.18.5 to 1.19.0 [\#150](https://github.com/mlbench/mlbench-core/pull/150) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
- Bump torch from 1.5.0 to 1.5.1 [\#148](https://github.com/mlbench/mlbench-core/pull/148) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
- Bump google-auth from 1.17.2 to 1.18.0 [\#147](https://github.com/mlbench/mlbench-core/pull/147) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
- Bump sphinx-rtd-theme from 0.4.3 to 0.5.0 [\#144](https://github.com/mlbench/mlbench-core/pull/144) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
- Bump spacy from 2.2.4 to 2.3.0 [\#142](https://github.com/mlbench/mlbench-core/pull/142) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
- Bump sphinx from 3.1.0 to 3.1.1 [\#140](https://github.com/mlbench/mlbench-core/pull/140) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
- Bump dill from 0.3.1.1 to 0.3.2 [\#138](https://github.com/mlbench/mlbench-core/pull/138) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
- Update dependencies [\#137](https://github.com/mlbench/mlbench-core/pull/137) ([Panaetius](https://github.com/Panaetius))
- Bump spacy from 2.2.3 to 2.2.4 [\#135](https://github.com/mlbench/mlbench-core/pull/135) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
- Bump numpy from 1.16.6 to 1.18.5 [\#133](https://github.com/mlbench/mlbench-core/pull/133) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
- Bump freezegun from 0.3.12 to 0.3.15 [\#129](https://github.com/mlbench/mlbench-core/pull/129) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
- Bump tabulate from 0.8.6 to 0.8.7 [\#128](https://github.com/mlbench/mlbench-core/pull/128) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
- Bump deprecation from 2.0.6 to 2.1.0 [\#125](https://github.com/mlbench/mlbench-core/pull/125) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
- Bump pytest-black from 0.3.8 to 0.3.9 [\#124](https://github.com/mlbench/mlbench-core/pull/124) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
- Bump sphinx-rtd-theme from 0.4.2 to 0.4.3 [\#123](https://github.com/mlbench/mlbench-core/pull/123) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
- Bump sphinx from 1.8.1 to 3.1.0 [\#121](https://github.com/mlbench/mlbench-core/pull/121) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
- Bump pytest-mock from 1.10.0 to 3.1.1 [\#120](https://github.com/mlbench/mlbench-core/pull/120) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
- Bump torchtext from 0.5.0 to 0.6.0 [\#118](https://github.com/mlbench/mlbench-core/pull/118) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
- Bump torchvision from 0.5.0 to 0.6.0 [\#117](https://github.com/mlbench/mlbench-core/pull/117) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
- Adds support for multiple clusters [\#115](https://github.com/mlbench/mlbench-core/pull/115) ([Panaetius](https://github.com/Panaetius))
- Bump click from 7.0 to 7.1.2 [\#114](https://github.com/mlbench/mlbench-core/pull/114) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
- Bump google-cloud-container from 0.3.0 to 0.5.0 [\#113](https://github.com/mlbench/mlbench-core/pull/113) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
- Bump appdirs from 1.4.3 to 1.4.4 [\#112](https://github.com/mlbench/mlbench-core/pull/112) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
- Bump sphinxcontrib-bibtex from 0.4.0 to 1.0.0 [\#111](https://github.com/mlbench/mlbench-core/pull/111) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
- Bump sphinx-autoapi from 1.3.0 to 1.4.0 [\#110](https://github.com/mlbench/mlbench-core/pull/110) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
- Remove unused arguments in create\_aws [\#109](https://github.com/mlbench/mlbench-core/pull/109) ([mmilenkoski](https://github.com/mmilenkoski))
- Fix Random seeds, Add new tracker stats [\#107](https://github.com/mlbench/mlbench-core/pull/107) ([ehoelzl](https://github.com/ehoelzl))
- Add return\_code check in test\_cli [\#106](https://github.com/mlbench/mlbench-core/pull/106) ([mmilenkoski](https://github.com/mmilenkoski))
- Add AWS support in CLI [\#103](https://github.com/mlbench/mlbench-core/pull/103) ([mmilenkoski](https://github.com/mmilenkoski))
- Update test\_cli.py [\#100](https://github.com/mlbench/mlbench-core/pull/100) ([giorgiosav](https://github.com/giorgiosav))
- Adds a chart command to cli [\#95](https://github.com/mlbench/mlbench-core/pull/95) ([Panaetius](https://github.com/Panaetius))
- Add support for kind cluster creation in the CLI [\#93](https://github.com/mlbench/mlbench-core/pull/93) ([mmilenkoski](https://github.com/mmilenkoski))
# Changelog
## [v2.4.0](https://github.com/mlbench/mlbench-core/tree/v2.4.0) (2020-04-20)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/v2.3.2...v2.4.0)
**Implemented enhancements:**
- Switch to black for code formatting [\#35](https://github.com/mlbench/mlbench-core/issues/35)
**Closed issues:**
- Travis tests run only for Python 3.6 [\#65](https://github.com/mlbench/mlbench-core/issues/65)
- Downloading results fails if `--output` option is not provided [\#57](https://github.com/mlbench/mlbench-core/issues/57)
- Remember user input in mlbench run [\#56](https://github.com/mlbench/mlbench-core/issues/56)
- Aggregate the gradients by model, instead of by layers. [\#45](https://github.com/mlbench/mlbench-core/issues/45)
- Update docker images to CUDA10, mlbench-core module to newest [\#43](https://github.com/mlbench/mlbench-core/issues/43)
- Upgrade PyTorch to 1.4 [\#40](https://github.com/mlbench/mlbench-core/issues/40)
**Merged pull requests:**
- Pytorch v1.4.0 [\#68](https://github.com/mlbench/mlbench-core/pull/68) ([ehoelzl](https://github.com/ehoelzl))
- Fix ci [\#67](https://github.com/mlbench/mlbench-core/pull/67) ([ehoelzl](https://github.com/ehoelzl))
- Add aggregation by model [\#61](https://github.com/mlbench/mlbench-core/pull/61) ([ehoelzl](https://github.com/ehoelzl))
- Remember user input in mlbench run [\#60](https://github.com/mlbench/mlbench-core/pull/60) ([mmilenkoski](https://github.com/mmilenkoski))
- Add default name of output file in CLI [\#58](https://github.com/mlbench/mlbench-core/pull/58) ([mmilenkoski](https://github.com/mmilenkoski))
- Cli adaptation [\#55](https://github.com/mlbench/mlbench-core/pull/55) ([ehoelzl](https://github.com/ehoelzl))
- Update tags and patch version to 2.3.2 [\#52](https://github.com/mlbench/mlbench-core/pull/52) ([ehoelzl](https://github.com/ehoelzl))
- Add get\_optimizer to create optimizer object [\#48](https://github.com/mlbench/mlbench-core/pull/48) ([mmilenkoski](https://github.com/mmilenkoski))
# Changelog
## [v2.3.2](https://github.com/mlbench/mlbench-core/tree/v2.3.2) (2020-04-07)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/v2.3.1...v2.3.2)
**Implemented enhancements:**
- Add NCCL & GLOO Backend support [\#49](https://github.com/mlbench/mlbench-core/issues/49)
- Add NCCL & GLOO Backend support [\#47](https://github.com/mlbench/mlbench-core/pull/47) ([giorgiosav](https://github.com/giorgiosav))
**Fixed bugs:**
- math ValueError with 1-node cluster [\#38](https://github.com/mlbench/mlbench-core/issues/38)
**Merged pull requests:**
- num\_workers fix [\#51](https://github.com/mlbench/mlbench-core/pull/51) ([giorgiosav](https://github.com/giorgiosav))
- Adds centralized Adam implementation [\#41](https://github.com/mlbench/mlbench-core/pull/41) ([mmilenkoski](https://github.com/mmilenkoski))
# Change Log
## [2.3.1](https://github.com/mlbench/mlbench-core/tree/2.3.1) (2020-03-09)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/v2.3.0...2.3.1)
**Implemented enhancements:**
- Customize Communication Scheme For Sparsified/Quantizatized/Decentralized scenarios [\#12](https://github.com/mlbench/mlbench-core/issues/12)
## [v2.3.0](https://github.com/mlbench/mlbench-core/tree/v2.3.0) (2019-12-23)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/v2.2.1...v2.3.0)
## [v2.2.1](https://github.com/mlbench/mlbench-core/tree/v2.2.1) (2019-12-16)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/v2.2.0...v2.2.1)
# Change Log
## [v2.2.0](https://github.com/mlbench/mlbench-core/tree/v2.2.0) (2019-11-11)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/v2.1.0...v2.1.1)
**Implemented enhancements:**
- `initialize_backends` can now be called as context manager
- Improved CLI to run multiple runs in parallel
## [v2.1.1](https://github.com/mlbench/mlbench-core/tree/v2.1.1) (2019-11-11)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/v2.1.0...v2.1.1)
## [v2.1.0](https://github.com/mlbench/mlbench-core/tree/v2.1.0) (2019-11-4)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/v2.0.0...v2.1.0)
**Implemented enhancements:**
- Added CLI for MLBench runs
## [v1.4.4](https://github.com/mlbench/mlbench-core/tree/v1.4.4) (2019-05-28)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/v1.4.3...v1.4.4)
## [v1.4.3](https://github.com/mlbench/mlbench-core/tree/v1.4.3) (2019-05-23)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/v1.4.2...v1.4.3)
## [v1.4.2](https://github.com/mlbench/mlbench-core/tree/v1.4.2) (2019-05-21)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/v1.4.1...v1.4.2)
## [v1.4.1](https://github.com/mlbench/mlbench-core/tree/v1.4.1) (2019-05-16)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/v1.4.0...v1.4.1)
## [v1.4.0](https://github.com/mlbench/mlbench-core/tree/v1.4.0) (2019-05-02)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/v1.3.4...v1.4.0)
**Implemented enhancements:**
- Split Train and Validation in Tensorflow [\#22](https://github.com/mlbench/mlbench-core/issues/22)
## [v1.3.4](https://github.com/mlbench/mlbench-core/tree/v1.3.4) (2019-03-20)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/v1.3.3...v1.3.4)
**Implemented enhancements:**
- in controlflow, don't mix train and validation [\#20](https://github.com/mlbench/mlbench-core/issues/20)
**Fixed bugs:**
- Add metrics logging for Tensorflow [\#19](https://github.com/mlbench/mlbench-core/issues/19)
## [v1.3.3](https://github.com/mlbench/mlbench-core/tree/v1.3.3) (2019-02-26)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/v1.3.2...v1.3.3)
## [v1.3.2](https://github.com/mlbench/mlbench-core/tree/v1.3.2) (2019-02-13)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/v1.3.1...v1.3.2)
## [v1.3.1](https://github.com/mlbench/mlbench-core/tree/v1.3.1) (2019-02-13)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/v1.3.0...v1.3.1)
## [v1.3.0](https://github.com/mlbench/mlbench-core/tree/v1.3.0) (2019-02-12)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/v1.2.1...v1.3.0)
## [v1.2.1](https://github.com/mlbench/mlbench-core/tree/v1.2.1) (2019-01-31)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/v1.2.0...v1.2.1)
## [v1.2.0](https://github.com/mlbench/mlbench-core/tree/v1.2.0) (2019-01-30)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/v1.1.1...v1.2.0)
## [v1.1.1](https://github.com/mlbench/mlbench-core/tree/v1.1.1) (2019-01-09)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/v1.1.0...v1.1.1)
## [v1.1.0](https://github.com/mlbench/mlbench-core/tree/v1.1.0) (2018-12-06)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/v1.0.0...v1.1.0)
**Fixed bugs:**
- Bug when saving checkpoints [\#13](https://github.com/mlbench/mlbench-core/issues/13)
## [v1.0.0](https://github.com/mlbench/mlbench-core/tree/v1.0.0) (2018-11-20)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/1.4.2...v1.0.0)
**Implemented enhancements:**
- Add API Client to mlbench-core [\#6](https://github.com/mlbench/mlbench-core/issues/6)
- Move to google-style docs [\#4](https://github.com/mlbench/mlbench-core/issues/4)
- Add Imagenet Dataset for pytorch [\#3](https://github.com/mlbench/mlbench-core/issues/3)
- Move worker code to mlbench-core repo [\#1](https://github.com/mlbench/mlbench-core/issues/1)
# Change Log
## [1.4.2](https://github.com/mlbench/mlbench-core/tree/1.4.2) (2019-05-21)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/v1.0.0...1.4.2)
**Implemented enhancements:**
- Split Train and Validation in Tensorflow [\#22](https://github.com/mlbench/mlbench-core/issues/22)
- in controlflow, don't mix train and validation [\#20](https://github.com/mlbench/mlbench-core/issues/20)
**Fixed bugs:**
- Add metrics logging for Tensorflow [\#19](https://github.com/mlbench/mlbench-core/issues/19)
- Bug when saving checkpoints [\#13](https://github.com/mlbench/mlbench-core/issues/13)
# Change Log
## [v1.4.1](https://github.com/mlbench/mlbench-core/tree/v1.4.1) (2019-05-16)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/v1.4.0...v1.4.1)
## [1.4.0](https://github.com/mlbench/mlbench-core/tree/1.4.0) (2019-05-02)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/v1.0.0...1.4.0)
**Implemented enhancements:**
- Split Train and Validation in Tensorflow [\#22](https://github.com/mlbench/mlbench-core/issues/22)
- in controlflow, don't mix train and validation [\#20](https://github.com/mlbench/mlbench-core/issues/20)
**Fixed bugs:**
- Add metrics logging for Tensorflow [\#19](https://github.com/mlbench/mlbench-core/issues/19)
- Bug when saving checkpoints [\#13](https://github.com/mlbench/mlbench-core/issues/13)
# Change Log
## [v1.3.4](https://github.com/mlbench/mlbench-core/tree/v1.3.4) (2019-03-20)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/v1.3.3...v1.3.4)
**Implemented enhancements:**
- in controlflow, don't mix train and validation [\#20](https://github.com/mlbench/mlbench-core/issues/20)
**Fixed bugs:**
- Add metrics logging for Tensorflow [\#19](https://github.com/mlbench/mlbench-core/issues/19)
## [v1.3.3](https://github.com/mlbench/mlbench-core/tree/v1.3.3) (2019-02-26)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/v1.3.2...v1.3.3)
## [v1.3.2](https://github.com/mlbench/mlbench-core/tree/v1.3.2) (2019-02-13)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/v1.3.1...v1.3.2)
## [v1.3.1](https://github.com/mlbench/mlbench-core/tree/v1.3.1) (2019-02-13)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/v1.3.0...v1.3.1)
## [v1.3.0](https://github.com/mlbench/mlbench-core/tree/v1.3.0) (2019-02-12)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/v1.2.1...v1.3.0)
## [v1.2.1](https://github.com/mlbench/mlbench-core/tree/v1.2.1) (2019-01-31)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/v1.2.0...v1.2.1)
## [v1.2.0](https://github.com/mlbench/mlbench-core/tree/v1.2.0) (2019-01-30)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/v1.1.1...v1.2.0)
## [v1.1.1](https://github.com/mlbench/mlbench-core/tree/v1.1.1) (2019-01-09)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/v1.1.0...v1.1.1)
# Change Log
## [v1.1.0](https://github.com/mlbench/mlbench-core/tree/v1.1.0) (2018-12-06)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/v1.0.0...v1.1.0)
**Fixed bugs:**
- Bug when saving checkpoints [\#13](https://github.com/mlbench/mlbench-core/issues/13)
- Adds Tensorflow Controlflow, Dataset and Model code
- Adds Pytorch linear models
- Adds sparsified and decentralized optimizers
## [v1.0.0](https://github.com/mlbench/mlbench-core/tree/v1.0.0) (2018-11-15)
**Implemented enhancements:**
- Add API Client to mlbench-core [\#6](https://github.com/mlbench/mlbench-core/issues/6)
- Move to google-style docs [\#4](https://github.com/mlbench/mlbench-core/issues/4)
- Add Imagenet Dataset for pytorch [\#3](https://github.com/mlbench/mlbench-core/issues/3)
- Move worker code to mlbench-core repo [\#1](https://github.com/mlbench/mlbench-core/issues/1)
## [0.1.0](https://github.com/mlbench/mlbench/tree/0.1.0) (2018-09-14)
**Implemented enhancements:**
- Add documentation in reference implementation to docs [\#46](https://github.com/mlbench/mlbench/issues/46)
- Replace cAdvisor with Kubernetes stats for Resource usage [\#38](https://github.com/mlbench/mlbench/issues/38)
- Rename folders [\#31](https://github.com/mlbench/mlbench/issues/31)
- Change docker image names [\#30](https://github.com/mlbench/mlbench/issues/30)
- Add continuous output for mpirun [\#27](https://github.com/mlbench/mlbench/issues/27)
- Replace SQlite with Postgres [\#25](https://github.com/mlbench/mlbench/issues/25)
- Fix unittest [\#23](https://github.com/mlbench/mlbench/issues/23)
- Add/Fix CI/Automated build [\#22](https://github.com/mlbench/mlbench/issues/22)
- Cleanup unneeded project files [\#21](https://github.com/mlbench/mlbench/issues/21)
- Remove hardcoded values [\#20](https://github.com/mlbench/mlbench/issues/20)
- Improves Notes.txt [\#19](https://github.com/mlbench/mlbench/issues/19)
- Rename components [\#15](https://github.com/mlbench/mlbench/issues/15)
**Fixed bugs:**
- 504 Error when downloading metrics for long runs [\#61](https://github.com/mlbench/mlbench/issues/61)
**Closed issues:**
- small doc improvements for first release [\#54](https://github.com/mlbench/mlbench/issues/54)
- Check mlbench works on Google Cloud [\#51](https://github.com/mlbench/mlbench/issues/51)
- learning rate scheduler [\#50](https://github.com/mlbench/mlbench/issues/50)
- Add Nvidia k8s-device-plugin to charts [\#48](https://github.com/mlbench/mlbench/issues/48)
- Add Weave to Helm Chart [\#41](https://github.com/mlbench/mlbench/issues/41)
- Allow limiting of resources for experiments [\#39](https://github.com/mlbench/mlbench/issues/39)
- Allow downloading of Run measurements [\#35](https://github.com/mlbench/mlbench/issues/35)
- Worker Details page [\#33](https://github.com/mlbench/mlbench/issues/33)
- Run Visualizations [\#32](https://github.com/mlbench/mlbench/issues/32)
- Show experiment history in Dashboard [\#18](https://github.com/mlbench/mlbench/issues/18)
- Show model progress in Dashboard [\#13](https://github.com/mlbench/mlbench/issues/13)
- Report cluster status in Dashboard [\#12](https://github.com/mlbench/mlbench/issues/12)
- Send metrics from SGD example to metrics api [\#11](https://github.com/mlbench/mlbench/issues/11)
- Add metrics endpoint for experiments [\#10](https://github.com/mlbench/mlbench/issues/10)
- Let Coordinator Dashboard start a distributed Experiment [\#9](https://github.com/mlbench/mlbench/issues/9)
- Add mini-batch SGD model experiment [\#8](https://github.com/mlbench/mlbench/issues/8)
- add benchmark code for MPI [\#7](https://github.com/mlbench/mlbench/issues/7)
- add benchmark code for tensorflow [\#6](https://github.com/mlbench/mlbench/issues/6)
- add benchmark code for apache reef [\#5](https://github.com/mlbench/mlbench/issues/5)
- add benchmark code for apache flink [\#4](https://github.com/mlbench/mlbench/issues/4)
- get initial benchmark numbers \(spark reference implementation and mllib/ml\) [\#3](https://github.com/mlbench/mlbench/issues/3)
- evaluate script \(framework-independent\) and algorithm output format [\#2](https://github.com/mlbench/mlbench/issues/2)
- bench-spark: remove prepare-data for now, comment on solver prequisites [\#1](https://github.com/mlbench/mlbench/issues/1)
\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
\* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*
\* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*
\* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*
%package help
Summary: Development documents and examples for mlbench-core
Provides: python3-mlbench-core-doc
%description help

[](https://mlbench.readthedocs.io/projects/mlbench_core/en/latest/?badge=latest)
[](https://codecov.io/gh/mlbench/mlbench-core)
MLBench is a Benchmarking Framework for Distributed Machine Learning algorithms.
This repository contains the core Python library for MLBench which is used to share code between Benchmark implementations as well as for communication with the dashboard.
For more information refer to the [MLBench Core Documentation](https://mlbench.readthedocs.io/projects/mlbench_core/en/stable/api.html)
or the [Main Documentation](https://mlbench.readthedocs.io/)
# Changelog
## [v3.0.0](https://github.com/mlbench/mlbench-core/tree/v3.0.0) (2020-12-07)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/v2.4.0...v3.0.0)
**Implemented enhancements:**
- Support multiple clusters in CLI [\#91](https://github.com/mlbench/mlbench-core/issues/91)
- Add notebook/code to visualize results [\#72](https://github.com/mlbench/mlbench-core/issues/72)
- Support AWS in CLI [\#33](https://github.com/mlbench/mlbench-core/issues/33)
- Fix rnn language model [\#303](https://github.com/mlbench/mlbench-core/pull/303) ([ehoelzl](https://github.com/ehoelzl))
- Transformer language translation [\#99](https://github.com/mlbench/mlbench-core/pull/99) ([ehoelzl](https://github.com/ehoelzl))
**Fixed bugs:**
- Training code keeps running for PyTorch after training is done [\#26](https://github.com/mlbench/mlbench-core/issues/26)
**Closed issues:**
- Remove loss argument for metric computation [\#295](https://github.com/mlbench/mlbench-core/issues/295)
- Update PyTorch to 1.7 [\#286](https://github.com/mlbench/mlbench-core/issues/286)
- Refactor optimizer and chose more appropriate names [\#284](https://github.com/mlbench/mlbench-core/issues/284)
- fails to create kind cluster [\#277](https://github.com/mlbench/mlbench-core/issues/277)
- Refactor CLI [\#253](https://github.com/mlbench/mlbench-core/issues/253)
- Dependabot couldn't authenticate with https://pypi.python.org/simple/ [\#252](https://github.com/mlbench/mlbench-core/issues/252)
- Unify requirements/setup.py versions [\#244](https://github.com/mlbench/mlbench-core/issues/244)
- isort failing on all PRs [\#227](https://github.com/mlbench/mlbench-core/issues/227)
- torch.div is not supported in PyTorch 1.6 [\#223](https://github.com/mlbench/mlbench-core/issues/223)
- Refactor common functionality for tiller and helm [\#108](https://github.com/mlbench/mlbench-core/issues/108)
- Add GPU support for AWS in CLI [\#104](https://github.com/mlbench/mlbench-core/issues/104)
- Change CPU limit to \#CPUs - 1 [\#101](https://github.com/mlbench/mlbench-core/issues/101)
- Add --version flag [\#97](https://github.com/mlbench/mlbench-core/issues/97)
- Cluster creation/deletion errors with non-default zone [\#94](https://github.com/mlbench/mlbench-core/issues/94)
- Add command to list runs [\#86](https://github.com/mlbench/mlbench-core/issues/86)
- RefreshError from gcloud [\#83](https://github.com/mlbench/mlbench-core/issues/83)
- Run new benchmarks and document costs [\#82](https://github.com/mlbench/mlbench-core/issues/82)
- Make nvidia k80 default GPU [\#80](https://github.com/mlbench/mlbench-core/issues/80)
- Fix random seeds [\#79](https://github.com/mlbench/mlbench-core/issues/79)
- benchmark against torch.nn.parallel.DistributedDataParallel MPSG [\#75](https://github.com/mlbench/mlbench-core/issues/75)
- upgrade to pytorch 1.5 [\#74](https://github.com/mlbench/mlbench-core/issues/74)
- Provide comparison to competitors [\#66](https://github.com/mlbench/mlbench-core/issues/66)
- Add some integration tests [\#64](https://github.com/mlbench/mlbench-core/issues/64)
- Remove stale branches [\#62](https://github.com/mlbench/mlbench-core/issues/62)
- Add PowerSGD optimizer [\#59](https://github.com/mlbench/mlbench-core/issues/59)
- Add RNN Language Model [\#54](https://github.com/mlbench/mlbench-core/issues/54)
- Use torch.nn.DataParallel for intra-node computation [\#46](https://github.com/mlbench/mlbench-core/issues/46)
- Add CLI support for DIND [\#42](https://github.com/mlbench/mlbench-core/issues/42)
- Port over functionality from Language Model benchmark to the core library [\#34](https://github.com/mlbench/mlbench-core/issues/34)
- make results reproducible from command-line [\#24](https://github.com/mlbench/mlbench-core/issues/24)
- Contribution and docs section on README.md [\#17](https://github.com/mlbench/mlbench-core/issues/17)
- test new torch.distributed [\#15](https://github.com/mlbench/mlbench-core/issues/15)
**Merged pull requests:**
- Bugfix KIND cli [\#307](https://github.com/mlbench/mlbench-core/pull/307) ([ehoelzl](https://github.com/ehoelzl))
- Update README.md to show new badge [\#306](https://github.com/mlbench/mlbench-core/pull/306) ([ehoelzl](https://github.com/ehoelzl))
- Create manual.yml [\#305](https://github.com/mlbench/mlbench-core/pull/305) ([ehoelzl](https://github.com/ehoelzl))
- Switch to github actions [\#304](https://github.com/mlbench/mlbench-core/pull/304) ([ehoelzl](https://github.com/ehoelzl))
- Bump sphinx from 3.3.0 to 3.3.1 [\#301](https://github.com/mlbench/mlbench-core/pull/301) ([dependabot[bot]](https://github.com/apps/dependabot))
- Remove loss from metric argument [\#297](https://github.com/mlbench/mlbench-core/pull/297) ([ehoelzl](https://github.com/ehoelzl))
- Fix translators [\#294](https://github.com/mlbench/mlbench-core/pull/294) ([ehoelzl](https://github.com/ehoelzl))
- Update pytorch [\#292](https://github.com/mlbench/mlbench-core/pull/292) ([ehoelzl](https://github.com/ehoelzl))
- Bump sphinx from 3.2.1 to 3.3.0 in /docs [\#288](https://github.com/mlbench/mlbench-core/pull/288) ([dependabot[bot]](https://github.com/apps/dependabot))
- Refactor optimizers [\#285](https://github.com/mlbench/mlbench-core/pull/285) ([ehoelzl](https://github.com/ehoelzl))
- Bump isort from 5.5.4 to 5.6.4 [\#283](https://github.com/mlbench/mlbench-core/pull/283) ([dependabot[bot]](https://github.com/apps/dependabot))
- Bump sphinx-autoapi from 1.5.0 to 1.5.1 [\#280](https://github.com/mlbench/mlbench-core/pull/280) ([dependabot[bot]](https://github.com/apps/dependabot))
- Add gpu functionality on AWS [\#278](https://github.com/mlbench/mlbench-core/pull/278) ([mmilenkoski](https://github.com/mmilenkoski))
- Catch exceptions when creating/deleting clusters [\#276](https://github.com/mlbench/mlbench-core/pull/276) ([ehoelzl](https://github.com/ehoelzl))
- Fix doc [\#275](https://github.com/mlbench/mlbench-core/pull/275) ([ehoelzl](https://github.com/ehoelzl))
- Fix AWS deployment [\#274](https://github.com/mlbench/mlbench-core/pull/274) ([mmilenkoski](https://github.com/mmilenkoski))
- Create dependabot.yml [\#260](https://github.com/mlbench/mlbench-core/pull/260) ([ehoelzl](https://github.com/ehoelzl))
- Merge requirements & Update doc [\#259](https://github.com/mlbench/mlbench-core/pull/259) ([ehoelzl](https://github.com/ehoelzl))
- Bump google-api-python-client from 1.9.3 to 1.12.1 [\#246](https://github.com/mlbench/mlbench-core/pull/246) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
- Bump numpy from 1.19.0 to 1.19.2 [\#245](https://github.com/mlbench/mlbench-core/pull/245) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
- Bump boto3 from 1.14.6 to 1.14.50 [\#234](https://github.com/mlbench/mlbench-core/pull/234) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
- Fix isort errors [\#233](https://github.com/mlbench/mlbench-core/pull/233) ([mmilenkoski](https://github.com/mmilenkoski))
- Bump pytest-mock from 3.1.1 to 3.3.1 [\#231](https://github.com/mlbench/mlbench-core/pull/231) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
- Bump isort from 4.3.21 to 5.4.2 [\#221](https://github.com/mlbench/mlbench-core/pull/221) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
- Bump sphinx from 3.0.4 to 3.2.1 [\#220](https://github.com/mlbench/mlbench-core/pull/220) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
- Bump grpcio from 1.29.0 to 1.31.0 [\#207](https://github.com/mlbench/mlbench-core/pull/207) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
- Bump spacy from 2.3.0 to 2.3.2 [\#182](https://github.com/mlbench/mlbench-core/pull/182) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
- Downgrade Sphinx [\#162](https://github.com/mlbench/mlbench-core/pull/162) ([ehoelzl](https://github.com/ehoelzl))
- Add developer docs [\#161](https://github.com/mlbench/mlbench-core/pull/161) ([Panaetius](https://github.com/Panaetius))
- Fp optimizer changes [\#160](https://github.com/mlbench/mlbench-core/pull/160) ([ehoelzl](https://github.com/ehoelzl))
- Bump wcwidth from 0.1.9 to 0.2.5 [\#156](https://github.com/mlbench/mlbench-core/pull/156) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
- Bump all versions and add doc test [\#152](https://github.com/mlbench/mlbench-core/pull/152) ([Panaetius](https://github.com/Panaetius))
- Bump torchvision from 0.6.0 to 0.6.1 [\#151](https://github.com/mlbench/mlbench-core/pull/151) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
- Bump numpy from 1.18.5 to 1.19.0 [\#150](https://github.com/mlbench/mlbench-core/pull/150) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
- Bump torch from 1.5.0 to 1.5.1 [\#148](https://github.com/mlbench/mlbench-core/pull/148) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
- Bump google-auth from 1.17.2 to 1.18.0 [\#147](https://github.com/mlbench/mlbench-core/pull/147) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
- Bump sphinx-rtd-theme from 0.4.3 to 0.5.0 [\#144](https://github.com/mlbench/mlbench-core/pull/144) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
- Bump spacy from 2.2.4 to 2.3.0 [\#142](https://github.com/mlbench/mlbench-core/pull/142) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
- Bump sphinx from 3.1.0 to 3.1.1 [\#140](https://github.com/mlbench/mlbench-core/pull/140) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
- Bump dill from 0.3.1.1 to 0.3.2 [\#138](https://github.com/mlbench/mlbench-core/pull/138) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
- Update dependencies [\#137](https://github.com/mlbench/mlbench-core/pull/137) ([Panaetius](https://github.com/Panaetius))
- Bump spacy from 2.2.3 to 2.2.4 [\#135](https://github.com/mlbench/mlbench-core/pull/135) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
- Bump numpy from 1.16.6 to 1.18.5 [\#133](https://github.com/mlbench/mlbench-core/pull/133) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
- Bump freezegun from 0.3.12 to 0.3.15 [\#129](https://github.com/mlbench/mlbench-core/pull/129) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
- Bump tabulate from 0.8.6 to 0.8.7 [\#128](https://github.com/mlbench/mlbench-core/pull/128) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
- Bump deprecation from 2.0.6 to 2.1.0 [\#125](https://github.com/mlbench/mlbench-core/pull/125) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
- Bump pytest-black from 0.3.8 to 0.3.9 [\#124](https://github.com/mlbench/mlbench-core/pull/124) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
- Bump sphinx-rtd-theme from 0.4.2 to 0.4.3 [\#123](https://github.com/mlbench/mlbench-core/pull/123) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
- Bump sphinx from 1.8.1 to 3.1.0 [\#121](https://github.com/mlbench/mlbench-core/pull/121) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
- Bump pytest-mock from 1.10.0 to 3.1.1 [\#120](https://github.com/mlbench/mlbench-core/pull/120) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
- Bump torchtext from 0.5.0 to 0.6.0 [\#118](https://github.com/mlbench/mlbench-core/pull/118) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
- Bump torchvision from 0.5.0 to 0.6.0 [\#117](https://github.com/mlbench/mlbench-core/pull/117) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
- Adds support for multiple clusters [\#115](https://github.com/mlbench/mlbench-core/pull/115) ([Panaetius](https://github.com/Panaetius))
- Bump click from 7.0 to 7.1.2 [\#114](https://github.com/mlbench/mlbench-core/pull/114) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
- Bump google-cloud-container from 0.3.0 to 0.5.0 [\#113](https://github.com/mlbench/mlbench-core/pull/113) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
- Bump appdirs from 1.4.3 to 1.4.4 [\#112](https://github.com/mlbench/mlbench-core/pull/112) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
- Bump sphinxcontrib-bibtex from 0.4.0 to 1.0.0 [\#111](https://github.com/mlbench/mlbench-core/pull/111) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
- Bump sphinx-autoapi from 1.3.0 to 1.4.0 [\#110](https://github.com/mlbench/mlbench-core/pull/110) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
- Remove unused arguments in create\_aws [\#109](https://github.com/mlbench/mlbench-core/pull/109) ([mmilenkoski](https://github.com/mmilenkoski))
- Fix Random seeds, Add new tracker stats [\#107](https://github.com/mlbench/mlbench-core/pull/107) ([ehoelzl](https://github.com/ehoelzl))
- Add return\_code check in test\_cli [\#106](https://github.com/mlbench/mlbench-core/pull/106) ([mmilenkoski](https://github.com/mmilenkoski))
- Add AWS support in CLI [\#103](https://github.com/mlbench/mlbench-core/pull/103) ([mmilenkoski](https://github.com/mmilenkoski))
- Update test\_cli.py [\#100](https://github.com/mlbench/mlbench-core/pull/100) ([giorgiosav](https://github.com/giorgiosav))
- Adds a chart command to cli [\#95](https://github.com/mlbench/mlbench-core/pull/95) ([Panaetius](https://github.com/Panaetius))
- Add support for kind cluster creation in the CLI [\#93](https://github.com/mlbench/mlbench-core/pull/93) ([mmilenkoski](https://github.com/mmilenkoski))
# Changelog
## [v2.4.0](https://github.com/mlbench/mlbench-core/tree/v2.4.0) (2020-04-20)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/v2.3.2...v2.4.0)
**Implemented enhancements:**
- Switch to black for code formatting [\#35](https://github.com/mlbench/mlbench-core/issues/35)
**Closed issues:**
- Travis tests run only for Python 3.6 [\#65](https://github.com/mlbench/mlbench-core/issues/65)
- Downloading results fails if `--output` option is not provided [\#57](https://github.com/mlbench/mlbench-core/issues/57)
- Remember user input in mlbench run [\#56](https://github.com/mlbench/mlbench-core/issues/56)
- Aggregate the gradients by model, instead of by layers. [\#45](https://github.com/mlbench/mlbench-core/issues/45)
- Update docker images to CUDA10, mlbench-core module to newest [\#43](https://github.com/mlbench/mlbench-core/issues/43)
- Upgrade PyTorch to 1.4 [\#40](https://github.com/mlbench/mlbench-core/issues/40)
**Merged pull requests:**
- Pytorch v1.4.0 [\#68](https://github.com/mlbench/mlbench-core/pull/68) ([ehoelzl](https://github.com/ehoelzl))
- Fix ci [\#67](https://github.com/mlbench/mlbench-core/pull/67) ([ehoelzl](https://github.com/ehoelzl))
- Add aggregation by model [\#61](https://github.com/mlbench/mlbench-core/pull/61) ([ehoelzl](https://github.com/ehoelzl))
- Remember user input in mlbench run [\#60](https://github.com/mlbench/mlbench-core/pull/60) ([mmilenkoski](https://github.com/mmilenkoski))
- Add default name of output file in CLI [\#58](https://github.com/mlbench/mlbench-core/pull/58) ([mmilenkoski](https://github.com/mmilenkoski))
- Cli adaptation [\#55](https://github.com/mlbench/mlbench-core/pull/55) ([ehoelzl](https://github.com/ehoelzl))
- Update tags and patch version to 2.3.2 [\#52](https://github.com/mlbench/mlbench-core/pull/52) ([ehoelzl](https://github.com/ehoelzl))
- Add get\_optimizer to create optimizer object [\#48](https://github.com/mlbench/mlbench-core/pull/48) ([mmilenkoski](https://github.com/mmilenkoski))
# Changelog
## [v2.3.2](https://github.com/mlbench/mlbench-core/tree/v2.3.2) (2020-04-07)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/v2.3.1...v2.3.2)
**Implemented enhancements:**
- Add NCCL & GLOO Backend support [\#49](https://github.com/mlbench/mlbench-core/issues/49)
- Add NCCL & GLOO Backend support [\#47](https://github.com/mlbench/mlbench-core/pull/47) ([giorgiosav](https://github.com/giorgiosav))
**Fixed bugs:**
- math ValueError with 1-node cluster [\#38](https://github.com/mlbench/mlbench-core/issues/38)
**Merged pull requests:**
- num\_workers fix [\#51](https://github.com/mlbench/mlbench-core/pull/51) ([giorgiosav](https://github.com/giorgiosav))
- Adds centralized Adam implementation [\#41](https://github.com/mlbench/mlbench-core/pull/41) ([mmilenkoski](https://github.com/mmilenkoski))
# Change Log
## [2.3.1](https://github.com/mlbench/mlbench-core/tree/2.3.1) (2020-03-09)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/v2.3.0...2.3.1)
**Implemented enhancements:**
- Customize Communication Scheme For Sparsified/Quantizatized/Decentralized scenarios [\#12](https://github.com/mlbench/mlbench-core/issues/12)
## [v2.3.0](https://github.com/mlbench/mlbench-core/tree/v2.3.0) (2019-12-23)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/v2.2.1...v2.3.0)
## [v2.2.1](https://github.com/mlbench/mlbench-core/tree/v2.2.1) (2019-12-16)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/v2.2.0...v2.2.1)
# Change Log
## [v2.2.0](https://github.com/mlbench/mlbench-core/tree/v2.2.0) (2019-11-11)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/v2.1.0...v2.1.1)
**Implemented enhancements:**
- `initialize_backends` can now be called as context manager
- Improved CLI to run multiple runs in parallel
## [v2.1.1](https://github.com/mlbench/mlbench-core/tree/v2.1.1) (2019-11-11)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/v2.1.0...v2.1.1)
## [v2.1.0](https://github.com/mlbench/mlbench-core/tree/v2.1.0) (2019-11-4)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/v2.0.0...v2.1.0)
**Implemented enhancements:**
- Added CLI for MLBench runs
## [v1.4.4](https://github.com/mlbench/mlbench-core/tree/v1.4.4) (2019-05-28)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/v1.4.3...v1.4.4)
## [v1.4.3](https://github.com/mlbench/mlbench-core/tree/v1.4.3) (2019-05-23)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/v1.4.2...v1.4.3)
## [v1.4.2](https://github.com/mlbench/mlbench-core/tree/v1.4.2) (2019-05-21)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/v1.4.1...v1.4.2)
## [v1.4.1](https://github.com/mlbench/mlbench-core/tree/v1.4.1) (2019-05-16)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/v1.4.0...v1.4.1)
## [v1.4.0](https://github.com/mlbench/mlbench-core/tree/v1.4.0) (2019-05-02)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/v1.3.4...v1.4.0)
**Implemented enhancements:**
- Split Train and Validation in Tensorflow [\#22](https://github.com/mlbench/mlbench-core/issues/22)
## [v1.3.4](https://github.com/mlbench/mlbench-core/tree/v1.3.4) (2019-03-20)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/v1.3.3...v1.3.4)
**Implemented enhancements:**
- in controlflow, don't mix train and validation [\#20](https://github.com/mlbench/mlbench-core/issues/20)
**Fixed bugs:**
- Add metrics logging for Tensorflow [\#19](https://github.com/mlbench/mlbench-core/issues/19)
## [v1.3.3](https://github.com/mlbench/mlbench-core/tree/v1.3.3) (2019-02-26)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/v1.3.2...v1.3.3)
## [v1.3.2](https://github.com/mlbench/mlbench-core/tree/v1.3.2) (2019-02-13)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/v1.3.1...v1.3.2)
## [v1.3.1](https://github.com/mlbench/mlbench-core/tree/v1.3.1) (2019-02-13)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/v1.3.0...v1.3.1)
## [v1.3.0](https://github.com/mlbench/mlbench-core/tree/v1.3.0) (2019-02-12)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/v1.2.1...v1.3.0)
## [v1.2.1](https://github.com/mlbench/mlbench-core/tree/v1.2.1) (2019-01-31)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/v1.2.0...v1.2.1)
## [v1.2.0](https://github.com/mlbench/mlbench-core/tree/v1.2.0) (2019-01-30)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/v1.1.1...v1.2.0)
## [v1.1.1](https://github.com/mlbench/mlbench-core/tree/v1.1.1) (2019-01-09)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/v1.1.0...v1.1.1)
## [v1.1.0](https://github.com/mlbench/mlbench-core/tree/v1.1.0) (2018-12-06)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/v1.0.0...v1.1.0)
**Fixed bugs:**
- Bug when saving checkpoints [\#13](https://github.com/mlbench/mlbench-core/issues/13)
## [v1.0.0](https://github.com/mlbench/mlbench-core/tree/v1.0.0) (2018-11-20)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/1.4.2...v1.0.0)
**Implemented enhancements:**
- Add API Client to mlbench-core [\#6](https://github.com/mlbench/mlbench-core/issues/6)
- Move to google-style docs [\#4](https://github.com/mlbench/mlbench-core/issues/4)
- Add Imagenet Dataset for pytorch [\#3](https://github.com/mlbench/mlbench-core/issues/3)
- Move worker code to mlbench-core repo [\#1](https://github.com/mlbench/mlbench-core/issues/1)
# Change Log
## [1.4.2](https://github.com/mlbench/mlbench-core/tree/1.4.2) (2019-05-21)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/v1.0.0...1.4.2)
**Implemented enhancements:**
- Split Train and Validation in Tensorflow [\#22](https://github.com/mlbench/mlbench-core/issues/22)
- in controlflow, don't mix train and validation [\#20](https://github.com/mlbench/mlbench-core/issues/20)
**Fixed bugs:**
- Add metrics logging for Tensorflow [\#19](https://github.com/mlbench/mlbench-core/issues/19)
- Bug when saving checkpoints [\#13](https://github.com/mlbench/mlbench-core/issues/13)
# Change Log
## [v1.4.1](https://github.com/mlbench/mlbench-core/tree/v1.4.1) (2019-05-16)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/v1.4.0...v1.4.1)
## [1.4.0](https://github.com/mlbench/mlbench-core/tree/1.4.0) (2019-05-02)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/v1.0.0...1.4.0)
**Implemented enhancements:**
- Split Train and Validation in Tensorflow [\#22](https://github.com/mlbench/mlbench-core/issues/22)
- in controlflow, don't mix train and validation [\#20](https://github.com/mlbench/mlbench-core/issues/20)
**Fixed bugs:**
- Add metrics logging for Tensorflow [\#19](https://github.com/mlbench/mlbench-core/issues/19)
- Bug when saving checkpoints [\#13](https://github.com/mlbench/mlbench-core/issues/13)
# Change Log
## [v1.3.4](https://github.com/mlbench/mlbench-core/tree/v1.3.4) (2019-03-20)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/v1.3.3...v1.3.4)
**Implemented enhancements:**
- in controlflow, don't mix train and validation [\#20](https://github.com/mlbench/mlbench-core/issues/20)
**Fixed bugs:**
- Add metrics logging for Tensorflow [\#19](https://github.com/mlbench/mlbench-core/issues/19)
## [v1.3.3](https://github.com/mlbench/mlbench-core/tree/v1.3.3) (2019-02-26)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/v1.3.2...v1.3.3)
## [v1.3.2](https://github.com/mlbench/mlbench-core/tree/v1.3.2) (2019-02-13)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/v1.3.1...v1.3.2)
## [v1.3.1](https://github.com/mlbench/mlbench-core/tree/v1.3.1) (2019-02-13)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/v1.3.0...v1.3.1)
## [v1.3.0](https://github.com/mlbench/mlbench-core/tree/v1.3.0) (2019-02-12)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/v1.2.1...v1.3.0)
## [v1.2.1](https://github.com/mlbench/mlbench-core/tree/v1.2.1) (2019-01-31)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/v1.2.0...v1.2.1)
## [v1.2.0](https://github.com/mlbench/mlbench-core/tree/v1.2.0) (2019-01-30)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/v1.1.1...v1.2.0)
## [v1.1.1](https://github.com/mlbench/mlbench-core/tree/v1.1.1) (2019-01-09)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/v1.1.0...v1.1.1)
# Change Log
## [v1.1.0](https://github.com/mlbench/mlbench-core/tree/v1.1.0) (2018-12-06)
[Full Changelog](https://github.com/mlbench/mlbench-core/compare/v1.0.0...v1.1.0)
**Fixed bugs:**
- Bug when saving checkpoints [\#13](https://github.com/mlbench/mlbench-core/issues/13)
- Adds Tensorflow Controlflow, Dataset and Model code
- Adds Pytorch linear models
- Adds sparsified and decentralized optimizers
## [v1.0.0](https://github.com/mlbench/mlbench-core/tree/v1.0.0) (2018-11-15)
**Implemented enhancements:**
- Add API Client to mlbench-core [\#6](https://github.com/mlbench/mlbench-core/issues/6)
- Move to google-style docs [\#4](https://github.com/mlbench/mlbench-core/issues/4)
- Add Imagenet Dataset for pytorch [\#3](https://github.com/mlbench/mlbench-core/issues/3)
- Move worker code to mlbench-core repo [\#1](https://github.com/mlbench/mlbench-core/issues/1)
## [0.1.0](https://github.com/mlbench/mlbench/tree/0.1.0) (2018-09-14)
**Implemented enhancements:**
- Add documentation in reference implementation to docs [\#46](https://github.com/mlbench/mlbench/issues/46)
- Replace cAdvisor with Kubernetes stats for Resource usage [\#38](https://github.com/mlbench/mlbench/issues/38)
- Rename folders [\#31](https://github.com/mlbench/mlbench/issues/31)
- Change docker image names [\#30](https://github.com/mlbench/mlbench/issues/30)
- Add continuous output for mpirun [\#27](https://github.com/mlbench/mlbench/issues/27)
- Replace SQlite with Postgres [\#25](https://github.com/mlbench/mlbench/issues/25)
- Fix unittest [\#23](https://github.com/mlbench/mlbench/issues/23)
- Add/Fix CI/Automated build [\#22](https://github.com/mlbench/mlbench/issues/22)
- Cleanup unneeded project files [\#21](https://github.com/mlbench/mlbench/issues/21)
- Remove hardcoded values [\#20](https://github.com/mlbench/mlbench/issues/20)
- Improves Notes.txt [\#19](https://github.com/mlbench/mlbench/issues/19)
- Rename components [\#15](https://github.com/mlbench/mlbench/issues/15)
**Fixed bugs:**
- 504 Error when downloading metrics for long runs [\#61](https://github.com/mlbench/mlbench/issues/61)
**Closed issues:**
- small doc improvements for first release [\#54](https://github.com/mlbench/mlbench/issues/54)
- Check mlbench works on Google Cloud [\#51](https://github.com/mlbench/mlbench/issues/51)
- learning rate scheduler [\#50](https://github.com/mlbench/mlbench/issues/50)
- Add Nvidia k8s-device-plugin to charts [\#48](https://github.com/mlbench/mlbench/issues/48)
- Add Weave to Helm Chart [\#41](https://github.com/mlbench/mlbench/issues/41)
- Allow limiting of resources for experiments [\#39](https://github.com/mlbench/mlbench/issues/39)
- Allow downloading of Run measurements [\#35](https://github.com/mlbench/mlbench/issues/35)
- Worker Details page [\#33](https://github.com/mlbench/mlbench/issues/33)
- Run Visualizations [\#32](https://github.com/mlbench/mlbench/issues/32)
- Show experiment history in Dashboard [\#18](https://github.com/mlbench/mlbench/issues/18)
- Show model progress in Dashboard [\#13](https://github.com/mlbench/mlbench/issues/13)
- Report cluster status in Dashboard [\#12](https://github.com/mlbench/mlbench/issues/12)
- Send metrics from SGD example to metrics api [\#11](https://github.com/mlbench/mlbench/issues/11)
- Add metrics endpoint for experiments [\#10](https://github.com/mlbench/mlbench/issues/10)
- Let Coordinator Dashboard start a distributed Experiment [\#9](https://github.com/mlbench/mlbench/issues/9)
- Add mini-batch SGD model experiment [\#8](https://github.com/mlbench/mlbench/issues/8)
- add benchmark code for MPI [\#7](https://github.com/mlbench/mlbench/issues/7)
- add benchmark code for tensorflow [\#6](https://github.com/mlbench/mlbench/issues/6)
- add benchmark code for apache reef [\#5](https://github.com/mlbench/mlbench/issues/5)
- add benchmark code for apache flink [\#4](https://github.com/mlbench/mlbench/issues/4)
- get initial benchmark numbers \(spark reference implementation and mllib/ml\) [\#3](https://github.com/mlbench/mlbench/issues/3)
- evaluate script \(framework-independent\) and algorithm output format [\#2](https://github.com/mlbench/mlbench/issues/2)
- bench-spark: remove prepare-data for now, comment on solver prequisites [\#1](https://github.com/mlbench/mlbench/issues/1)
\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
\* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*
\* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*
\* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*
%prep
%autosetup -n mlbench-core-3.0.0
%build
%py3_build
%install
%py3_install
install -d -m755 %{buildroot}/%{_pkgdocdir}
if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi
if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi
if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi
if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi
pushd %{buildroot}
if [ -d usr/lib ]; then
find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst
fi
if [ -d usr/lib64 ]; then
find usr/lib64 -type f -printf "/%h/%f\n" >> filelist.lst
fi
if [ -d usr/bin ]; then
find usr/bin -type f -printf "/%h/%f\n" >> filelist.lst
fi
if [ -d usr/sbin ]; then
find usr/sbin -type f -printf "/%h/%f\n" >> filelist.lst
fi
touch doclist.lst
if [ -d usr/share/man ]; then
find usr/share/man -type f -printf "/%h/%f.gz\n" >> doclist.lst
fi
popd
mv %{buildroot}/filelist.lst .
mv %{buildroot}/doclist.lst .
%files -n python3-mlbench-core -f filelist.lst
%dir %{python3_sitelib}/*
%files help -f doclist.lst
%{_docdir}/*
%changelog
* Sun Apr 23 2023 Python_Bot <Python_Bot@openeuler.org> - 3.0.0-1
- Package Spec generated
|