我有以下几种型号:
class ApiUser(models.Model):
apikey = models.CharField(max_length=32, unique=True)
class ExtMethodCall(models.Model):
apiuser = models.ForeignKey(ApiUser)
method = models.CharField(max_length=100) #method name
units = models.PositiveIntegerField() #how many units me
Google translate提供了以下信息:
Will the text I send to the Cloud Translation API, the results, or other information about the request itself, be stored on Google servers? If so, how long and where is the information kept?
When you send text to Cloud Translation API, we must store that text for a short per
我对RASA框架很陌生。我正在尝试开发一个西班牙NLU模型,它能够将用户消息分类为4个不同的意图(“翻译”、“定义”、“同义词”和“发音”)和识别实体(在这种情况下,我的实体可能是每个单词或表达式)。
例如,用户可以提供以下输入:
"Cómo se traduce estación de tren al inglés“(如何将火车站翻译成英文)
因此,单词或表达式可以是任何一个或多个单词,它们可以有任何长度。解决这个问题最好的方法是什么?我可以使用什么实体提取器,我应该尝试什么参数?
提前感谢!