Formerly known as Azure AI Services or Azure Cognitive Services is a unified collection of prebuilt AI capabilities within the Microsoft Foundry platform
Hi Anton Olivestam,
Thank you for sharing the detailed example — I can see why the output (especially “geldig”) is concerning, as it’s not valid Swedish and impacts overall readability.
Azure AI Translator is a neural machine translation (NMT) service that is continuously updated. Because of this, translation outputs can change over time, and quality may vary depending on the language pair and phrasing.
Additionally:
Translations are typically handled at the sentence level, without full document context
This can sometimes lead to overly literal or unnatural phrasing, or occasional incorrect tokens
At this time, there isn’t a way to lock or revert to a previous model version, so this behavior is most likely due to a backend model update rather than anything in your request.
While the base model cannot be controlled directly, there are supported approaches to improve consistency and correctness:
- Use Custom Translator
You can train a custom model with your own English–Swedish examples to ensure preferred phrasing.
- Helps avoid incorrect words like “geldig”
- Improves fluency for your specific domain
- Apply a dictionary for key terminology
If certain phrases must always be translated consistently (e.g., “account deletion”), you can enforce them using a dictionary.
- Evaluate with representative samples
Microsoft recommends validating translation quality using your own test set, since quality can vary by language pair and use case.
This helps:
Detect regressions early
- Measure improvements from customization
The behavior you’re seeing is likely due to ongoing model updates, not a configuration issue
There’s no rollback option, but
Custom Translator and dictionaries can significantly improve and stabilize output
Microsoft References Links:
- https://learn.microsoft.com/azure/ai-services/translator/overview#how-translator-works
- https://learn.microsoft.com/azure/ai-services/translator/text-translation-overview
- https://learn.microsoft.com/azure/ai-services/translator/custom-translator/overview
- https://learn.microsoft.com/azure/ai-services/translator/custom-translator/concepts/dictionaries
- https://learn.microsoft.com/en-us/legal/cognitive-services/translator/transparency-note