fliprs
fliprs

Reputation: 47

How to train universal sentence encoder from scratch

I want to use universal sentence encoder but the problem is that Google's pretrained versions doesn't support my language (not even multilingual version: https://tfhub.dev/google/universal-sentence-encoder-multilingual/3)

Is there any tutorial or way how to train my own universal sentence encoder from scratch with my own corpus?

Upvotes: 1

Views: 1304

Answers (1)

Dor
Dor

Reputation: 186

According to the issue opened here(https://github.com/tensorflow/hub/issues/36) it seems that the model was not released to open source. You need to build it by yourself or fine-tuned to specific task.

Upvotes: 4

Related Questions