├── .gitignore ├── README.md ├── checkpoints └── .gitkeep ├── configs └── .gitkeep ├── data └── .gitkeep ├── datasets └── .gitkeep ├── models └── .gitkeep ├── scenegraph └── .gitkeep ├── tools └── .gitkeep ├── utils └── .gitkeep └── weights └── .gitkeep /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengyzhao/TextPSG/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengyzhao/TextPSG/HEAD/README.md -------------------------------------------------------------------------------- /checkpoints/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /configs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /datasets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scenegraph/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /weights/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------