Maxwell Flitton

Results 19 issues of Maxwell Flitton

### Release notes feature title ... Release notes description / summary ... Any text between these two tags will be automatically pulled into the platform release notes

### Description I'm building a python crate in Rust using PyO3. I have managed to get cibuildwheel working in github actions for Windows, Mac, and Linux for a range versions...

**Describe the bug** I've trained a simple linear model in pytorch. I then export it to ONNX. Calling from the ONNX library it works fine. However, when trying to call...

Thank you for submitting this pull request! We appreciate you spending the time to work on these changes. ## What is the motivation? Provide information on the motivation for why...

Thanks for creating such a great library. I went through the math in the README and then created some simple data that would mimic the decision tree in the README...

I'm building out a Rust app in Docker using the `tch-rs` with the following configuration: ```Dockerfile FROM rust:latest WORKDIR /app RUN mkdir /app/rust_project_one/ RUN mkdir /app/rust_project_two/ RUN apt-get update RUN...

I have the following code: ```rust #[tokio::main(flavor="current_thread")] async fn main() { use std::os::wasi::io::FromRawFd; let std_listener = unsafe { StDTcpListener::from_raw_fd(3) }; std_listener.set_nonblocking(true).unwrap(); println!("Server listening on port 8080"); } ``` It compiles...

There's been some changes in the API, however, I'm getting the same error. My `Cargo.toml` has the following: ``` wasm-bindgen = { version = "0.2", features = ["serde-serialize"] } wasm-bindgen-futures...

Thank you for submitting this pull request! We really appreciate you spending the time to work on these changes. ## What is the motivation? To update the ML engine to...