Hi,
If your training set size is small, you can improve performance by increasing the learning rate (for example using -lr 0.5) as well as the number of epochs (for example using -epoch 20). You can also try to increase the dimension of the word embeddings (for example using -dim 50).
Finally, you can probably speedup training and testing time by using the hierarchical softmax instead of the softmax (using -loss hs).
Best,
Edouard.