shuuchen / HRNet

A compact HRNet implementation in PyTorch

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

HRNet

A compact HRNet implementation in PyTorch without YAML configuration

Performance

Usage

from hrnet import HRNet

'''
parameters from left to right:
  input channels, first branch channels (hyper parameter), output channels
  
notice:
  Only the number of first branch channels is necessary, numbers of channels of 
  other branches are calculated according to the paper
'''
model = HRNet(3, 16, 8)

Requirements

torch==1.5.0

References

About

A compact HRNet implementation in PyTorch

License:Apache License 2.0


Languages

Language:Python 100.0%