Gilles Oldano

Results 2 comments of Gilles Oldano

Hi, this is the workaround that I use: ``` from typing_extensions import Annotated from pydantic import PlainValidator, PlainSerializer Complex = Annotated[ complex, PlainValidator(lambda x: x if isinstance(x, complex) else complex(x.get('real',...

Hi, I'm trying it right now, however I encoutered another problem, when following the deep neural network example. Since I do not have access to the resnet18 model of the...