applied black
This commit is contained in:
parent
41b33dad65
commit
9e29d2e5f9
2
test/fixtures/image_metadata_pair.py
vendored
2
test/fixtures/image_metadata_pair.py
vendored
@ -7,4 +7,4 @@ from image_prediction.image_extractor.extractor import ImageMetadataPair
|
|||||||
|
|
||||||
@pytest.fixture
|
@pytest.fixture
|
||||||
def image_metadata_pairs(images, metadata):
|
def image_metadata_pairs(images, metadata):
|
||||||
return list(starmap(ImageMetadataPair, zip(images, metadata)))
|
return list(starmap(ImageMetadataPair, zip(images, metadata)))
|
||||||
|
|||||||
2
test/fixtures/input.py
vendored
2
test/fixtures/input.py
vendored
@ -4,4 +4,4 @@ import pytest
|
|||||||
|
|
||||||
@pytest.fixture
|
@pytest.fixture
|
||||||
def input_batch(batch_size, input_size):
|
def input_batch(batch_size, input_size):
|
||||||
return np.random.random_sample(size=(batch_size, *input_size))
|
return np.random.random_sample(size=(batch_size, *input_size))
|
||||||
|
|||||||
2
test/fixtures/label.py
vendored
2
test/fixtures/label.py
vendored
@ -22,4 +22,4 @@ def label_format(request):
|
|||||||
|
|
||||||
@pytest.fixture
|
@pytest.fixture
|
||||||
def classes():
|
def classes():
|
||||||
return ["A", "B", "C"]
|
return ["A", "B", "C"]
|
||||||
|
|||||||
2
test/fixtures/model.py
vendored
2
test/fixtures/model.py
vendored
@ -124,4 +124,4 @@ def model_handle_mock(estimator_mock):
|
|||||||
def predict_proba(self, batch):
|
def predict_proba(self, batch):
|
||||||
return [None for _ in batch]
|
return [None for _ in batch]
|
||||||
|
|
||||||
return ModelHandleMock()
|
return ModelHandleMock()
|
||||||
|
|||||||
2
test/fixtures/model_store.py
vendored
2
test/fixtures/model_store.py
vendored
@ -58,4 +58,4 @@ def mlruns_dir():
|
|||||||
|
|
||||||
@pytest.fixture
|
@pytest.fixture
|
||||||
def mlflow_reader(mlruns_dir):
|
def mlflow_reader(mlruns_dir):
|
||||||
return MlflowModelReader(mlruns_dir)
|
return MlflowModelReader(mlruns_dir)
|
||||||
|
|||||||
2
test/fixtures/parameters.py
vendored
2
test/fixtures/parameters.py
vendored
@ -35,4 +35,4 @@ def width(request):
|
|||||||
|
|
||||||
@pytest.fixture(params=[0, 1, 2, 16, 32])
|
@pytest.fixture(params=[0, 1, 2, 16, 32])
|
||||||
def batch_size(request):
|
def batch_size(request):
|
||||||
return request.param
|
return request.param
|
||||||
|
|||||||
2
test/fixtures/pdf.py
vendored
2
test/fixtures/pdf.py
vendored
@ -20,4 +20,4 @@ def pdf(image_metadata_pairs):
|
|||||||
@pytest.fixture
|
@pytest.fixture
|
||||||
def real_pdf():
|
def real_pdf():
|
||||||
with open(os.path.join(TEST_DATA_DIR, "f2dc689ca794fccb8cd38b95f2bf6ba9.pdf"), "rb") as f:
|
with open(os.path.join(TEST_DATA_DIR, "f2dc689ca794fccb8cd38b95f2bf6ba9.pdf"), "rb") as f:
|
||||||
yield f.read()
|
yield f.read()
|
||||||
|
|||||||
2
test/fixtures/target.py
vendored
2
test/fixtures/target.py
vendored
@ -88,4 +88,4 @@ def expected_predictions_mapped_and_formatted(expected_predictions_mapped):
|
|||||||
@pytest.fixture
|
@pytest.fixture
|
||||||
def real_expected_service_response():
|
def real_expected_service_response():
|
||||||
with open(os.path.join(TEST_DATA_DIR, "f2dc689ca794fccb8cd38b95f2bf6ba9_predictions.json"), "r") as f:
|
with open(os.path.join(TEST_DATA_DIR, "f2dc689ca794fccb8cd38b95f2bf6ba9_predictions.json"), "r") as f:
|
||||||
yield json.load(f)
|
yield json.load(f)
|
||||||
|
|||||||
@ -1,2 +1,2 @@
|
|||||||
def map_labels(numeric_labels, classes):
|
def map_labels(numeric_labels, classes):
|
||||||
return [classes[nl] for nl in numeric_labels]
|
return [classes[nl] for nl in numeric_labels]
|
||||||
|
|||||||
@ -8,4 +8,4 @@ def get_base_position_metadata(width, height, page_width, page_height):
|
|||||||
Info.PAGE_IDX: 0,
|
Info.PAGE_IDX: 0,
|
||||||
Info.PAGE_WIDTH: page_width,
|
Info.PAGE_WIDTH: page_width,
|
||||||
Info.PAGE_HEIGHT: page_height,
|
Info.PAGE_HEIGHT: page_height,
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user