Compare commits

..

2 Commits

3 changed files with 677 additions and 676 deletions

1350
poetry.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -12,6 +12,7 @@ python = ">=3.10,<3.11"
tensorflow = "^2.10.0"
numpy = "^1.23.4"
pillow = "^8.3.2"
flatbuffers = "<2.11"
[tool.poetry.group.dev.dependencies]
mypy = "^0.982"

View File

@ -187,7 +187,7 @@ def train(model_type: str, record_field: str, batch_size: int, slide_size: int,
# Save model for tensorflow using
model.save(f'/opt/ml/model/model_{record_field.replace("_", "")}_{model_type}_{str(img_width)}x{str(img_height)}h{str(horizon)}')
def representative_dataset() -> typing.Generator[typing.List[tf.float32], typing.Any, None]:
def representative_dataset() -> typing.Generator[typing.List[float], typing.Any, None]:
for d in tf.data.Dataset.from_tensor_slices(images).batch(1).take(100):
yield [tf.dtypes.cast(d, tf.float32)]