├── .gitignore ├── .gitignore.save ├── LICENSE ├── README.md ├── data_loader.py ├── figures ├── U2NETPR.png ├── qual.png ├── quan_1.png ├── quan_2.png └── u2netqual.png ├── find_and_rename_and_move.py ├── list_files.py ├── model ├── __init__.py └── u2net.py ├── process_error_files.py ├── segment_dataset.py ├── take_some_files_randomly.py ├── u2net_test.py └── u2net_train.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeCongThuong/U2Net/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitignore.save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeCongThuong/U2Net/HEAD/.gitignore.save -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeCongThuong/U2Net/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeCongThuong/U2Net/HEAD/README.md -------------------------------------------------------------------------------- /data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeCongThuong/U2Net/HEAD/data_loader.py -------------------------------------------------------------------------------- /figures/U2NETPR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeCongThuong/U2Net/HEAD/figures/U2NETPR.png -------------------------------------------------------------------------------- /figures/qual.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeCongThuong/U2Net/HEAD/figures/qual.png -------------------------------------------------------------------------------- /figures/quan_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeCongThuong/U2Net/HEAD/figures/quan_1.png -------------------------------------------------------------------------------- /figures/quan_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeCongThuong/U2Net/HEAD/figures/quan_2.png -------------------------------------------------------------------------------- /figures/u2netqual.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeCongThuong/U2Net/HEAD/figures/u2netqual.png -------------------------------------------------------------------------------- /find_and_rename_and_move.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeCongThuong/U2Net/HEAD/find_and_rename_and_move.py -------------------------------------------------------------------------------- /list_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeCongThuong/U2Net/HEAD/list_files.py -------------------------------------------------------------------------------- /model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeCongThuong/U2Net/HEAD/model/__init__.py -------------------------------------------------------------------------------- /model/u2net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeCongThuong/U2Net/HEAD/model/u2net.py -------------------------------------------------------------------------------- /process_error_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeCongThuong/U2Net/HEAD/process_error_files.py -------------------------------------------------------------------------------- /segment_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeCongThuong/U2Net/HEAD/segment_dataset.py -------------------------------------------------------------------------------- /take_some_files_randomly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeCongThuong/U2Net/HEAD/take_some_files_randomly.py -------------------------------------------------------------------------------- /u2net_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeCongThuong/U2Net/HEAD/u2net_test.py -------------------------------------------------------------------------------- /u2net_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeCongThuong/U2Net/HEAD/u2net_train.py --------------------------------------------------------------------------------