-
Notifications
You must be signed in to change notification settings - Fork 14
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 #37 from fabian-sp/f-fda-and-mask
New features: Functional Graphical Lasso and lambda1 mask
- Loading branch information
Showing
29 changed files
with
2,003 additions
and
230 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,25 +1,31 @@ | ||
# This is a basic workflow to help you get started with Actions | ||
|
||
name: Testing | ||
|
||
# Controls when the workflow will run | ||
on: | ||
# Triggers the workflow on push or pull request events but only for the main branch | ||
push: | ||
branches: [ main ] | ||
branches: [ master ] | ||
pull_request: | ||
|
||
# Allows you to run this workflow manually from the Actions tab | ||
workflow_dispatch: | ||
|
||
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | ||
jobs: | ||
# This workflow contains a single job called "build" | ||
build: | ||
# The type of runner that the job will run on | ||
runs-on: ubuntu-latest | ||
|
||
# Steps represent a sequence of tasks that will be executed as part of the job | ||
steps: | ||
- name: GitHub Action for pytest | ||
uses: cclauss/[email protected] | ||
- uses: actions/checkout@v3 | ||
|
||
- uses: conda-incubator/setup-miniconda@v2 | ||
with: | ||
activate-environment: gglasso_env | ||
environment-file: environment.yml | ||
python-version: 3.8 | ||
|
||
# Install package and run tests | ||
- name: run tests | ||
# This one is very important so we can reuse conda env from last step | ||
shell: bash -l {0} | ||
run: | | ||
pip install -e . | ||
conda list | ||
pytest gglasso/tests -v |
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: gglasso_env | ||
|
||
dependencies: | ||
- python>=3.8 | ||
- numpy>=1.19.2 | ||
- numba>=0.53.1 | ||
- scipy>=0.11.0 | ||
- scikit-learn>=0.24.1 | ||
- pandas | ||
- matplotlib | ||
- seaborn | ||
- networkx | ||
- decorator==4.4.2 | ||
- sphinx==3.5.4 | ||
- pytest | ||
- pip | ||
- pip: | ||
- regain | ||
- scikit-fda | ||
- sphinx-gallery==0.8.2 | ||
- sphinx_rtd_theme==0.5.2 | ||
- fdasrsf==2.3.11 | ||
|
Oops, something went wrong.