View file src/colab/deci_dekr.py - Download

# -*- coding: utf-8 -*-
"""Deci-DEKR.ipynb

Automatically generated by Colaboratory.

Original file is located at
    https://colab.research.google.com/drive/1wXRmLDW-eX2O3VV_fBIIhaaNa_aeRcDQ

https://deci.ai/model-zoo/dekr/
"""

!pip install super-gradients==3.1.3
from super_gradients.common.object_names import Models
from super_gradients.training import models

dekr_model=models.get(Models.DEKR_W32_NO_DC,pretrained_weights="coco_pose")
!wget http://log.chez.com/images/danse.jpg
dekr_model.predict("danse.jpg").show()