diff --git a/BotSharp.MachineLearning/CRFLite/Decoder/DecoderOptions.cs b/BotSharp.MachineLearning/CRFLite/Decoder/DecoderOptions.cs
index 86e7ff77..0bc034d9 100644
--- a/BotSharp.MachineLearning/CRFLite/Decoder/DecoderOptions.cs
+++ b/BotSharp.MachineLearning/CRFLite/Decoder/DecoderOptions.cs
@@ -11,13 +11,11 @@ namespace BotSharp.MachineLearning.CRFLite.Decoder
///
///
///
- [Required]
public string ModelFileName;
///
///
///
- [Required]
public string InputFileName;
///
diff --git a/BotSharp.MachineLearning/CRFLite/Encoder/EncoderOptions.cs b/BotSharp.MachineLearning/CRFLite/Encoder/EncoderOptions.cs
index d7c5d3e0..35ae1fb6 100644
--- a/BotSharp.MachineLearning/CRFLite/Encoder/EncoderOptions.cs
+++ b/BotSharp.MachineLearning/CRFLite/Encoder/EncoderOptions.cs
@@ -40,19 +40,16 @@ namespace BotSharp.MachineLearning.CRFLite.Encoder
///
/// Template file name
///
- [Required]
public string TemplateFileName { get; set; }
///
/// Training corpus file name
///
- [Required]
public string TrainingCorpusFileName { get; set; }
///
/// Encoded model file name
///
- [Required]
public string ModelFileName { get; set; }
///