Repository: tfzhou/MATNet Branch: master Commit: c8b95e527c48 Files: 52 Total size: 167.4 KB Directory structure: gitextract_05390pb8/ ├── .gitignore ├── .idea/ │ ├── aaai20-zero-ShotVOS-github.iml │ ├── inspectionProfiles/ │ │ └── Project_Default.xml │ ├── misc.xml │ ├── modules.xml │ ├── vcs.xml │ └── workspace.xml ├── 3rdparty/ │ ├── run_davis.py │ ├── run_davis2017.m │ ├── run_davis_flow.py │ ├── run_youtube.m │ ├── run_youtube.py │ ├── run_youtube_flow.py │ └── seg2edge.m ├── README.md ├── apply_densecrf_davis.py ├── args.py ├── data/ │ ├── db_info.yaml │ ├── palette.txt │ ├── run_davis2017.m │ ├── run_youtube.m │ └── seg2edge.m ├── dataloader/ │ ├── base.py │ ├── base_youtube.py │ ├── custom_transforms.py │ ├── dataset_utils.py │ ├── davis2017.py │ ├── davis2017_youtubevos_ehem.py │ ├── hed_bsds.py │ └── youtubeVOS.py ├── dataset_lmdb_generator.py ├── measures/ │ ├── __init__.py │ ├── f_boundary.py │ ├── jaccard.py │ ├── statistics.py │ └── t_stability.py ├── misc/ │ ├── __init__.py │ ├── config.py │ ├── config_youtubeVOS.py │ ├── io_aux.py │ ├── logger.py │ ├── parallel.py │ ├── timer.py │ └── visual.py ├── modules/ │ ├── MATNet.py │ └── cbam.py ├── requirements.txt ├── test_MATNet.py ├── train_MATNet.py └── utils/ ├── __init__.py ├── objectives.py └── utils.py ================================================ FILE CONTENTS ================================================ ================================================ FILE: .gitignore ================================================ # Byte-compiled / optimized / DLL files __pycache__/ *.py[cod] *$py.class # C extensions *.so # Distribution / packaging .Python build/ develop-eggs/ dist/ downloads/ eggs/ .eggs/ lib/ lib64/ parts/ sdist/ var/ wheels/ *.egg-info/ .installed.cfg *.egg MANIFEST ckpt/ # PyInstaller # Usually these files are written by a python script from a template # before PyInstaller builds the exe, so as to inject date/other infos into it. *.manifest *.spec # Installer logs pip-log.txt pip-delete-this-directory.txt # Unit test / coverage reports htmlcov/ .tox/ .coverage .coverage.* .cache nosetests.xml coverage.xml *.cover .hypothesis/ .pytest_cache/ # Translations *.mo *.pot # Django stuff: *.log local_settings.py db.sqlite3 # Flask stuff: instance/ .webassets-cache # Scrapy stuff: .scrapy # Sphinx documentation docs/_build/ # PyBuilder target/ # Jupyter Notebook .ipynb_checkpoints # pyenv .python-version # celery beat schedule file celerybeat-schedule # SageMath parsed files *.sage.py # Environments .env .venv env/ venv/ ENV/ env.bak/ venv.bak/ # Spyder project settings .spyderproject .spyproject # Rope project settings .ropeproject # mkdocs documentation /site # mypy .mypy_cache/ ================================================ FILE: .idea/aaai20-zero-ShotVOS-github.iml ================================================ ================================================ FILE: .idea/inspectionProfiles/Project_Default.xml ================================================ ================================================ FILE: .idea/misc.xml ================================================ ================================================ FILE: .idea/modules.xml ================================================ ================================================ FILE: .idea/vcs.xml ================================================ ================================================ FILE: .idea/workspace.xml ================================================