Beispiel #1
0
        public void StartLearningModel(Guid guid)
        {
            ILearningModel learningModel = this.GetLearningModel(guid);

            if (learningModel == null)
            {
                return;
            }

            m_workerPool.StartTask(learningModel);
        }
Beispiel #2
0
        public void StartScraper(Guid guid)
        {
            IScraper scraper = this.GetScraper(guid);

            if (scraper == null)
            {
                return;
            }

            m_workerPool.StartTask(scraper);
        }