Beispiel #1
0
 public DefaultBotsService(IUnitOfWork data,
                           INeuralNetworkService neuralNetworkService,
                           IIntentionRecognitionService botService) : base(data)
 {
     this._neuralNetworkService = neuralNetworkService;
     this._botService           = botService;
 }
 public NeuralNetworkController(INeuralNetworkService neuralNetworkService, IMapper mapper,
                                ILogger <NeuralNetworkController> logger)
 {
     this.neuralNetworkService = neuralNetworkService;
     this.mapper = mapper;
     this.logger = logger;
 }
Beispiel #3
0
 public NeuralNetworkApplicationService(INeuralNetworkService neuralNetworkService,
                                        IRepository repository,
                                        IMapper mapper)
 {
     _neuralNetworkService = neuralNetworkService;
     _repository           = repository;
     _mapper = mapper;
 }
Beispiel #4
0
 public RecognitionController(IFaceRecognitionService faceRecognitionService,
                              INeuralNetworkService neuralNetworkService, IMapper mapper,
                              ILogger <RecognitionController> logger)
 {
     this.faceRecognitionService = faceRecognitionService;
     this.neuralNetworkService   = neuralNetworkService;
     this.mapper = mapper;
     this.logger = logger;
 }
 public IntentionRecognitionService(IUnitOfWork data,
                                    INeuralNetworkService neuralNetworkService,
                                    ILanguageProcessingService languageProcessinService, ITrainingDataService trainingDataService)
     : base(data)
 {
     this._neuralNetworkService     = neuralNetworkService;
     this._languageProcessinService = languageProcessinService;
     this._trainingDataService      = trainingDataService;
 }
Beispiel #6
0
 public NeuralNetworkController(ILogger <NeuralNetworkController> logger, IMapper mapper,
                                INeuralNetworkService neuralNetworkService,
                                IPeopleService peopleService)
 {
     this.logger = logger;
     this.mapper = mapper;
     this.neuralNetworkService = neuralNetworkService;
     this.peopleService        = peopleService;
 }
        public SpeechDisordersDetector(
            IAudioService audioService,
            IFileWorkerService fileWorkerService,
            IFeatureExtractorService featureExtractorService,
            INeuralNetworkService neuralNetworkService,
            IBaseWorker baseWorker)
        {
            _audioService            = audioService;
            _fileWorkerService       = fileWorkerService;
            _featureExtractorService = featureExtractorService;
            _neuralNetworkService    = neuralNetworkService;
            _baseWorker = baseWorker;

            InitializeComponent();
        }
Beispiel #8
0
        public IntentionRecognitionHub(INeuralNetworkService neuralNetworkService,
                                       IIntentionRecognitionService intentionRecognitionService)
        {
            if (neuralNetworkService == null)
            {
                throw new ArgumentNullException(nameof(neuralNetworkService));
            }
            this._neuralNetworkService = neuralNetworkService;

            if (intentionRecognitionService == null)
            {
                throw new ArgumentNullException(nameof(intentionRecognitionService));
            }
            this._intentionRecognitionService = intentionRecognitionService;
        }
Beispiel #9
0
 public NeuralController(INeuralNetworkService neuralnetService)
 {
     _neuralNetService = neuralnetService;
 }