We added support for the latest v2.1.9, as we always do. However, to upload your v2.1.9 model, you need to manually set the version, because of a small bug (already fixed for v2.1.10):
print(fastai.__version__)
> 2.1.8
So set the fastai version manually like below:
# SeeMe support different types of applications, with different frameworks and versions.
# Get the application_id for your framework (version).
# Do this
application_id = client.get_application_id(
base_framework="pytorch",
framework="fastai",
base_framework_version=str(torch.__version__),
framework_version="2.1.9",
application="image_classification"
)
# Instead of the default (should be fixed in v2.1.10)
application_id = client.get_application_id(
base_framework="pytorch",
framework="fastai",
base_framework_version=str(torch.__version__),
framework_version=str(fastai.__version__),
application="image_classification"
)
HI @zerotosingularity I have been trying to deploy my model. While getting the application_id for framework, I am getting the NotImplementedError. Kindly help