-
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.
- Loading branch information
1 parent
ea40611
commit 8dd3f30
Showing
1 changed file
with
25 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
from __future__ import annotations | ||
|
||
from qadence.types import StrEnum | ||
|
||
__all__ = ["BasisSet", "ReuploadScaling"] | ||
|
||
|
||
class BasisSet(StrEnum): | ||
"""Basis set for feature maps.""" | ||
|
||
FOURIER = "Fourier" | ||
"""Fourier basis set.""" | ||
CHEBYSHEV = "Chebyshev" | ||
"""Chebyshev polynomials of the first kind.""" | ||
|
||
|
||
class ReuploadScaling(StrEnum): | ||
"""Scaling for data reuploads in feature maps.""" | ||
|
||
CONSTANT = "Constant" | ||
"""Constant scaling.""" | ||
TOWER = "Tower" | ||
"""Linearly increasing scaling.""" | ||
EXP = "Exponential" | ||
"""Exponentially increasing scaling.""" |