-
-
Notifications
You must be signed in to change notification settings - Fork 29
/
setup.py
17 lines (16 loc) · 863 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='classification_models_3D',
version='1.1.0',
author='Roman Sol (ZFTurbo)',
packages=['classification_models_3D', 'classification_models_3D/models'],
url='https://github.com/ZFTurbo/classification_models_3D',
description='Set of models for classification of 3D volumes.',
long_description='This repository contains 3D variants of popular classification CNN models like ResNets, DenseNets, VGG, etc for keras module. '
'It also contains weights obtained by converting ImageNet weights from the same 2D models. '
'Models work with keras 3 with different backends like Tensorflow, Torch and Jax.'
'More details: https://github.com/ZFTurbo/classification_models_3D',
)