File tree Expand file tree Collapse file tree 1 file changed +18
-1
lines changed Expand file tree Collapse file tree 1 file changed +18
-1
lines changed Original file line number Diff line number Diff line change 2
2
3
3
## Upcoming
4
4
5
- * __ Breaking__ : SimpleTrainingLoop will be replaced with SimpleTrainingStep, utilizing composition over inheritance.
6
5
* Implement distributed training loop.
6
+ * Implement ` StateSerializable ` interface for training loops and training steps to support training loop checkpoint.
7
+ * Implement evaluation loop.
8
+
9
+ ## [ v0.1.0] ( https://github.com/beekill95/torch-training-loop/releases/tag/v0.1.0 ) - 2023-11-03
10
+
11
+ ` TrainingLoop ` instances can be initialized directly.
12
+ They receives an instance of ` TrainingStep ` specifying the logic of training/validating a model.
13
+
14
+ ### Removed
15
+
16
+ * __ Breaking__ : Remove ` SimpleTrainingLoop ` , replace it with ` SimpleTrainingStep ` .
17
+ ([ #11 ] ( https://github.com/beekill95/torch-training-loop/pull/11 ) )
18
+ * Remove ` tensorboard ` dependency.
19
+
20
+ ### Added
21
+
22
+ * Add usage section in README.
23
+ * Add an example for training conditional GAN on Fashion MNIST with custom loop.
7
24
8
25
## [ v0.0.3] ( https://github.com/beekill95/torch-training-loop/releases/tag/v0.0.3 ) - 2023-10-25
9
26
You can’t perform that action at this time.
0 commit comments