DEMO_PROJECT_2 / test_pilates.py
bsmith3715's picture
Upload 8 files
07f9a69 verified
raw
history blame contribute delete
335 Bytes
from pilates_evaluator import PilatesVideoEvaluator
def test_evaluator():
evaluator = PilatesVideoEvaluator()
print("PilatesVideoEvaluator initialized successfully!")
print("Body parts:", evaluator.BODY_PARTS)
print("Model loaded:", evaluator.net is not None)
if __name__ == "__main__":
test_evaluator()