├── README.md ├── data └── README.md ├── demo_example └── demo.mp4 ├── fig_caption_extracter ├── README.md ├── batch_process.bat ├── batch_process.py ├── demo_join.py └── demo_join_record.ipynb ├── img ├── data_construction.png ├── example_pdl1.png ├── framework.png └── logo.png ├── pathasst_caption_tool └── Readme.md ├── pathology_classifier └── README.md └── sub-figure_detection ├── README.md ├── detect.py ├── img_dec_best.pt ├── models ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-38.pyc │ ├── common.cpython-38.pyc │ ├── experimental.cpython-38.pyc │ └── yolo.cpython-38.pyc ├── common.py ├── experimental.py └── yolo.py ├── picture └── 23451160_pone.0057128.g006.jpg └── utils ├── __init__.py ├── __pycache__ ├── __init__.cpython-38.pyc ├── autoanchor.cpython-38.pyc ├── datasets.cpython-38.pyc ├── general.cpython-38.pyc ├── google_utils.cpython-38.pyc ├── loss.cpython-38.pyc ├── metrics.cpython-38.pyc ├── plots.cpython-38.pyc └── torch_utils.cpython-38.pyc ├── autoanchor.py ├── datasets.py ├── general.py ├── google_utils.py ├── loss.py ├── metrics.py ├── plots.py └── torch_utils.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superjamessyx/Generative-Foundation-AI-Assistant-for-Pathology/HEAD/README.md -------------------------------------------------------------------------------- /data/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo_example/demo.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superjamessyx/Generative-Foundation-AI-Assistant-for-Pathology/HEAD/demo_example/demo.mp4 -------------------------------------------------------------------------------- /fig_caption_extracter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superjamessyx/Generative-Foundation-AI-Assistant-for-Pathology/HEAD/fig_caption_extracter/README.md -------------------------------------------------------------------------------- /fig_caption_extracter/batch_process.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superjamessyx/Generative-Foundation-AI-Assistant-for-Pathology/HEAD/fig_caption_extracter/batch_process.bat -------------------------------------------------------------------------------- /fig_caption_extracter/batch_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superjamessyx/Generative-Foundation-AI-Assistant-for-Pathology/HEAD/fig_caption_extracter/batch_process.py -------------------------------------------------------------------------------- /fig_caption_extracter/demo_join.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superjamessyx/Generative-Foundation-AI-Assistant-for-Pathology/HEAD/fig_caption_extracter/demo_join.py -------------------------------------------------------------------------------- /fig_caption_extracter/demo_join_record.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superjamessyx/Generative-Foundation-AI-Assistant-for-Pathology/HEAD/fig_caption_extracter/demo_join_record.ipynb -------------------------------------------------------------------------------- /img/data_construction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superjamessyx/Generative-Foundation-AI-Assistant-for-Pathology/HEAD/img/data_construction.png -------------------------------------------------------------------------------- /img/example_pdl1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superjamessyx/Generative-Foundation-AI-Assistant-for-Pathology/HEAD/img/example_pdl1.png -------------------------------------------------------------------------------- /img/framework.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superjamessyx/Generative-Foundation-AI-Assistant-for-Pathology/HEAD/img/framework.png -------------------------------------------------------------------------------- /img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superjamessyx/Generative-Foundation-AI-Assistant-for-Pathology/HEAD/img/logo.png -------------------------------------------------------------------------------- /pathasst_caption_tool/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superjamessyx/Generative-Foundation-AI-Assistant-for-Pathology/HEAD/pathasst_caption_tool/Readme.md -------------------------------------------------------------------------------- /pathology_classifier/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superjamessyx/Generative-Foundation-AI-Assistant-for-Pathology/HEAD/pathology_classifier/README.md -------------------------------------------------------------------------------- /sub-figure_detection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superjamessyx/Generative-Foundation-AI-Assistant-for-Pathology/HEAD/sub-figure_detection/README.md -------------------------------------------------------------------------------- /sub-figure_detection/detect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superjamessyx/Generative-Foundation-AI-Assistant-for-Pathology/HEAD/sub-figure_detection/detect.py -------------------------------------------------------------------------------- /sub-figure_detection/img_dec_best.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superjamessyx/Generative-Foundation-AI-Assistant-for-Pathology/HEAD/sub-figure_detection/img_dec_best.pt -------------------------------------------------------------------------------- /sub-figure_detection/models/__init__.py: -------------------------------------------------------------------------------- 1 | # init -------------------------------------------------------------------------------- /sub-figure_detection/models/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superjamessyx/Generative-Foundation-AI-Assistant-for-Pathology/HEAD/sub-figure_detection/models/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /sub-figure_detection/models/__pycache__/common.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superjamessyx/Generative-Foundation-AI-Assistant-for-Pathology/HEAD/sub-figure_detection/models/__pycache__/common.cpython-38.pyc -------------------------------------------------------------------------------- /sub-figure_detection/models/__pycache__/experimental.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superjamessyx/Generative-Foundation-AI-Assistant-for-Pathology/HEAD/sub-figure_detection/models/__pycache__/experimental.cpython-38.pyc -------------------------------------------------------------------------------- /sub-figure_detection/models/__pycache__/yolo.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superjamessyx/Generative-Foundation-AI-Assistant-for-Pathology/HEAD/sub-figure_detection/models/__pycache__/yolo.cpython-38.pyc -------------------------------------------------------------------------------- /sub-figure_detection/models/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superjamessyx/Generative-Foundation-AI-Assistant-for-Pathology/HEAD/sub-figure_detection/models/common.py -------------------------------------------------------------------------------- /sub-figure_detection/models/experimental.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superjamessyx/Generative-Foundation-AI-Assistant-for-Pathology/HEAD/sub-figure_detection/models/experimental.py -------------------------------------------------------------------------------- /sub-figure_detection/models/yolo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superjamessyx/Generative-Foundation-AI-Assistant-for-Pathology/HEAD/sub-figure_detection/models/yolo.py -------------------------------------------------------------------------------- /sub-figure_detection/picture/23451160_pone.0057128.g006.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superjamessyx/Generative-Foundation-AI-Assistant-for-Pathology/HEAD/sub-figure_detection/picture/23451160_pone.0057128.g006.jpg -------------------------------------------------------------------------------- /sub-figure_detection/utils/__init__.py: -------------------------------------------------------------------------------- 1 | # init -------------------------------------------------------------------------------- /sub-figure_detection/utils/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superjamessyx/Generative-Foundation-AI-Assistant-for-Pathology/HEAD/sub-figure_detection/utils/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /sub-figure_detection/utils/__pycache__/autoanchor.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superjamessyx/Generative-Foundation-AI-Assistant-for-Pathology/HEAD/sub-figure_detection/utils/__pycache__/autoanchor.cpython-38.pyc -------------------------------------------------------------------------------- /sub-figure_detection/utils/__pycache__/datasets.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superjamessyx/Generative-Foundation-AI-Assistant-for-Pathology/HEAD/sub-figure_detection/utils/__pycache__/datasets.cpython-38.pyc -------------------------------------------------------------------------------- /sub-figure_detection/utils/__pycache__/general.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superjamessyx/Generative-Foundation-AI-Assistant-for-Pathology/HEAD/sub-figure_detection/utils/__pycache__/general.cpython-38.pyc -------------------------------------------------------------------------------- /sub-figure_detection/utils/__pycache__/google_utils.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superjamessyx/Generative-Foundation-AI-Assistant-for-Pathology/HEAD/sub-figure_detection/utils/__pycache__/google_utils.cpython-38.pyc -------------------------------------------------------------------------------- /sub-figure_detection/utils/__pycache__/loss.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superjamessyx/Generative-Foundation-AI-Assistant-for-Pathology/HEAD/sub-figure_detection/utils/__pycache__/loss.cpython-38.pyc -------------------------------------------------------------------------------- /sub-figure_detection/utils/__pycache__/metrics.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superjamessyx/Generative-Foundation-AI-Assistant-for-Pathology/HEAD/sub-figure_detection/utils/__pycache__/metrics.cpython-38.pyc -------------------------------------------------------------------------------- /sub-figure_detection/utils/__pycache__/plots.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superjamessyx/Generative-Foundation-AI-Assistant-for-Pathology/HEAD/sub-figure_detection/utils/__pycache__/plots.cpython-38.pyc -------------------------------------------------------------------------------- /sub-figure_detection/utils/__pycache__/torch_utils.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superjamessyx/Generative-Foundation-AI-Assistant-for-Pathology/HEAD/sub-figure_detection/utils/__pycache__/torch_utils.cpython-38.pyc -------------------------------------------------------------------------------- /sub-figure_detection/utils/autoanchor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superjamessyx/Generative-Foundation-AI-Assistant-for-Pathology/HEAD/sub-figure_detection/utils/autoanchor.py -------------------------------------------------------------------------------- /sub-figure_detection/utils/datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superjamessyx/Generative-Foundation-AI-Assistant-for-Pathology/HEAD/sub-figure_detection/utils/datasets.py -------------------------------------------------------------------------------- /sub-figure_detection/utils/general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superjamessyx/Generative-Foundation-AI-Assistant-for-Pathology/HEAD/sub-figure_detection/utils/general.py -------------------------------------------------------------------------------- /sub-figure_detection/utils/google_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superjamessyx/Generative-Foundation-AI-Assistant-for-Pathology/HEAD/sub-figure_detection/utils/google_utils.py -------------------------------------------------------------------------------- /sub-figure_detection/utils/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superjamessyx/Generative-Foundation-AI-Assistant-for-Pathology/HEAD/sub-figure_detection/utils/loss.py -------------------------------------------------------------------------------- /sub-figure_detection/utils/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superjamessyx/Generative-Foundation-AI-Assistant-for-Pathology/HEAD/sub-figure_detection/utils/metrics.py -------------------------------------------------------------------------------- /sub-figure_detection/utils/plots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superjamessyx/Generative-Foundation-AI-Assistant-for-Pathology/HEAD/sub-figure_detection/utils/plots.py -------------------------------------------------------------------------------- /sub-figure_detection/utils/torch_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superjamessyx/Generative-Foundation-AI-Assistant-for-Pathology/HEAD/sub-figure_detection/utils/torch_utils.py --------------------------------------------------------------------------------