├── .gitignore ├── LICENSE ├── eval.py ├── figure ├── result0.jpg ├── result1.jpg ├── result2.jpg ├── result3.jpg ├── result4.jpg └── result5.jpg ├── nets ├── __init__.py ├── model.py └── resnet │ ├── __init__.py │ ├── resnet_utils.py │ └── resnet_v1.py ├── pse ├── Makefile ├── __init__.py ├── include │ └── pybind11 │ │ ├── attr.h │ │ ├── buffer_info.h │ │ ├── cast.h │ │ ├── chrono.h │ │ ├── class_support.h │ │ ├── common.h │ │ ├── complex.h │ │ ├── descr.h │ │ ├── detail │ │ ├── class.h │ │ ├── common.h │ │ ├── descr.h │ │ ├── init.h │ │ ├── internals.h │ │ └── typeid.h │ │ ├── eigen.h │ │ ├── embed.h │ │ ├── eval.h │ │ ├── functional.h │ │ ├── iostream.h │ │ ├── numpy.h │ │ ├── operators.h │ │ ├── options.h │ │ ├── pybind11.h │ │ ├── pytypes.h │ │ ├── stl.h │ │ ├── stl_bind.h │ │ └── typeid.h └── pse.cpp ├── readme.md ├── train.py └── utils ├── __init__.py ├── data_provider ├── __init__.py ├── data_provider.py └── data_util.py └── utils_tool.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.DS_Store 2 | *.pyc 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelHL-ai/tensorflow_PSENet/HEAD/LICENSE -------------------------------------------------------------------------------- /eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelHL-ai/tensorflow_PSENet/HEAD/eval.py -------------------------------------------------------------------------------- /figure/result0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelHL-ai/tensorflow_PSENet/HEAD/figure/result0.jpg -------------------------------------------------------------------------------- /figure/result1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelHL-ai/tensorflow_PSENet/HEAD/figure/result1.jpg -------------------------------------------------------------------------------- /figure/result2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelHL-ai/tensorflow_PSENet/HEAD/figure/result2.jpg -------------------------------------------------------------------------------- /figure/result3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelHL-ai/tensorflow_PSENet/HEAD/figure/result3.jpg -------------------------------------------------------------------------------- /figure/result4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelHL-ai/tensorflow_PSENet/HEAD/figure/result4.jpg -------------------------------------------------------------------------------- /figure/result5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelHL-ai/tensorflow_PSENet/HEAD/figure/result5.jpg -------------------------------------------------------------------------------- /nets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nets/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelHL-ai/tensorflow_PSENet/HEAD/nets/model.py -------------------------------------------------------------------------------- /nets/resnet/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nets/resnet/resnet_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelHL-ai/tensorflow_PSENet/HEAD/nets/resnet/resnet_utils.py -------------------------------------------------------------------------------- /nets/resnet/resnet_v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelHL-ai/tensorflow_PSENet/HEAD/nets/resnet/resnet_v1.py -------------------------------------------------------------------------------- /pse/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelHL-ai/tensorflow_PSENet/HEAD/pse/Makefile -------------------------------------------------------------------------------- /pse/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelHL-ai/tensorflow_PSENet/HEAD/pse/__init__.py -------------------------------------------------------------------------------- /pse/include/pybind11/attr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelHL-ai/tensorflow_PSENet/HEAD/pse/include/pybind11/attr.h -------------------------------------------------------------------------------- /pse/include/pybind11/buffer_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelHL-ai/tensorflow_PSENet/HEAD/pse/include/pybind11/buffer_info.h -------------------------------------------------------------------------------- /pse/include/pybind11/cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelHL-ai/tensorflow_PSENet/HEAD/pse/include/pybind11/cast.h -------------------------------------------------------------------------------- /pse/include/pybind11/chrono.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelHL-ai/tensorflow_PSENet/HEAD/pse/include/pybind11/chrono.h -------------------------------------------------------------------------------- /pse/include/pybind11/class_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelHL-ai/tensorflow_PSENet/HEAD/pse/include/pybind11/class_support.h -------------------------------------------------------------------------------- /pse/include/pybind11/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelHL-ai/tensorflow_PSENet/HEAD/pse/include/pybind11/common.h -------------------------------------------------------------------------------- /pse/include/pybind11/complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelHL-ai/tensorflow_PSENet/HEAD/pse/include/pybind11/complex.h -------------------------------------------------------------------------------- /pse/include/pybind11/descr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelHL-ai/tensorflow_PSENet/HEAD/pse/include/pybind11/descr.h -------------------------------------------------------------------------------- /pse/include/pybind11/detail/class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelHL-ai/tensorflow_PSENet/HEAD/pse/include/pybind11/detail/class.h -------------------------------------------------------------------------------- /pse/include/pybind11/detail/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelHL-ai/tensorflow_PSENet/HEAD/pse/include/pybind11/detail/common.h -------------------------------------------------------------------------------- /pse/include/pybind11/detail/descr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelHL-ai/tensorflow_PSENet/HEAD/pse/include/pybind11/detail/descr.h -------------------------------------------------------------------------------- /pse/include/pybind11/detail/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelHL-ai/tensorflow_PSENet/HEAD/pse/include/pybind11/detail/init.h -------------------------------------------------------------------------------- /pse/include/pybind11/detail/internals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelHL-ai/tensorflow_PSENet/HEAD/pse/include/pybind11/detail/internals.h -------------------------------------------------------------------------------- /pse/include/pybind11/detail/typeid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelHL-ai/tensorflow_PSENet/HEAD/pse/include/pybind11/detail/typeid.h -------------------------------------------------------------------------------- /pse/include/pybind11/eigen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelHL-ai/tensorflow_PSENet/HEAD/pse/include/pybind11/eigen.h -------------------------------------------------------------------------------- /pse/include/pybind11/embed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelHL-ai/tensorflow_PSENet/HEAD/pse/include/pybind11/embed.h -------------------------------------------------------------------------------- /pse/include/pybind11/eval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelHL-ai/tensorflow_PSENet/HEAD/pse/include/pybind11/eval.h -------------------------------------------------------------------------------- /pse/include/pybind11/functional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelHL-ai/tensorflow_PSENet/HEAD/pse/include/pybind11/functional.h -------------------------------------------------------------------------------- /pse/include/pybind11/iostream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelHL-ai/tensorflow_PSENet/HEAD/pse/include/pybind11/iostream.h -------------------------------------------------------------------------------- /pse/include/pybind11/numpy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelHL-ai/tensorflow_PSENet/HEAD/pse/include/pybind11/numpy.h -------------------------------------------------------------------------------- /pse/include/pybind11/operators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelHL-ai/tensorflow_PSENet/HEAD/pse/include/pybind11/operators.h -------------------------------------------------------------------------------- /pse/include/pybind11/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelHL-ai/tensorflow_PSENet/HEAD/pse/include/pybind11/options.h -------------------------------------------------------------------------------- /pse/include/pybind11/pybind11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelHL-ai/tensorflow_PSENet/HEAD/pse/include/pybind11/pybind11.h -------------------------------------------------------------------------------- /pse/include/pybind11/pytypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelHL-ai/tensorflow_PSENet/HEAD/pse/include/pybind11/pytypes.h -------------------------------------------------------------------------------- /pse/include/pybind11/stl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelHL-ai/tensorflow_PSENet/HEAD/pse/include/pybind11/stl.h -------------------------------------------------------------------------------- /pse/include/pybind11/stl_bind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelHL-ai/tensorflow_PSENet/HEAD/pse/include/pybind11/stl_bind.h -------------------------------------------------------------------------------- /pse/include/pybind11/typeid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelHL-ai/tensorflow_PSENet/HEAD/pse/include/pybind11/typeid.h -------------------------------------------------------------------------------- /pse/pse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelHL-ai/tensorflow_PSENet/HEAD/pse/pse.cpp -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelHL-ai/tensorflow_PSENet/HEAD/readme.md -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelHL-ai/tensorflow_PSENet/HEAD/train.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/data_provider/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/data_provider/data_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelHL-ai/tensorflow_PSENet/HEAD/utils/data_provider/data_provider.py -------------------------------------------------------------------------------- /utils/data_provider/data_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelHL-ai/tensorflow_PSENet/HEAD/utils/data_provider/data_util.py -------------------------------------------------------------------------------- /utils/utils_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelHL-ai/tensorflow_PSENet/HEAD/utils/utils_tool.py --------------------------------------------------------------------------------