Ejemplo n.º 1
0
def get_filters(config):
    filters = []
    if 'filters' in config:
        for filter_config in config['filters']:
            messenger = Messenger(config['messaging'])
            messenger.set_incoming(filter_config['alias'])
            messenger.set_outgoing(filter_config['outputs'])

            filters.append(Filter(filter_config, messenger))

    return filters
Ejemplo n.º 2
0
def get_models(config):
    models = []
    if 'models' in config:
        for model_config in config['models']:
            messenger = Messenger(config['messaging'])
            messenger.set_incoming(model_config['alias'])
            messenger.set_outgoing(model_config['outputs'])

            if 'preprocessor_filename' in model_config and model_config[
                    'preprocessor_filename'] != '':
                preprocessor_path = os.path.join(
                    os.getcwd(), model_config['preprocessor_filename'])
                print('Loading preprocessor from path "%s"' %
                      preprocessor_path)
                preprocessor = import_from_file(
                    model_config['preprocessor_classname'], preprocessor_path)
                constructor = getattr(preprocessor,
                                      model_config['preprocessor_classname'])
                instance = constructor()
                preprocessor = AIPreprocessor(model_config, instance)

            # No preprocessor provided? That's ok, we'll just use the default one and pass data through without preprocessing.
            else:
                preprocessor = AIPreprocessor(None, None)

            # TODO: Make it more obvious that models can be either on-premise or exist as APIs
            if 'module_file_path' in model_config:
                module = import_from_file(
                    model_config['module_classname'],
                    os.path.join(os.getcwd(),
                                 model_config['module_file_path']))
                constructor = getattr(module, model_config['module_classname'])

                #  Used for ONNX models
                if 'model_path' in model_config and model_config[
                        'model_path'].strip() != '':
                    instance = constructor(model_config)
                else:
                    instance = constructor()
                models.append(
                    Model(model_config, instance, messenger, preprocessor))
            else:
                instance = None
                models.append(
                    APIModel(model_config, instance, messenger, preprocessor))

    return models
Ejemplo n.º 3
0
def get_custom_entities(pipeline):
    custom_entities = []
    if 'custom_entities' in pipeline:
        for config in pipeline['custom_entities']:
            messenger = Messenger(pipeline['messaging'])
            messenger.set_incoming(config['alias'])
            messenger.set_outgoing(config['outputs'])

            module = import_from_file(
                config['classname'],
                os.path.join(os.getcwd(), config['filename']))
            constructor = getattr(module, config['classname'])
            instance = constructor()

            custom_entities.append(CustomEntity(config, instance, messenger))

    return custom_entities
Ejemplo n.º 4
0
def get_data_sources(config):
    data_sources = []
    if 'data_sources' in config:
        for source_config in config['data_sources']:
            messenger = Messenger(config['messaging'])
            # Only need to set outputs for messenger, since data sources don't receive external messages
            messenger.set_outgoing(source_config['outputs'])

            if source_config['type'] == 'TwitterStreamingAPI':
                data_sources.append(Twitter(source_config, messenger))

            if source_config['type'] == 'FlatFileDataSource':
                # Include the base path (the location of the config file), in case the flat file's path is relative to the config file
                #source_config['base_path'] = config['base_path']
                data_sources.append(FlatFile(source_config, messenger))

            if source_config['type'] == 'StreamingImagesAPI':
                data_sources.append(
                    StreamingImagesAPI(source_config, messenger))

    return data_sources