diff --git a/src/Microsoft.ML.Data/Dirty/PredictorBase.cs b/src/Microsoft.ML.Data/Dirty/PredictorBase.cs index e9d02db58b..774dfc3411 100644 --- a/src/Microsoft.ML.Data/Dirty/PredictorBase.cs +++ b/src/Microsoft.ML.Data/Dirty/PredictorBase.cs @@ -19,7 +19,7 @@ public abstract class PredictorBase : IPredictorProducing { public const string NormalizerWarningFormat = "Ignoring integrated normalizer while loading a predictor of type {0}.{1}" + - " Please contact tlcsupp for assistance with converting legacy models."; + " Please go to https://aka.ms/MLNetIssue for assistance with converting legacy models."; protected readonly IHost Host; diff --git a/src/Microsoft.ML.Maml/MAML.cs b/src/Microsoft.ML.Maml/MAML.cs index 3f5b5db50a..231aac4a74 100644 --- a/src/Microsoft.ML.Maml/MAML.cs +++ b/src/Microsoft.ML.Maml/MAML.cs @@ -183,16 +183,16 @@ internal static int MainCore(TlcEnvironment env, string args, bool alwaysPrintSt if (count == 0) { // Didn't recognize any of the exceptions. - ch.Error(MessageSensitivity.None, "***** Unexpected failure. Please contact 'tlcsupp' with details *****"); + ch.Error(MessageSensitivity.None, "***** Unexpected failure. Please go to https://aka.ms/MLNetIssue and register the error details *****"); if (isDumpSaved) { - ch.Error(MessageSensitivity.None, "***** Error log has been saved to '{0}', please send this file to 'tlcsupp' *****", + ch.Error(MessageSensitivity.None, "***** Error log has been saved to '{0}', please register the error at https://aka.ms/MLNetIssue *****", dumpFilePath); } } else if (isDumpSaved) { - ch.Error(MessageSensitivity.None, "Error log has been saved to '{0}'. Please send this file to 'tlcsupp' if you need assistance.", + ch.Error(MessageSensitivity.None, "Error log has been saved to '{0}'. please register the error at https://aka.ms/MLNetIssue", dumpFilePath); }