Skip to content

Commit

Permalink
Merge pull request #7 from Nuwa-genomics/development
Browse files Browse the repository at this point in the history
use python v3
  • Loading branch information
ch1ru authored Mar 15, 2024
2 parents 9f323b4 + 971fa30 commit 9e97732
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/run_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ jobs:
- uses: actions/checkout@v2
- name: Update docs
run: |
pip install docstring-parser==0.15
python docs/generate_docs.py
pip3 install docstring-parser==0.15
python3 docs/generate_docs.py
- name: Run tests
run: |
docker system prune --force
docker-compose -f tests.docker-compose.yml up --build --abort-on-container-exit
docker compose -f tests.docker-compose.yml up --build --abort-on-container-exit
1 change: 0 additions & 1 deletion app/ml/solo_scvi/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ def get_solo_model_history(solo, vae):
if i == "train_loss_epoch":
solo_train_loss_df = solo.history[i]


solo_df = solo_valid_loss_df.join(solo_train_loss_df, on='epoch')

# vae
Expand Down

0 comments on commit 9e97732

Please sign in to comment.