Kabyanil Talukdar
Kabyanil Talukdar
Hi. I'm trying to run OpenFst on Windows. Since 1.8.1 is not available yet for Windows, this was the most recent I could find. I downloaded the repo, extracted, opened...
SymSpell.from(words, {maxDistance: 3, verbosity: 2}) taking long time to load large word dictionary
I am loading a dictionary of 163,196 words into SymSpell. It is taking more than a minute to load. If I load more than that, the Tauri app crashes. I...
Hi, I have a fairseq translation model that I'd like to ship with a tauri or electron app for local inference. I have been able to run cloud inference through...
Hello, I am using lxa_object.words_to_contexts() on a custom dataset. I am getting the following error - `ValueError: Unsupported dtype complex128` What could be the reason, and how can I fix...
I'm using the following commands to install TFOD 2. https://github.com/tensorflow/models/blob/master/research/object_detection/g3doc/tf2.md there is this specific command - python -m pip install --use-feature=2020-resolver . when i run this, the installation keeps on...
I am converting the modules of a transformer model from pytorch to tflite. Here is my conversion code - ``` sample_input = torch.randint(low=0, high=60, size =(1, 32, 512), dtype=torch.float) src_pos_module...
I am creating an Electron app where I need to run inference on some onnx models through the Node.js backend. I have installed ``` "onnxruntime-node": "^1.19.0" ``` as dependency. I...