Callum McMahon

Results 7 comments of Callum McMahon

Ahh nice! happy to hear there will eventually be an amendment to make `type` a list. I guess my comment was pretty minor original annotation 27708774 2036 2052 antral follicles...

I also had this issue. My solution was to use the mesh simplification script that comes with MeshLab. The function "Simplification: quadratic edge collapse decimation" with a desired percentage reduction...

@unlugi No problem! With MeshLab installed, load up a mesh, then select `filters -> Remeshing, Simplification and reconstruction` then chose one of the simplification methods. tweak the settings until you...

I'm able to get a working FastAPI/OpenAPI schema from nested discriminated Unions using the solution mentioned in #7487 I only needed the TypeAliasType as I'm not using recursive models. Mentioning...

Continuing the example code from above ```python from typing_extensions import Annotated, TypeAliasType Cat = TypeAliasType( "Cat", Annotated[Union[BlackCat, WhiteCat], Field(discriminator='color')] ) print(str(Model.model_json_schema()["properties"]["pet"])) print(str(Model.model_json_schema()["$defs"]["Cat"])) ``` This returns ```json { "discriminator": { "mapping":...

I've been trying the state transitions feature and wanted to keep the graph as simple as possible, keeping possible transitions to 1 for much of the graph. My thoughts are...

Just commenting that I'm in a similar situation on a HPC, and having working non-root stores working smoothly would be amazing for replacing conda workloads. I currently have a working...