Initial Checks
Description
I couldn't find anywhere else to report document errors.
https://docs.docarray.org/how_to/multimodal_training_and_serving/
Defined
class PairTextImage(BaseDoc):
text: TextDoc
image: ImageDoc
and then use it
da = DocList[PairTextImage](
PairTextImage(text=Text(text=i.caption), image=Image(url=f"Images/{i.image}"))
for i in df.itertuples()
)
actually the Image class is not defined.
def __call__(self, text: Text) -> None:
assert isinstance(text, Text)
text.tokens = Tokens(
**self.tokenizer(
text.text, padding="max_length", truncation=True, max_length=48
)
and the Text class is not defined.
Example Code
No response
Python, DocArray & OS Version
I couldn't find anywhere else to report document errors
Affected Components