Cyrill Küttel

Results 55 comments of Cyrill Küttel

@fynnmaarten Can you review my pull request?

It could be incompatible versions. Try using [pytorch 1.11](https://pytorch.org/get-started/previous-versions/#v1110) to train / export the model. Then change [this line](https://github.com/fynnmaarten/flutter_pytorch_mobile/blob/3a8848d6ef726e2d491d79a9f355f7f7171b71dc/ios/pytorch_mobile.podspec#L24), the iOS Libtorch version to `1.10`. After that, make sure to...

I will take up the challenge. For Object Detection it's a bit trickier, because you'll essentially have to implement your own draw function (for the bounding boxes). This is commonly...

@jimjam-slam Over the past week, I've read the source code of [flutter_pytorch_mobile](https://github.com/fynnmaarten/flutter_pytorch_mobile) as well as the [android-demo-app](https://github.com/pytorch/android-demo-app/tree/master/ObjectDetection) and [ios-demo-app](https://github.com/pytorch/ios-demo-app/tree/master/ObjectDetection). The later being two almost identical copies, simply implemented in a...

@jimjam-slam I'm happy to see this is useful to anyone, I spent a lot of time tracking down this issue. Yes the plugin uses [LibTorch](https://github.com/fynnmaarten/flutter_pytorch_mobile/blob/3a8848d6ef726e2d491d79a9f355f7f7171b71dc/ios/pytorch_mobile.podspec#L24) as far as i can...

That's a very peculiar error. I always assumed that training with CUDA backend does not change the actual structure of the exported model. What I do know, is that there...

@jimjam-slam Actually that was my mistake, i thought the pytorch version was higher than that. I'm very sorry. >Would updating the plugin be as simple as forking, updating those two...

Ah, the struggles of Libtorch-Lite versioning. @andynewman10 I was wondering as well why Libtorch 2.1.0 was not advertised. I asked this in [discuss.pytorch.org](https://discuss.pytorch.org/t/whos-running-libtorch-2-x-on-mobile/191482/3?u=cyrill) as well. The 2.1.0 binaries clearly exist:...

Can't know for sure. The iPhone I use for testing (iPhone 6) only supports up until iOS 12.

I tried running on simulator. Still returns error, but different one. - I created a new flutter plugin with ffi ``` flutter create --template=plugin_ffi --platforms=android,ios libtorch_test_version ``` added dependencies (in...