mirror of
https://github.com/deepset-ai/haystack.git
synced 2026-01-08 21:28:00 +00:00
21 lines
649 B
Python
21 lines
649 B
Python
import logging
|
|
|
|
import pandas as pd
|
|
from haystack.schema import Document, Label, MultiLabel, BaseComponent
|
|
from haystack.finder import Finder
|
|
from haystack.pipeline import Pipeline
|
|
from haystack._version import __version__
|
|
|
|
pd.options.display.max_colwidth = 80
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
logging.getLogger('farm').setLevel(logging.WARNING)
|
|
logging.getLogger('farm.utils').setLevel(logging.INFO)
|
|
logging.getLogger('farm.infer').setLevel(logging.INFO)
|
|
logging.getLogger('transformers').setLevel(logging.WARNING)
|
|
logging.getLogger('farm.eval').setLevel(logging.INFO)
|
|
logging.getLogger('farm.modeling.optimization').setLevel(logging.INFO)
|
|
|
|
|