-
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.
Pull request #6: Add Variational Autoencoder
Merge in CSID/glaucus from feature/vae to main Squashed commit of the following: commit 607d45bc9d0f51e69da68a535bffc2998fe98062 Author: Kyle A Logue <kyle.a.logue@aero.org> Date: Tue Apr 16 08:55:15 2024 -0700 Variational Autoencoder & RFLoss Improvements * RFLoss now has optional `overlap` parameter for spectrogram calculation * Glaucus can now be instantated as an RF Unet by using `blockgen` with new modes `unet-encoder` and `unet-decoder`. * Add GitHub workflow * Increment to v1.2.0 * Warnings eliminated * Eliminate noise layer from basic AE; could be re-enabled for denoising autoencoder
- Loading branch information
Philip K Giang
authored and
Kyle A Logue
committed
Apr 16, 2024
1 parent
48910a0
commit 60b9ed5
Showing
14 changed files
with
796 additions
and
412 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,26 @@ | ||
name: Python package | ||
|
||
on: | ||
push: | ||
pull_request: | ||
types: [opened, synchronize] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-20.04 | ||
strategy: | ||
matrix: | ||
python-version: ["3.8", "3.10", "3.12"] | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install . | ||
- name: Test with pytest | ||
run: | | ||
coverage run |
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
Oops, something went wrong.