You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi Team,
I have a question. I am trying to translate a column which has blanks in between. I am using EasyMT and its giving an error. won't it work if there is a blanks or missing in between the rows of a column?
Thanks
Srinivas
The text was updated successfully, but these errors were encountered:
Hi @sriprad
You must make sure that all elements in your column are strings. The error shows that some cells are of type float, which does not work.
So replace these cells with an empty string ''
df_samples['translated_text'] = model.translate(df_samples['Сообщение об ОС поступления'], source_lang='ru', target_lang='en')
this is what i am currently doing . Anything missing?
Hi Team,
I have a question. I am trying to translate a column which has blanks in between. I am using EasyMT and its giving an error. won't it work if there is a blanks or missing in between the rows of a column?
Thanks
Srinivas
The text was updated successfully, but these errors were encountered: