Skip to content

Commit

Permalink
🔥 Change tests optimizer, workflow dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
kaylode committed Nov 4, 2023
1 parent 15ccc53 commit c92f407
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 8 deletions.
1 change: 1 addition & 0 deletions .github/workflows/clf.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ on:
pull_request:
branches:
- master
- dev
push:
branches:
- master
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/segm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ on:
pull_request:
branches:
- master
- dev
push:
branches:
- master
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/tablr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ on:
pull_request:
branches:
- master
- dev
push:
branches:
- master
Expand Down Expand Up @@ -32,7 +33,7 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install torch torchvision --extra-index-url https://download.pytorch.org/whl/cpu
pip install -e '.[dev,tabular,tabular_classification]'
pip install -e '.[dev,ml]'
pip install dvc dvc-gdrive
npm install -g markdown-table-cli
- name: Download data
Expand Down
8 changes: 5 additions & 3 deletions tests/classification/configs/base/optimizer.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ optimizer:
scheduler:
name: SchedulerWrapper
args:
scheduler_name: tf_cosinewarmup
num_warmup_steps: 100
num_cycles: 0.5
scheduler_name: cosine2
t_initial: 7
t_mul: 0.9
eta_mul: 0.9
eta_min: 1.0e-06
8 changes: 5 additions & 3 deletions tests/semantic/configs/base/optimizer.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ optimizer:
scheduler:
name: SchedulerWrapper
args:
scheduler_name: tf_cosinewarmup
num_warmup_steps: 100
num_cycles: 0.5
scheduler_name: cosine2
t_initial: 7
t_mul: 0.9
eta_mul: 0.9
eta_min: 1.0e-06
1 change: 0 additions & 1 deletion theseus/base/callbacks/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
RichModelSummary,
)

# from theseus.ml.callbacks.base_callbacks import Callbacks, CallbacksList
from theseus.registry import Registry

from .checkpoint_callback import TorchCheckpointCallback
Expand Down

2 comments on commit c92f407

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Classification Report

Metrics

acc bl_acc weighted-f1 iters
0.25 0.25 0.2 0

Confusion Matrix

Confusion Matrix

Errorcases

Confusion Matrix

Hyperparameters Tuning

Leaderboard

number value datetime_start datetime_complete duration params_optimizer.args.lr best_key model_name state
0 0.75 1699083168752 1699083202605 33852 0.0005755242 bl_acc efficientnet_b0 COMPLETE
1 0.75 1699083202607 1699083235838 33230 0.0007135303 bl_acc efficientnet_b0 COMPLETE

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Semantic Report

Metrics

precision recall dice iters
0.40369 0.99999 0.57513 0

Prediction

Prediction

Please sign in to comment.