├── README.md ├── checkpoints └── HEDSeg │ ├── .DS_Store │ ├── events.out.tfevents.1535446088.#root-7048GR-TR?gpu2 │ ├── model.png │ └── train_log.csv ├── images ├── 000001.jpg ├── 000002.jpg ├── 000003.jpg ├── 000004.jpg ├── 000006.jpg └── 000008.jpg ├── main_segmentation.py ├── output ├── 000001.jpg ├── 000002.jpg ├── 000003.jpg ├── 000004.jpg ├── 000006.jpg └── 000008.jpg ├── results └── loss.png ├── src ├── __init__.py ├── __init__.pyc ├── __pycache__ │ └── __init__.cpython-36.pyc ├── networks │ ├── __init__.py │ ├── __init__.pyc │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ └── hed.cpython-36.pyc │ ├── hed.py │ └── hed.pyc └── utils │ ├── HED_data_parser.py │ ├── HED_data_parser.pyc │ ├── __init__.py │ ├── __init__.pyc │ └── __pycache__ │ ├── HED_data_parser.cpython-36.pyc │ └── __init__.cpython-36.pyc └── test.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senliuy/Keras_HED_with_model/HEAD/README.md -------------------------------------------------------------------------------- /checkpoints/HEDSeg/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senliuy/Keras_HED_with_model/HEAD/checkpoints/HEDSeg/.DS_Store -------------------------------------------------------------------------------- /checkpoints/HEDSeg/events.out.tfevents.1535446088.#root-7048GR-TR?gpu2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senliuy/Keras_HED_with_model/HEAD/checkpoints/HEDSeg/events.out.tfevents.1535446088.#root-7048GR-TR?gpu2 -------------------------------------------------------------------------------- /checkpoints/HEDSeg/model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senliuy/Keras_HED_with_model/HEAD/checkpoints/HEDSeg/model.png -------------------------------------------------------------------------------- /checkpoints/HEDSeg/train_log.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/000001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senliuy/Keras_HED_with_model/HEAD/images/000001.jpg -------------------------------------------------------------------------------- /images/000002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senliuy/Keras_HED_with_model/HEAD/images/000002.jpg -------------------------------------------------------------------------------- /images/000003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senliuy/Keras_HED_with_model/HEAD/images/000003.jpg -------------------------------------------------------------------------------- /images/000004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senliuy/Keras_HED_with_model/HEAD/images/000004.jpg -------------------------------------------------------------------------------- /images/000006.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senliuy/Keras_HED_with_model/HEAD/images/000006.jpg -------------------------------------------------------------------------------- /images/000008.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senliuy/Keras_HED_with_model/HEAD/images/000008.jpg -------------------------------------------------------------------------------- /main_segmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senliuy/Keras_HED_with_model/HEAD/main_segmentation.py -------------------------------------------------------------------------------- /output/000001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senliuy/Keras_HED_with_model/HEAD/output/000001.jpg -------------------------------------------------------------------------------- /output/000002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senliuy/Keras_HED_with_model/HEAD/output/000002.jpg -------------------------------------------------------------------------------- /output/000003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senliuy/Keras_HED_with_model/HEAD/output/000003.jpg -------------------------------------------------------------------------------- /output/000004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senliuy/Keras_HED_with_model/HEAD/output/000004.jpg -------------------------------------------------------------------------------- /output/000006.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senliuy/Keras_HED_with_model/HEAD/output/000006.jpg -------------------------------------------------------------------------------- /output/000008.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senliuy/Keras_HED_with_model/HEAD/output/000008.jpg -------------------------------------------------------------------------------- /results/loss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senliuy/Keras_HED_with_model/HEAD/results/loss.png -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senliuy/Keras_HED_with_model/HEAD/src/__init__.pyc -------------------------------------------------------------------------------- /src/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senliuy/Keras_HED_with_model/HEAD/src/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /src/networks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/networks/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senliuy/Keras_HED_with_model/HEAD/src/networks/__init__.pyc -------------------------------------------------------------------------------- /src/networks/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senliuy/Keras_HED_with_model/HEAD/src/networks/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /src/networks/__pycache__/hed.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senliuy/Keras_HED_with_model/HEAD/src/networks/__pycache__/hed.cpython-36.pyc -------------------------------------------------------------------------------- /src/networks/hed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senliuy/Keras_HED_with_model/HEAD/src/networks/hed.py -------------------------------------------------------------------------------- /src/networks/hed.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senliuy/Keras_HED_with_model/HEAD/src/networks/hed.pyc -------------------------------------------------------------------------------- /src/utils/HED_data_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senliuy/Keras_HED_with_model/HEAD/src/utils/HED_data_parser.py -------------------------------------------------------------------------------- /src/utils/HED_data_parser.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senliuy/Keras_HED_with_model/HEAD/src/utils/HED_data_parser.pyc -------------------------------------------------------------------------------- /src/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/utils/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senliuy/Keras_HED_with_model/HEAD/src/utils/__init__.pyc -------------------------------------------------------------------------------- /src/utils/__pycache__/HED_data_parser.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senliuy/Keras_HED_with_model/HEAD/src/utils/__pycache__/HED_data_parser.cpython-36.pyc -------------------------------------------------------------------------------- /src/utils/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senliuy/Keras_HED_with_model/HEAD/src/utils/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senliuy/Keras_HED_with_model/HEAD/test.py --------------------------------------------------------------------------------