Michael Bryan

Results 213 issues of Michael Bryan

One of the hackers [on Discord](https://discord.com/channels/843552361212805180/872328451728748544/888884452695109663) caused the Rust compiler to OOM because they pasted 99,000 labels into their Runefile. Ideally people would use resources for something like this, but...

good first issue
category - intuitiveness
category - performance
effort - easy
area - proc blocks

This is something both @jacekpie and @kthakore ran into. Out of the box we are unable to compile `wasm3-sys` because its build script requires the `bindgen` CLI tool to be...

Allow people to bundle both TensorFLow and TensorFlow Lite models inside a Rune, switching between the two based on what is supported by the runtime. CC: #193.

We currently can't use the web bindings out of the browser because the `tfjs-tflite` package uses browser-specific APIs (e.g. `self` and `Blob`). It'd be *really* nice if we could run...

category - bug
area - runtime

category - enhancement
effort - easy
area - runtime

Each step in a Rune needs to explicitly mention the type of its outputs. ```yaml pipeline: content_image: capability: IMAGE outputs: - type: u8 dimensions: [1, 384, 384, 3] ``` However,...

good first issue
category - intuitiveness
priority - low
effort - easy
area - runefile

When you've got multiple serial outputs all the end user sees is "channel 1 said X", "channel 2 said Y", and so on. It'd be nice if you could provide...

category - enhancement
category - intuitiveness
priority - on-demand
area - runefile
area - runtime

@saidinesh5 mentioned that when we start really taking performance seriously (i.e. customers processing video data in real time) we'll need to instrument our binary to know how long a logical...

category - performance
priority - on-demand
area - runtime

We need to run `xtask dist` targeting the 64-bit ARM Linux (i.e. raspberry pi) as part of our nightly release process. I suspect we'll have the same issues getting `tflite`...

area - infrastructure

@SamLeroux is looking for a plain FFT proc block. At the moment we have a [STFT proc block](https://en.wikipedia.org/wiki/Short-time_Fourier_transform) ([src](https://github.com/hotg-ai/rune/tree/74e364a4beae9413da93375cf280aca0eff3e029/proc-blocks/fft)), but that's not the same thing.