File tree Expand file tree Collapse file tree 5 files changed +10
-9
lines changed
Expand file tree Collapse file tree 5 files changed +10
-9
lines changed Original file line number Diff line number Diff line change @@ -493,7 +493,7 @@ def save_inf_times(
493493 np .std (inf_times , 1 ) * 1.0 / np .sqrt (np .shape (inf_times )[1 ]),
494494 )
495495
496- #for stat in stats:
496+ # for stat in stats:
497497 # print("Stats:", stat)
498498
499499 data = {
Original file line number Diff line number Diff line change 77
88
99import tensorflow as tf
10- vers = (tf .__version__ ).split ('.' )
11- if int (vers [0 ])== 2 or int (vers [0 ])== 1 and int (vers [1 ])> 12 :
12- tf = tf .compat .v1
10+
11+ vers = (tf .__version__ ).split ("." )
12+ if int (vers [0 ]) == 2 or int (vers [0 ]) == 1 and int (vers [1 ]) > 12 :
13+ tf = tf .compat .v1
1314else :
14- tf = tf
15+ tf = tf
1516
1617
1718def read_graph (file ):
Original file line number Diff line number Diff line change 77"""
88
99
10- __version__ = "0.0.3 "
10+ __version__ = "1.0 "
1111VERSION = __version__
Original file line number Diff line number Diff line change 11pip uninstall deeplabcut-live
22python3 setup.py sdist bdist_wheel
3- pip install dist/deeplabcut_live-0.0.3 -py3-none-any.whl
3+ pip install dist/deeplabcut_live-1.0 -py3-none-any.whl
Original file line number Diff line number Diff line change 3737
3838setuptools .setup (
3939 name = "deeplabcut-live" ,
40- version = "0.0.3 " ,
40+ version = "1.0 " ,
4141 author = "A. & M. Mathis Labs" ,
4242 author_email = "admin@deeplabcut.org" ,
4343 description = "Class to load exported DeepLabCut networks and perform pose estimation on single frames (from a camera feed)" ,
5151 include_package_data = True ,
5252 classifiers = (
5353 "Programming Language :: Python :: 3" ,
54- "License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3 )" ,
54+ "License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+ )" ,
5555 "Operating System :: OS Independent" ,
5656 ),
5757 entry_points = {
You can’t perform that action at this time.
0 commit comments