I am trying to run this code in google colab.
%%bash
./Starspace/starspace train \
-trainFile "data/prepared_train.tsv" \
-model model/stackoverflow_duplicate \
-trainMode = 3 \
-adagrad true \
-ngrams 1 \
-epoch 5 \
-dim 100 \
-similarity "cosine" \
-minCount 2 \
-verbose true \
-fileFormat labelDoc \
-negSearchLimit 10 \
-lr 0.05 \
-thread 10
But every time I get this error Provided argument without a dash!.
And some instruction about how to use. Actually I tried to use sample codes in Facebook Github repository, but I get same error.
Thanks for any advice.