gitextract_o0fgwltz/ ├── CNN_LSTM/ │ ├── README.md │ ├── analysis_results.py │ ├── convert_txt2json.py │ ├── data/ │ │ └── lung_data/ │ │ ├── lung_data/ │ │ │ └── 说明.txt │ │ ├── lung_test.json │ │ ├── lung_train.json │ │ ├── lung_val.json │ │ ├── test.json │ │ └── test_small.json │ ├── download_data.sh │ ├── dump.txt │ ├── evaluate.ipynb │ ├── evaluate.ipynb.bak │ ├── evaluate.py │ ├── evaluate.py.bak │ ├── hypes/ │ │ ├── lstm.json │ │ ├── lstm_resnet_rezoom.json │ │ ├── lstm_resnet_rezoom_lung.json │ │ ├── lstm_rezoom.json │ │ ├── lstm_rezoom_lung.json │ │ ├── overfeat.json │ │ ├── overfeat_resnet_rezoom.json │ │ └── overfeat_rezoom.json │ ├── lung_test.txt │ ├── lung_train.txt │ ├── lung_val.txt │ ├── make_json.py │ ├── nohup.out │ ├── nohup.out.old │ ├── nohup_resnet.log │ ├── requirements.txt │ ├── run.sh │ ├── run_convert_txt2json.sh │ ├── run_lstm_resnet.sh │ ├── test.sh │ ├── test_inception.sh │ ├── test_resnet.sh │ ├── train.py │ ├── utils/ │ │ ├── Makefile │ │ ├── __init__.py │ │ ├── annolist/ │ │ │ ├── AnnoList_pb2.py │ │ │ ├── AnnotationLib.py │ │ │ ├── LICENSE_FOR_THIS_FOLDER │ │ │ ├── MatPlotter.py │ │ │ ├── PalLib.py │ │ │ ├── __init__.py │ │ │ ├── doRPC.py │ │ │ ├── ma_utils.py │ │ │ └── plotSimple.py │ │ ├── data_utils.py │ │ ├── googlenet_load.py │ │ ├── hungarian/ │ │ │ ├── hungarian.cc │ │ │ ├── hungarian.cpp │ │ │ └── hungarian.hpp │ │ ├── rect.py │ │ ├── slim_nets/ │ │ │ ├── __init__.py │ │ │ ├── inception_v1.py │ │ │ ├── resnet_utils.py │ │ │ └── resnet_v1.py │ │ ├── stitch_rects.cpp │ │ ├── stitch_rects.hpp │ │ ├── stitch_wrapper.py │ │ ├── stitch_wrapper.pyx │ │ └── train_utils.py │ └── view_weights.py ├── README.docx ├── README.md ├── api_lidc/ │ ├── annotation2.py │ ├── company_GE.txt │ ├── get_dat.sh │ ├── get_list.sh │ ├── get_txt.sh │ ├── information.txt │ ├── list.py │ ├── list2.py │ ├── nodule2.py │ ├── nodule_structs.py │ ├── nohup2.log │ ├── read_file.py │ ├── te.py │ ├── test17.py │ └── write_bin_file.py ├── cnn_3d/ │ ├── 3d_cnn_lung_detect.py │ ├── 3d_cnn_lung_test.py │ └── detect2.py ├── inception_vgg_table.docx ├── lidc-idri nodule counts (6-23-2015).xlsx ├── pylung/ │ ├── __init__.py │ ├── annotation.py │ ├── base.py │ ├── detector.py │ ├── filters/ │ │ ├── __init__.py │ │ ├── filter.py │ │ ├── parenchyma.py │ │ └── vgg.py │ ├── libinfo.py │ ├── models/ │ │ ├── __init__.py │ │ ├── chest_detect.py │ │ ├── test.py │ │ ├── train.py │ │ └── vgg_classifier.py │ ├── nodule_structs.py │ ├── tests/ │ │ ├── a.csv │ │ ├── clean.sh │ │ ├── demo.py │ │ ├── main.py │ │ ├── predict.py │ │ ├── run.sh │ │ ├── test.csv │ │ ├── test_detect.py │ │ ├── tmp.py │ │ └── train.py │ └── utils.py └── tcia-diagnosis-data-2012-04-20.xls