-
According to README:
> Currently, we export components (encoder, decoder) to Caffe2 separately and beam search is implemented in C++. In the near future, we will be able to export the beam search as …
-
### Problem Statement
Current LLM development is moving toward structured output. It's proved to improve model performance in various tasks. Also when training with structured output, we can explore …
-
(kwav2vec_env_py3_8) root@4aa7addb6281:/home# bash script/inference/evaluate_multimodel.sh
INFO:__main__:Namespace(add_weight=0.5, additional_output=False, autoregressive=False, batch_size=8, batch_s…
-
Hi,
is/was the beam search (ever) functional?
For me it surely doesnt work out of the box, but also after trying to modify a few things I am still struggling to make it work. Was this ever functio…
-
after enter `mingw32-make `, got following:
```
[ 1%] Building CXX object CMakeFiles/asr_test.dir/src/am/am.cpp.obj
[ 3%] Building CXX object CMakeFiles/asr_test.dir/src/asr/asr.cpp.obj
[ 5%]…
-
Currently, we are using weighted_pick to select outputs:
```python
def weighted_pick(weights):
t = np.cumsum(weights)
s = np.sum(weights)
return(int(np.searchs…
-
nice code!!nice change!!! , i want to add a beam search in this code ,but i am new to tensorflow, it would be help that you add the beam search . thanks a lot!!!!
-
investigate beam search to do a greedy search of the HS Code tree.
-
i really love the results of training my custom dataset.its simple and doesnt consume alot of gpu as no extra gpu is needed for dev and validation dataset.
-
A next step for better generation is to implement a beam search for the generation. An example of it can be seen on the huggingface repo [here](https://github.com/huggingface/transformers/blob/9911729…