jimixxperez
jimixxperez
a = pd.DataFrame([{'a': 1, 'c': 0}, {'a': 2, 'c': 2}, {'a': 3, 'c': 5}]) b = a b = b.loc[[0, 2]] b => a c 0 1 0 2 3...
Hi, Do you still have the trained weights of the model? This would save me some computational time. Thx in advance and cheers.
I currently use a nested BaseModel as output of a signature for a project. ``` class Bar(BaseModel): val: str = Field(desc="value desc") class Foo(BaseModel): bar: Bar = Field(desc="bar desc") ```...