From a4e75fba774ecfce09f703bdafe94ddf497e9259 Mon Sep 17 00:00:00 2001 From: Katie Wetstone Date: Fri, 26 Apr 2024 16:56:03 -0400 Subject: [PATCH] fix ModelManager import --- docs/docs/yaml-config.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/yaml-config.md b/docs/docs/yaml-config.md index 044b573b..fea2defc 100644 --- a/docs/docs/yaml-config.md +++ b/docs/docs/yaml-config.md @@ -61,7 +61,7 @@ Only some of the possible parameters can be passed directly as arguments to the The main API for zamba is the [`ModelManager` class](api-reference/models-model_manager.md#zamba.models.model_manager.ModelManager) that can be accessed with: ```python -from zamba.models.manager import ModelManager +from zamba.models.model_manager import ModelManager ``` The `ModelManager` class is used by `zamba`’s command line interface to handle preprocessing the filenames, loading the videos, training the model, performing inference, and saving predictions. Therefore any functionality available to the command line interface is accessible via the `ModelManager` class.