Pierre Snell

Results 21 comments of Pierre Snell

Hi @kauedg, Thanks a lot for this answer! with ```python for version in app.routes: if type(versions) is starlette.routing.Mount: # url + version.name ``` I will be able to at least...

Hi @erictraut, Thanks a lot for the complete response. Indeed the problem came from `microsoft/python-type-stubs` missing. Adding that (especially the pandas one) removed all the problems related with pandas (most...

Hello, Sorry to bump this old thread but the error came again... I'm trying to use CI/CD (Pyright in github actions) and I do not have the same results in...

I tried to solve the problem, and I'm using the latest (master branch) version of python-type-stubs. Still getting the same error... Either pyright is not using the additional typings, or...

Hello @bschnurr, thanks for the fast reply. I do not have any `python.analysis.xxxx` in my vscode config, all is in a `pyrightconfig.json` file at the root of the repo. As...

Hello @bschnurr, I re-installed my venv from scratch and pull all latest `python-type-stubs` after reading the comment and it seems I still have differences between the two. Could be from...

I also have the same problem and I can reproduce with the dummy example above. Installed with poetry : ``` name : ipywidgets version : 7.6.5 name : pandas-profiling version...

Hello @awaelchli, For my use case, your solution (`wandb.init` first) is perfectly fine and it's easy enough so everyone can do it and it let you focus on bigger problems....

@ayooshkathuria I'm sure you know it but it worth a try. Pytorch have a really nice ImageLoader class, just assets that the images are well organized in a folder it...

Hi @morgoth95, Ok as I understood you're converting all models to onnx and then compile it with any optimizer and check which one is the best. I don't know how...