TimYao18

Results 38 comments of TimYao18

Can the /tmp/asitop_powermetrics* file be automatically deleted after KeyboardInterrupt? I think this would be useful.

I also face this issue, so I am adding comments here. `RuntimeError: PyTorch convert function for op 'max_pool2d_with_indices' not implemented.` How to reproduce: 1. Download [Resnet ONNX model](https://github.com/onnx/models/blob/main/vision/classification/resnet/model/resnet152-v1-7.onnx) 2. Convert...

```python import onnx from onnx2pytorch import ConvertModel import torch model_name = 'resnet152-v1-7.onnx' onnx_model = onnx.load(model_name) pytorch_model = ConvertModel(onnx_model) # Example input, needed by jit tracer. example = torch.rand(1, 3, 224,...

Are the poses converted into OpenGL coordinate system from ARKit `arframe.camera.transform` when recording videos?

Training never ends unless you stop it. If you means running COLMAP to convert the `transforms.json`, you have to download COLMAP with CUDA and replace the default one no CUDA...

YES, I tried with SE on Mochi Diffusion works fine. So this might still the python CLI or Swift CLI issue? I will continue to try this.

Thank you for your notice. I fallback my diffusers project to older version and the controlnet works great with NerualEngine.

Its about the transformer. https://github.com/huggingface/transformers/issues/1083

Sorry but I use this issue for questioning: ### Why .mlpackage format no need the vocab.json & merges.txt file? I found .mlmodelc and diffusers format both need these files but...