forked from ZFTurbo/Weighted-Boxes-Fusion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
20 lines (19 loc) · 874 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
try:
from setuptools import setup
except:
from distutils.core import setup
setup(
name='ensemble_boxes',
version='1.0.0',
author='Roman Solovyev (ZFTurbo)',
packages=['ensemble_boxes', ],
url='https://github.com/ZFTurbo/Weighted-Boxes-Fusion',
license='MIT License',
description='Python implementation of several methods for ensembling boxes from object detection models: Non-maximum Suppression (NMS), Soft-NMS, Non-maximum weighted (NMW), Weighted boxes fusion (WBF)',
long_description='Python implementation of several methods for ensembling boxes from object detection models: Non-maximum Suppression (NMS), Soft-NMS, Non-maximum weighted (NMW), Weighted boxes fusion (WBF)'
'More details: https://github.com/ZFTurbo/Weighted-Boxes-Fusion',
install_requires=[
"numpy",
"pandas",
],
)