Skip to content

Minimum Example

Ali Boushehri edited this page Nov 27, 2020 · 1 revision

The minimal settings for running InstantDL with default parameters are:

from instantdl import GetPipeLine

configs = { "use_algorithm": "Classification",
            "path": "examples/Classification"}

pipeline = GetPipeLine(configs)

pipeline.run()

As you can see, it is very straightforward to use the pipeline and there is no need for more programming.

Clone this wiki locally