Michael Bryan

Results 303 comments of Michael Bryan

In terms of documentation and examples, I think most of this would be done in doc-comments on the corresponding procedural macros. That way we can include loads of examples which...

After playing around with Forge a bit more, I think the extra type safety we get by `Transform` being generic over its inputs is actually making our life harder and...

Steps to reproduce: ```shell $ cd bindings/web/ $ yarn test yarn run v1.22.5 $ jest PASS dist/Shape.test.js Finished dev [unoptimized + debuginfo] target(s) in 0.36s Running `target/debug/rune build /home/michael/Documents/hotg-ai/rune/examples/noop/Runefile.yml --quiet`...

I've created a ticket for this upstream: https://github.com/tensorflow/tfjs/issues/5532.

As we've discussed on Slack, it sounds like the way TensorFlow Lite wants you to provide buffers goes directly against how WebAssembly likes its linear memory to be used. In...

@saidinesh5 would this be covered by https://github.com/tensorflow/tensorflow/issues/46766? In particular this bit: > The tensor input and output C APIs should have options to use input tensors in-place, from binary blobs,...

@f0rodo do we still want to do this? It seems like a pain to integrate all the ML frameworks into the `rune` CLI and automatically convert models between formats.

At the moment we generate a `pipeline` lambda like this: ```rs let pipeline = move || { let _guard = hotg_runicos_base_wasm::PipelineGuard::default(); log::debug!("Reading data from \"audio\""); let audio_0: Tensor = audio.generate();...

@Mohit0928, I disagree that Python is easier to implement tokenizer algorithm than Rust... Rust actually has better support for manipulating strings, especially when non-ASCII characters are involved, so it may...