jnnks
jnnks
There seems to be missing support for Arduino Micro. It seems to be similar to Sparkfun Pro Micro, so most of the implementation might be c&p. The blink example already...
I'm having trouble making rustler compile my crate in `release` mode. `MIX_ENV` does not seem to have any impact. Is there a switch I can use somewhere? On version 0.25.0
GPU is a GTX1060 Driver Version: 515.48.07 CUDA Version: 11.7 `$ XLA_TARGET=cuda111 XLA_TARGET=cuda mix run -e " EXLA.jit(&( &1 ), [Nx.tensor([1])])"` ``` 15:53:47.914 [error] GenServer EXLA.Client terminating ** (RuntimeError) Could...
The Readme says that `The output is a (125x13x13) tensor...`, which is correct for the downloaded model. However all references and examples I found have a different output shape `(13x13x125)`....
The following minimal sample results in the mentioned error using `tectonic -X build`: ```tex \documentclass{article} \usepackage{dfdfdfdf} \begin{document} hello \end{document} ``` When removing the `\usepackage` command it compiles. Since the package...
I would like to decode the inputs for the test cases, for example `test/cases/node/test_resize_downsample_scales_cubic/test_data_set_0/input_0.pb` to see if a decoder is implemented correctly. Is that possbile? Models can be decoded with...
The code is stuck in a loop to wait for the TV to power on, but it's already running. The [property change](https://github.com/kdschlosser/samsungctl/blob/90756acc7ac210e37bbfa23dccf1ca3113e55154/samsungctl/remote_websocket.py#L61) never occurrs. The event loop does not seem...
The websocket implementation with python does not work with the self signed ssl certificate of the TV. The connection created [here](https://github.com/kdschlosser/samsungctl/blob/90756acc7ac210e37bbfa23dccf1ca3113e55154/samsungctl/remote_websocket.py#L97) does not return a response to the TV. Naturally,...
WIP Implementation for [Resize Operator](https://github.com/onnx/onnx/blob/main/docs/Operators.md#resize) fixes https://github.com/elixir-nx/axon_onnx/issues/34
The model [Tiny YOLOv3](https://github.com/onnx/models/tree/main/vision/object_detection_segmentation/tiny-yolov3) raises an ArgumentError when trying to import it: ```elixir ** (ArgumentError) unsupported "Resize" (axon_onnx 0.1.0) lib/axon_onnx/deserialize.ex:1595: AxonOnnx.Deserialize.recur_nodes/2 (elixir 1.13.2) lib/enum.ex:2396: Enum."-reduce/3-lists^foldl/2-0-"/3 (axon_onnx 0.1.0) lib/axon_onnx/deserialize.ex:44: AxonOnnx.Deserialize.graph_to_axon/2 (axon_onnx...