From 1476ef90973f8235f0cb9fc5d41af86b79639f32 Mon Sep 17 00:00:00 2001 From: atroyn Date: Mon, 13 Nov 2023 13:14:03 -0800 Subject: [PATCH] Fix typo in code --- docs/multi-modal.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/multi-modal.md b/docs/multi-modal.md index 955af93..66bec98 100644 --- a/docs/multi-modal.md +++ b/docs/multi-modal.md @@ -43,7 +43,7 @@ Chroma has an data loader for loading images from a filesystem built in. ```python from chromadb.utils.data_loaders import ImageDataLoader -data_loader = ImageDataLoader() +data_loader = ImageLoader() ``` ## Multi-modal Collections @@ -58,7 +58,7 @@ client = chromadb.Client() collection = client.create_collection( name='multimodal_collection', embedding_function=embedding_function, - data_loader=image_loader) + data_loader=data_loader) ```