Created
August 5, 2020 15:51
-
-
Save pycaret/2aadaef5e12811f848e556667d37b6ad 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" | |
description: "A simple example of AutoML created using PyCaret 2.0" | |
author: "Moez Ali" | |
inputs: | |
DATASET: | |
description: "Dataset for Training" | |
required: true | |
default: "juice" | |
TARGET: | |
description: "Name of Target variable" | |
required: true | |
default: "Purchase" | |
USECASE: | |
description: "Use-case Classification or Regression" | |
required: true | |
default: "classification" | |
outputs: | |
myOutput: | |
description: "Output from the action" | |
runs: | |
using: "docker" | |
image: "Dockerfile" | |
branding: | |
icon: 'box' | |
color: 'blue' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment