Sevag H

Results 140 comments of Sevag H
trafficstars

When I inspect their config.ini, I notice ll does have 0 lookahead (df_lookahead and conv_lookahead), which does indicate "low latency" On the other hand, LL variant has larger weights/more layers...

I used the Rust code/libDF, not the Python code, so I can't help you, sorry.

The architecture is a bit more complicated. There are 3 sub-models in the onnx tarball as you've seen: ``` tmp/export/enc.onnx tmp/export/erb_dec.onnx tmp/export/df_dec.onnx ``` All 3 work together to implement the...

I'm having the same issue building for Linux x86_64 on an x86_64 computer: ``` /home/sevagh/repos/basicpitch.cpp/vendor/onnxruntime/onnxruntime/core/providers/cpu/math/element_wise_ops.cc: In member function ‘onnxruntime::common::Status onnxruntime::Min_6::Compute(onnxruntime::OpKernelContext*) const [with T = float]’: /home/sevagh/repos/basicpitch.cpp/vendor/onnxruntime/onnxruntime/core/providers/cpu/math/element_wise_ops.cc:708:56: error: no matching function...

What version of Eigen are you using? I was able to bypass this issue by pointing Onnxruntime to use a local copy of Eigen which is newer than my system...

Makes sense to me - if you delete your outdated system Eigen3, onnxruntime will download a newer version which supports this template

> I encountered this issues too. It turns out the cmake scripts are a bit flawed. If egien is found on the system it will always use that. It will...

I don't think you should close the issue, given that we all needed to use workarounds. The onnxruntime project itself needs to merge a fix first, right?

I am on Linux so I get an issue with `WIL` (windows implementation libraries)? ``` if(onnxruntime_USE_VCPKG) find_package(wil CONFIG REQUIRED) set(WIL_TARGET "WIL::WIL") else() include(wil) # FetchContent endif() ```

Finally I settled for removing my system Eigen3, which will make "use_preinstalled_eigen" work correctly 🤷