Jackson Hall

Results 18 comments of Jackson Hall

FYI, seems like `client.analysis.get_cloud_evaluation()` is not implemented (though it says it is in the readme): `AttributeError: 'Client' object has no attribute 'analysis'`

> If your datasets differ from the generic scenes, you can further `re-parameterized training` for higher performance. The docs [here](https://github.com/AILab-CVC/YOLO-World/blob/master/docs/reparameterize.md) are pretty unclear at step 3. Could you please clarify...

![image](https://github.com/probablykasper/date-picker-svelte/assets/25040219/028b5830-6556-4a32-92a3-48498e01a982)

Here's my current workaround fwiw: ```svelte :global(.untilDate .date-time-field > div) { right: 0px !important; } ``` It would be really nice to get fine grain control of other styles for...

I'm having the same issue. Here is with `Use Import Optimizer` - definitely seems to be some kind of race condition: https://github.com/user-attachments/assets/2ca9a112-493f-4627-a935-058417e15aee Unchecking the import optimizer option seems to solve...

MRE with the [new generics syntax](https://peps.python.org/pep-0695/): ```py # temp.py from typing_extensions import get_args class Foo[T = str]: x: T f = Foo() try: reveal_type(f.x) except NameError: pass print(get_args(f)) ``` ```sh...

@PawelPeczek-Roboflow will 3.11 work? What latest python version is supported?

> Easiest way to Svelte 5 is adding this to your ~lock~ `package.json` file: > > ``` > "overrides": { > "svelte-markdown": { > "svelte": "^5.0.0" > } > }...