osobh and Claude Opus 4.6
85b77d49f2
Add audio neural layers and model architectures for ClawSample integration
...
New nn layers:
- ConvTranspose1d with stride, padding, output_padding (9 tests)
- LSTM/BiLSTM with multi-layer support and hidden state (10 tests)
Audio source separation:
- Demucs ONNX inference with segmented overlap-add processing
- Native HtDemucs architecture (encoder/decoder with BiLSTM bottleneck)
- StemType enum: vocals, drums, bass, other, piano, guitar
Audio generation:
- Stable Audio Open ONNX inference scaffold
- GenerationParams (prompt, duration, steps, cfg_scale, seed)
ONNX export scripts:
- export_demucs_onnx.py — Demucs v4 to ONNX with segment chunking
- export_stable_audio_onnx.py — Stable Audio Open components
- export_mert_onnx.py — MERT music understanding transformer
Co-Authored-By: Claude Opus 4.6 (1M context) <[email protected] >
2026-04-17 12:27:12 -07:00
osobh and Claude Opus 4.6
5fe8c67b04
Fix rtx-serving-api binary: create main.rs entry point
...
The binary path pointed to non-existent src/bin/server.rs.
Created proper src/main.rs with tokio async entry point that:
- Initializes tracing
- Loads config from RTX_HOST/RTX_PORT/RTX_TIMEOUT env vars
- Instantiates ServingServer and calls serve()
Fixed Cargo.toml: path = "src/bin/server.rs" → path = "src/main.rs"
Validated: binary builds, starts, health endpoint returns healthy,
inference endpoint returns mock completions.
Co-Authored-By: Claude Opus 4.6 (1M context) <[email protected] >
2026-04-12 20:16:38 -07:00
osobh and Claude Opus 4.6
02d382d5f6
style: apply rustfmt across all crates and demos
...
Consistent formatting pass: line wrapping, import sorting, trailing
whitespace removal, let-chain indentation, merged derive attributes,
and unsafe block reformatting.
Co-Authored-By: Claude Opus 4.6 (1M context) <[email protected] >
2026-04-12 07:01:58 -07:00