Skip to content

Commit

Permalink
🚀 Update docker workflows, add docker push
Browse files Browse the repository at this point in the history
  • Loading branch information
kaylode committed Nov 21, 2023
1 parent 7daa9ea commit 52a1552
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 1 deletion.
10 changes: 10 additions & 0 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,16 @@ jobs:
run: |
pytest tests --capture=no
- name: Log in to Docker Hub
uses: docker/login-action@f4ef78c080cd8ba55a85445d5b36e214a81df20a
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}

- name: Push image to DockerHub
run: |
docker push --all-tags
- name: where am I
run: |
pwd
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ runs/
*.zip
catboost_info/
.cache
/build/
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ ENV PYTORCH_VERSION ${PYTORCH_VERSION}
COPY ./ /workspace/
WORKDIR /workspace/
RUN /opt/mamba/bin/python -m pip install --upgrade pip && \
/opt/mamba/bin/python -m pip install -e .[cv,cv_classification,cv_semantic,cv_detection,nlp,nlp_retrieval,tabular,tabular_classification,dev] && \
/opt/mamba/bin/python -m pip install -e .[cv,cv_classification,cv_semantic,cv_detection,nlp,nlp_retrieval,ml,dev] && \
/opt/mamba/bin/python -m pip install dvc dvc-gdrive && \
/opt/mamba/bin/python -m pip install -U timm

Expand Down

3 comments on commit 52a1552

@github-actions
Copy link

Choose a reason for hiding this comment

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

Tabular Classification Report

Metrics

SHAP train

SHAP

SHAP val

SHAP

Hyperparameters Tuning

Leaderboard

number value datetime_start datetime_complete duration params_gamma params_learning_rate params_max_depth params_n_estimators params_reg_alpha params_reg_lambda best_key model_name state
0 0.8212082412 1700593739469 1700593739613 143 0.1970636138 0.7669469755 2 260 0.1896923899 0.0771449026 bl_acc xgboost COMPLETE
1 0.7954836457 1700593739615 1700593739766 151 0.7644868083 0.7286000639 4 465 0.300439312 0.7717977331 bl_acc xgboost COMPLETE
2 0.7925736236 1700593739767 1700593739946 178 0.8625297938 0.7379116434 8 487 0.3081689216 0.2170196791 bl_acc xgboost COMPLETE

Figures
History
Contour plot
Parallel
Importance
Slice

@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.40049 1 0.57187 0

Prediction

Prediction
Prediction
Prediction

@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.75 0.75 0.73333 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.5 1700593760851 1700593795621 34770 0.0007793198 bl_acc efficientnet_b0 COMPLETE
1 1 1700593795623 1700593829812 34189 0.0009789721 bl_acc efficientnet_b0 COMPLETE

Please sign in to comment.