Jingzhao Ou
Jingzhao Ou
I am interested in building things from scratch to get better understanding how things work together. For example, with the `examples/react-ts-vite` example, I hope to point to my local `c2ps`...
https://github.com/haginara/ssh_config/blob/be893bc61387f75d56467e0cb50cd38aa7478d6f/ssh_config/cli.py#L251 should be ```python for attr, _ in host.attributes().items(): ```
I have an application to need to get the audio stream from microphone with a sample rate of 16K, which is not supported on my MacBook. I wonder if there...
The offline flow has no warning. However, when I ran the streaming flow, I got the following warnings: ``` 2023-05-25 00:21:23.008301845 [W:onnxruntime:, session_state.cc:1136 VerifyEachNodeIsAssignedToAnEp] Some nodes were not assigned to...
I changed `GetSessionOptionsImpl()` in `session.cc` to use OpenVINO. ```cpp Ort::SessionOptions sess_opts; sess_opts.SetIntraOpNumThreads(num_threads); sess_opts.SetInterOpNumThreads(num_threads); sess_opts.SetGraphOptimizationLevel(ORT_DISABLE_ALL); OrtOpenVINOProviderOptions options; options.device_type = "CPU_FP32"; sess_opts.AppendExecutionProvider_OpenVINO(options); return sess_opts; ``` After that, I ran into errors like...
I don't see Llama Guard models are listed in the output of `tune ls`. Since meta-llama/Llama-Guard-3-1B is "a fine-tuned Llama-3.2-1B pretrained model", I wonder if I can use one of...
### System Info Versions of relevant libraries: [pip3] mypy-extensions==1.0.0 [pip3] numpy==1.26.4 [pip3] onnx==1.17.0 [pip3] onnxruntime==1.20.1 [pip3] optree==0.13.1 [pip3] pytorch-triton==3.0.0+72734f086 [pip3] torch==2.6.0a0+df5bbc09d1.nv24.11 [pip3] torch_tensorrt==2.6.0a0 [pip3] torchao==0.7.0 [pip3] torchaudio==2.5.0a0+265bc5c [pip3] torchaudio==2.5.0a0+265bc5c [pip3]...
### System Info CPU: x86_64 GPU: L4 GPU memory: 24GB OS: Ubuntu ### Who can help? I checked out `v0.15.0` and was able to build successfully using `bash build.sh`. However,...
I tried to export the Parakeet nemo model to ONNX files. My code is like ``` self.model.export(str(model_onnx_path)) ``` It was working a while back but with the latest NeMo, I...