adsharma
adsharma
I can't find the referenced commit any more. Do you have a pointer that works?
https://github.com/threestudio-project/threestudio/blob/main/threestudio/models/background/solid_color_background.py#L37-L39
@wilsonjr many databases are able to partition based on a single dimsensional column such as ID or date. I suspect your focus is on `n_components=2` because of the applications in...
@carvalho28 solution above works better. I used it for this image extraction task: https://github.com/adsharma/kuzu-demo-dspy/commit/fc30bfd1d7803676eb75611317f5d3dbfb7a4507 Things that could be better: * If I use `gemma3n:e4b`, the model hallucinates and gives me...
``` $ flutter doctor Doctor summary (to see all details, run flutter doctor -v): [✓] Flutter (Channel , 3.22.2, on Arch Linux 6.8.0-38-generic, locale C.UTF-8) [✗] Android toolchain - develop...
Staying with archlinux for now.
Please take a look at `ASTxSubscript` and other similar `ASTx*` constructs in `astx.py` To infer "not a" as bool, I'd modify this code: https://github.com/py2many/py2many/blob/main/py2many/inference.py#L375 and add an annotation like this:...
@mw66 Can you try again with the latest release? This is a good way to check type inference: ``` $ cat tests/cases/lambda.py | py2many --python=1 - Writing to: . from...
Just realized that the type on `myfunc` is present in the source, not inferred. Reading your comment again, I think you're looking at `visit_arg`/`node.arg` object. If you look at `visit_lambda`/`node.annotation`,...
After the linked PR is merged, we can address this issue in one of two ways: 1. Write a transformer in `py2many/**` (generic code) that propagates `node.annotation` to `node.args[i].annotation` 2....