Roman Yurchak

Results 606 comments of Roman Yurchak

I agree we should add an example with matplotlib (related pyodide/pyodide#1498 ). Adding support for matplotlib to the REPL is another matter, personally, I don't think it would be in...

I confirm there is this issue present when doing linouts of RGB images. For instance failed with RGB .png or .jpeg image. while it worked with a grayscale .tiff image...

If you want to do inference the easiest would likely be to convert the model to ONNX then use it in WASM with ONNX.js See the upstream issue: https://github.com/pytorch/pytorch/issues/25091 Building...

Yes, I forgot I previously answered this question in https://stackoverflow.com/a/64407516/1791279 and there is indeed a blocker on ctypes / CFFI support (https://github.com/pyodide/pyodide/issues/728) > ONNX javascript does not support all the...

Hi @MarcSkovMadsen, you would need to use the latest alpha release for this https://pyodide.org/en/0.22.0a3/console.html for now. We haven't yet done a stable version with it. Let us know if you...

That's for fiona. As for rasterio, indeed it would still need to be packaged (possibly with some of [its dependencies](https://github.com/conda-forge/rasterio-feedstock/blob/main/recipe/meta.yaml#L33) we don't yet have)

Thanks @agriyakhetarpal for taking over the maintenance!

Regarding encodings I don't remember the exact details, but indeed the overall idea was that they were taking space so utf8 + a few specific ones should be enough to...

I think I did encounter it the past, but I'm not 100% sure/remember the cause. It's raised [here](https://github.com/pyodide/pyodide/blame/0f3e5f029275482882174b20770caf00290ec4f2/src/js/pyodide.ts#L286) but in this case the error is misleading, because we are not...

Maybe related to https://github.com/pyodide/pyodide/pull/4726, see @hoodmane's comments in the code there. It looks like _module.API.loadDynlib would be calling `locateFile` after we are expecting it should no longer happen. I don't...