(20241010) Almost ready for deployment.

This commit is contained in:
2024-10-10 11:44:45 +05:30
13 changed files with 87 additions and 23 deletions
@@ -11,7 +11,7 @@
OBJECTIVE:
To provide an easy way to assess images for blurriness.
Tried and implemented using HuggingFace models.
Tried and implemented using HuggingFace behaviour_models.
REFERENCES:
@@ -193,7 +193,7 @@ if __name__ == "__main__":
async def main():
image = r"/home/developer/Downloads/low-res-check.png"
assessor = AssessImageBlur(model = r"/home/developer/PycharmProjects/utils/data/ai/models/hugging_face/image_classification/BlurOrBokeh")
assessor = AssessImageBlur(model = r"/home/developer/PycharmProjects/utils/data/ai/behaviour_models/hugging_face/image_classification/BlurOrBokeh")
usable = await assessor.is_ok(image)
classes = await assessor.classify(image)
print("IS OKAY:", usable)