Skip to content

Instantly share code, notes, and snippets.

@pycaret
Created August 5, 2020 18:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pycaret/2e69a76180978484490bf9f7fe787df0 to your computer and use it in GitHub Desktop.
Save pycaret/2e69a76180978484490bf9f7fe787df0 to your computer and use it in GitHub Desktop.
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