Update README.md
Browse files
README.md
CHANGED
@@ -30,4 +30,7 @@ def translate(input_text, src_lang, trg_lang):
|
|
30 |
return tokenizer.decode(generated_tokens, skip_special_tokens=True)[len(prompt):]
|
31 |
|
32 |
translation = translate("set the temperature on my <a>thermostat<a> to <b> 29 degrees <b>", "en", "de") # translation: stell die temperatur auf meinem <a> thermostat <a> auf <b> 29 grad <b>
|
33 |
-
```
|
|
|
|
|
|
|
|
30 |
return tokenizer.decode(generated_tokens, skip_special_tokens=True)[len(prompt):]
|
31 |
|
32 |
translation = translate("set the temperature on my <a>thermostat<a> to <b> 29 degrees <b>", "en", "de") # translation: stell die temperatur auf meinem <a> thermostat <a> auf <b> 29 grad <b>
|
33 |
+
```
|
34 |
+
|
35 |
+
## Model fine tuning code
|
36 |
+
https://github.com/Samsung/MT-LLM-NLU/tree/main/BigTranslateFineTuning
|