Created
August 5, 2020 18:07
-
-
Save pycaret/2e69a76180978484490bf9f7fe787df0 to your computer and use it in GitHub Desktop.
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
name: PyCaret AutoML Git Action | |
on: | |
push : | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: PyCaret AutoML Git Action | |
id: model | |
uses: pycaret/pycaret-git-actions@automl | |
with: | |
DATASET: "juice" | |
TARGET: "Purchase" | |
USECASE: "classification" | |
- name: Upload model.pkl | |
uses: actions/upload-artifact@v2 | |
with: | |
name: model | |
path: model.pkl | |
- name: Upload exp_github_logs.csv | |
uses: actions/upload-artifact@v2 | |
with: | |
name: experiment-logs | |
path: exp_github_logs.csv | |
- name: Upload logs.log | |
uses: actions/upload-artifact@v2 | |
with: | |
name: system-logs | |
path: logs.log |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment