├── DUC_data └── GET_DATA.txt ├── Phase1_SCU_writing ├── AMT_task │ ├── task_designLayout.html │ └── task_properties.txt ├── dataset │ ├── DUC2005 │ │ ├── batch1.csv │ │ └── batch2.csv │ ├── DUC2006 │ │ ├── batch1.csv │ │ └── batch2.csv │ ├── README.txt │ └── relevant_topics.txt └── processing_scripts │ ├── post_selectSCUsFromAMT.py │ ├── post_useOtherSCUs.py │ └── pre_createInputForAMT.py ├── Phase2_SCU_testing ├── AMT_task │ ├── task_designLayout.html │ └── task_properties.txt ├── processing_scripts │ ├── post_calculateScores.py │ ├── post_calculateScores_newSystem.py │ ├── pre_createInputForAMT.py │ └── pre_createInputForAMT_newSystem.py └── score_extraction │ ├── 2005ManualScoresAvg.csv │ ├── 2005RougeScoresAvg.csv │ ├── 2006ManualScoresAvg.csv │ ├── 2006RougeScoresAvg.csv │ ├── getManualScores.py │ ├── getRougeScores.py │ └── getScoresOnSpecificEvents.py └── README.md /DUC_data/GET_DATA.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OriShapira/LitePyramids/HEAD/DUC_data/GET_DATA.txt -------------------------------------------------------------------------------- /Phase1_SCU_writing/AMT_task/task_designLayout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OriShapira/LitePyramids/HEAD/Phase1_SCU_writing/AMT_task/task_designLayout.html -------------------------------------------------------------------------------- /Phase1_SCU_writing/AMT_task/task_properties.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OriShapira/LitePyramids/HEAD/Phase1_SCU_writing/AMT_task/task_properties.txt -------------------------------------------------------------------------------- /Phase1_SCU_writing/dataset/DUC2005/batch1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OriShapira/LitePyramids/HEAD/Phase1_SCU_writing/dataset/DUC2005/batch1.csv -------------------------------------------------------------------------------- /Phase1_SCU_writing/dataset/DUC2005/batch2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OriShapira/LitePyramids/HEAD/Phase1_SCU_writing/dataset/DUC2005/batch2.csv -------------------------------------------------------------------------------- /Phase1_SCU_writing/dataset/DUC2006/batch1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OriShapira/LitePyramids/HEAD/Phase1_SCU_writing/dataset/DUC2006/batch1.csv -------------------------------------------------------------------------------- /Phase1_SCU_writing/dataset/DUC2006/batch2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OriShapira/LitePyramids/HEAD/Phase1_SCU_writing/dataset/DUC2006/batch2.csv -------------------------------------------------------------------------------- /Phase1_SCU_writing/dataset/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OriShapira/LitePyramids/HEAD/Phase1_SCU_writing/dataset/README.txt -------------------------------------------------------------------------------- /Phase1_SCU_writing/dataset/relevant_topics.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OriShapira/LitePyramids/HEAD/Phase1_SCU_writing/dataset/relevant_topics.txt -------------------------------------------------------------------------------- /Phase1_SCU_writing/processing_scripts/post_selectSCUsFromAMT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OriShapira/LitePyramids/HEAD/Phase1_SCU_writing/processing_scripts/post_selectSCUsFromAMT.py -------------------------------------------------------------------------------- /Phase1_SCU_writing/processing_scripts/post_useOtherSCUs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OriShapira/LitePyramids/HEAD/Phase1_SCU_writing/processing_scripts/post_useOtherSCUs.py -------------------------------------------------------------------------------- /Phase1_SCU_writing/processing_scripts/pre_createInputForAMT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OriShapira/LitePyramids/HEAD/Phase1_SCU_writing/processing_scripts/pre_createInputForAMT.py -------------------------------------------------------------------------------- /Phase2_SCU_testing/AMT_task/task_designLayout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OriShapira/LitePyramids/HEAD/Phase2_SCU_testing/AMT_task/task_designLayout.html -------------------------------------------------------------------------------- /Phase2_SCU_testing/AMT_task/task_properties.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OriShapira/LitePyramids/HEAD/Phase2_SCU_testing/AMT_task/task_properties.txt -------------------------------------------------------------------------------- /Phase2_SCU_testing/processing_scripts/post_calculateScores.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OriShapira/LitePyramids/HEAD/Phase2_SCU_testing/processing_scripts/post_calculateScores.py -------------------------------------------------------------------------------- /Phase2_SCU_testing/processing_scripts/post_calculateScores_newSystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OriShapira/LitePyramids/HEAD/Phase2_SCU_testing/processing_scripts/post_calculateScores_newSystem.py -------------------------------------------------------------------------------- /Phase2_SCU_testing/processing_scripts/pre_createInputForAMT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OriShapira/LitePyramids/HEAD/Phase2_SCU_testing/processing_scripts/pre_createInputForAMT.py -------------------------------------------------------------------------------- /Phase2_SCU_testing/processing_scripts/pre_createInputForAMT_newSystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OriShapira/LitePyramids/HEAD/Phase2_SCU_testing/processing_scripts/pre_createInputForAMT_newSystem.py -------------------------------------------------------------------------------- /Phase2_SCU_testing/score_extraction/2005ManualScoresAvg.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OriShapira/LitePyramids/HEAD/Phase2_SCU_testing/score_extraction/2005ManualScoresAvg.csv -------------------------------------------------------------------------------- /Phase2_SCU_testing/score_extraction/2005RougeScoresAvg.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OriShapira/LitePyramids/HEAD/Phase2_SCU_testing/score_extraction/2005RougeScoresAvg.csv -------------------------------------------------------------------------------- /Phase2_SCU_testing/score_extraction/2006ManualScoresAvg.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OriShapira/LitePyramids/HEAD/Phase2_SCU_testing/score_extraction/2006ManualScoresAvg.csv -------------------------------------------------------------------------------- /Phase2_SCU_testing/score_extraction/2006RougeScoresAvg.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OriShapira/LitePyramids/HEAD/Phase2_SCU_testing/score_extraction/2006RougeScoresAvg.csv -------------------------------------------------------------------------------- /Phase2_SCU_testing/score_extraction/getManualScores.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OriShapira/LitePyramids/HEAD/Phase2_SCU_testing/score_extraction/getManualScores.py -------------------------------------------------------------------------------- /Phase2_SCU_testing/score_extraction/getRougeScores.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OriShapira/LitePyramids/HEAD/Phase2_SCU_testing/score_extraction/getRougeScores.py -------------------------------------------------------------------------------- /Phase2_SCU_testing/score_extraction/getScoresOnSpecificEvents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OriShapira/LitePyramids/HEAD/Phase2_SCU_testing/score_extraction/getScoresOnSpecificEvents.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OriShapira/LitePyramids/HEAD/README.md --------------------------------------------------------------------------------