System packages
./my-classifier/
├── cortex.yaml
├── predictor.py
├── ...
└── dependencies.shapt-get update && apt-get install -y tree# predictor.py
import subprocess
class PythonPredictor:
def __init__(self, config):
subprocess.run(["tree"])
...Last updated