Skip to content
Snippets Groups Projects
Commit e193fbe6 authored by Tim Laibacher's avatar Tim Laibacher
Browse files

Update checkpointer, metrics and inference script. Add cli

parent 82cb7b06
No related branches found
No related tags found
No related merge requests found
Pipeline #29551 failed
......@@ -10,16 +10,15 @@
Write here a small (1 paragraph) introduction explaining this project. See
other projects for examples.
Users Guide
===========
Datasets
========
.. toctree::
:maxdepth: 2
api
datasets
.. todolist::
Users Guide
===========
.. include:: links.rst
\ No newline at end of file
......@@ -10,7 +10,7 @@ bob.db.rimoner3
bob.db.drishtigs1
bob.db.refuge
bob.db.iostar
pytorch >=1.0.1
torch
torchvision
pandas
matplotlib
\ No newline at end of file
......@@ -37,9 +37,26 @@ setup(
install_requires=install_requires,
entry_points={
# add entry points (scripts, bob resources here, if any)
},
entry_points={
# main entry for bob hed cli
'bob.cli': [
'binseg = bob.ip.binseg.script.binseg:binseg',
],
#bob hed sub-commands
'bob.ip.binseg.cli': [
'train = bob.ip.binseg.script.binseg:train',
],
#bob hed train configurations
'bob.ip.binseg.config': [
'DriuDefault = bob.ip.binseg.configs.models.driu_default',
'DriveDefault = bob.ip.binseg.configs.datasets.drive_default',
]
},
# check classifiers, add and remove as you see fit
# full list here: https://pypi.org/classifiers/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment