I am trying to run a script in google colab using the command:
! cat data/newstest2015.deen.bpe.de \
| ./marian-decoder --models wmt16_systems/de-en/model.npz \
--vocabs wmt16_systems/de-en/vocab.{de,en}.json --dim-vocabs 85000 85000 \
--type amun --dim-emb 500 \
> data/newstest2015.deen.bpe.out
but I am getting this error: /bin/bash: ./marian-decoder: No such file or directory
. I have the script marian-decoder
in that folder.
I also tried to add the full path to the script but didn't work.