-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
17 changed files
with
207 additions
and
8 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 |
---|---|---|
|
@@ -7,6 +7,7 @@ python: | |
path: . | ||
extra_requirements: | ||
- doc | ||
- datasets | ||
|
||
sphinx: | ||
builder: html | ||
|
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 |
---|---|---|
@@ -0,0 +1,45 @@ | ||
maskit.datasets package | ||
======================= | ||
|
||
Submodules | ||
---------- | ||
|
||
maskit.datasets.circles module | ||
------------------------------ | ||
|
||
.. automodule:: maskit.datasets.circles | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
||
maskit.datasets.iris module | ||
--------------------------- | ||
|
||
.. automodule:: maskit.datasets.iris | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
||
maskit.datasets.mnist module | ||
---------------------------- | ||
|
||
.. automodule:: maskit.datasets.mnist | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
||
maskit.datasets.utils module | ||
---------------------------- | ||
|
||
.. automodule:: maskit.datasets.utils | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
||
Module contents | ||
--------------- | ||
|
||
.. automodule:: maskit.datasets | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: |
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 |
---|---|---|
@@ -0,0 +1,77 @@ | ||
maskit package | ||
============== | ||
|
||
Subpackages | ||
----------- | ||
|
||
.. toctree:: | ||
:maxdepth: 4 | ||
|
||
maskit.datasets | ||
|
||
Submodules | ||
---------- | ||
|
||
maskit.circuits module | ||
---------------------- | ||
|
||
.. automodule:: maskit.circuits | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
||
maskit.ensembles module | ||
----------------------- | ||
|
||
.. automodule:: maskit.ensembles | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
||
maskit.log\_results module | ||
-------------------------- | ||
|
||
.. automodule:: maskit.log_results | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
||
maskit.masks module | ||
------------------- | ||
|
||
.. automodule:: maskit.masks | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
||
maskit.optimizers module | ||
------------------------ | ||
|
||
.. automodule:: maskit.optimizers | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
||
maskit.plotting module | ||
---------------------- | ||
|
||
.. automodule:: maskit.plotting | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
||
maskit.utils module | ||
------------------- | ||
|
||
.. automodule:: maskit.utils | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
||
Module contents | ||
--------------- | ||
|
||
.. automodule:: maskit | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: |
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
maskit | ||
====== | ||
|
||
.. toctree:: | ||
:maxdepth: 4 | ||
|
||
maskit |
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
.. Created by log.py at 2022-05-13, command | ||
'/Users/eileenwork/development/tmp/google_paper/venv/lib/python3.8/site-packages/change/__main__.py log docs/source/changes compile --output docs/source/changelog.rst' | ||
based on the format of 'https://keepachangelog.com/' | ||
######### | ||
ChangeLog | ||
######### | ||
|
||
0.1 Series | ||
========== | ||
|
||
Version [0.1.0] - 2022-05-13 | ||
++++++++++++++++++++++++++++ | ||
|
||
* **[Added]** Add mask for wires, layers, and parameters | ||
* **[Added]** Add mask to change values by an offset | ||
* **[Added]** Add mask for freezing | ||
* **[Added]** Add mask for entangling gates |
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
category: added | ||
summary: "Add mask for freezing" | ||
description: | | ||
A mask for freezing parts of a circuit was added. The different dimensions including | ||
wires, layers, and single parameters can be frozen. Frozen parts of a circuit cannot | ||
be changed anymore during training. | ||
pull requests: | ||
- 17 | ||
version: 0.1.0 |
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
category: added | ||
summary: "Add mask for entangling gates" | ||
description: | | ||
So far only masking of gates defined via parameters was supported. This change | ||
introduces the functionality to also mask entangling gates. | ||
pull requests: | ||
- 32 | ||
version: 0.1.0 |
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
category: added | ||
summary: "Add mask to change values by an offset" | ||
description: | | ||
With this change it is supported to apply a mask to parameter values. With this, it | ||
becomes possible to add or reduce parameters by a specific offset given the various | ||
axes, i.e. wires, layers, or parameters. | ||
pull requests: | ||
- 54 | ||
- 50 | ||
version: 0.1.0 |
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
category: added | ||
summary: "Add mask for wires, layers, and parameters" | ||
description: "This change adds basic functionality to mask the dimensions of wires,\ | ||
\ layers, and \nsingle parameters.\n" | ||
pull requests: | ||
- 9 | ||
version: 0.1.0 |
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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
- semver: 0.1.0 | ||
date: '2022-05-13' |
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