├── LICENSE ├── README.md ├── demo.ipynb ├── dog.jpeg ├── framework.png ├── text2seg ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-38.pyc │ ├── text2seg.cpython-38.pyc │ └── utils.cpython-38.pyc ├── text2seg.py └── utils.py └── utils.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangjielu321/Text2Seg/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangjielu321/Text2Seg/HEAD/README.md -------------------------------------------------------------------------------- /demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangjielu321/Text2Seg/HEAD/demo.ipynb -------------------------------------------------------------------------------- /dog.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangjielu321/Text2Seg/HEAD/dog.jpeg -------------------------------------------------------------------------------- /framework.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangjielu321/Text2Seg/HEAD/framework.png -------------------------------------------------------------------------------- /text2seg/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /text2seg/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangjielu321/Text2Seg/HEAD/text2seg/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /text2seg/__pycache__/text2seg.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangjielu321/Text2Seg/HEAD/text2seg/__pycache__/text2seg.cpython-38.pyc -------------------------------------------------------------------------------- /text2seg/__pycache__/utils.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangjielu321/Text2Seg/HEAD/text2seg/__pycache__/utils.cpython-38.pyc -------------------------------------------------------------------------------- /text2seg/text2seg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangjielu321/Text2Seg/HEAD/text2seg/text2seg.py -------------------------------------------------------------------------------- /text2seg/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangjielu321/Text2Seg/HEAD/text2seg/utils.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangjielu321/Text2Seg/HEAD/utils.py --------------------------------------------------------------------------------