-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #59 from Vivswan/develop
v1.0.8
- Loading branch information
Showing
7 changed files
with
35 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,41 +1,38 @@ | ||
# Changelog | ||
|
||
## 1.0.8 | ||
* Removed redundant code from `reduce_precision`. | ||
* Added `types` argument to `PseudoParameter.parametrize_module` for better selection for Parameterising the Layers. | ||
|
||
## 1.0.7 | ||
* Fixed `GeLU` backward function equation. | ||
|
||
## 1.0.6 | ||
|
||
* `Model` is subclass of `BackwardModule` for additional functionality. | ||
* Using `inspect.isclass` to check if `backward_class` is a class in `Linear.set_backward_function`. | ||
* Repr using `self.__class__.__name__` in all classes. | ||
|
||
## 1.0.5 (Patches for Pytorch 2.0.1) | ||
|
||
* Removed unnecessary `PseudoParameter.grad` property. | ||
* Patch for Pytorch 2.0.1, add filtering inputs in `BackwardGraph._calculate_gradients`. | ||
|
||
## 1.0.4 | ||
|
||
* Combined `PseudoParameter` and `PseudoParameterModule` for better visibility. | ||
* BugFix: fixed save and load of state_dict of `PseudoParameter` and transformation module. | ||
* Removed redundant class `analogvnn.parameter.Parameter`. | ||
|
||
## 1.0.3 | ||
|
||
* Added support for no loss function in `Model` class. | ||
* If no loss function is provided, the `Model` object will use outputs for gradient computation. | ||
* Added support for multiple loss outputs from loss function. | ||
|
||
## 1.0.2 | ||
|
||
* Bugfix: removed `graph` from `Layer` class. | ||
* `graph` was causing issues with nested `Model` objects. | ||
* Now `_use_autograd_graph` is directly set while compiling the `Model` object. | ||
|
||
## 1.0.1 (Patches for Pytorch 2.0.0) | ||
|
||
* added `grad.setter` to `PseudoParameterModule` class. | ||
|
||
## 1.0.0 | ||
|
||
* Public release. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,7 @@ | |
torch | ||
torchvision | ||
torchaudio | ||
dataclasses | ||
numpy>=1.22.2 | ||
scipy | ||
networkx | ||
|