public TreinarModeloController(DMAnaliseSentimentoContext context,
                                IConfiguration configuration)
 {
     _context       = context;
     _configuration = configuration;
 }
 public ModelBuilder(IConfiguration configuration, DMAnaliseSentimentoContext context)
 {
     _mlContext    = new MLContext(seed: 1);
     Configuration = configuration;
     Context       = context;
 }
Esempio n. 3
0
 public DataSetController(DMAnaliseSentimentoContext context) => _context = context;