Results 3 comments of garg

Understood. The HTML5 Pointer Events API that detects touch/pen pressure is supported by IE and Edge. Firefox and Chrome are supposed to support it this year. This would be a...

For mac, I used `onnxruntime-silicon` instead of `onnxruntime-gpu` Also replaced: `device = "cuda" if torch.cuda.is_available() else "cpu"` with `device = "cuda" if torch.cuda.is_available() else "mps"` And now the generation process...

I got it working on my mac m1. First I replaced onnxruntime-gpu with onnxruntime-silicon in requirements.txt and then run a pip install. Then I made the following change: ``` -device...