Skip to content

liuweiping2020/acl2017-interactive_summarizer

 
 

Repository files navigation

Interactive Multi-document Summarization Using Joint Optimization and Active Learning for Content Selection Grounded in User Feedback

In this project, we develop a general framework for Interactive Multi-Document Summarization. We propose an extractive multi-document summarization (MDS) system using joint optimization and active learning for content selection grounded in user feedback.

If you reuse this software, please use the following citation:

@inproceedings{TUD-CS-2017-0077,
    title = {Joint Optimization of User-desired Content in Multi-document Summaries by Learning from User Feedback},
    author = {P.V.S., Avinesh and Meyer, Christian M.},
    publisher = {Association for Computational Linguistics},
    volume = {Volume 1: Long Paper},
    booktitle = {Proceedings of the 55th Annual Meeting of the Association for Computational Linguistics (ACL 2017)},
    pages = {(to appear)},
    month = aug,
    year = {2017},
    location = {Vancouver, Canada},
}

Abstract: In this paper, we propose an extractive multi-document summarization (MDS) system using joint optimization and active learning for content selection grounded in user feedback. Our method interactively obtains user feedback to gradually improve the results of a state-of-the-art integer linear programming (ILP) framework for MDS. Our methods complement fully automatic methods in producing high-quality summaries with a minimum number of iterations and feedbacks. We conduct multiple simulation-based experiments and analyze the effect of feedback-based concept selection in the ILP setup in order to maximize the user-desired content in the summary.

Contact person:

Don't hesitate to send us an e-mail or report an issue, if something is broken (and it shouldn't be) or if you have further questions.

This repository contains experimental software and is published for the sole purpose of giving additional background details on the respective publication.

Prerequisites

  • python >= 2.7 (tested with 2.7.6)

Installation

  1. Download ROUGE package from the link and place it in the rouge directory

    mv RELEASE-1.5.5 rouge/
    
  2. Install required python packages.

    pip install -r requirements.txt
    
  3. Download the Standford Parser models and jars from the link

    mv englishPCFG.ser.gz germanPCFG.ser.gz jars/
    mv stanford-parser.jar stanford-parser-3.6.0-models.jar jars/		
    
  4. [Optional] To run the system for active learning models

    Download the Google embeddings (English) from the link

    mkdir -p summarizer/data/embeddings/english
    mv GoogleNews-vectors-negative300.bin.gz summarizer/data/embeddings/english
    

    Download the News, Wikipedia embeddings (German) from the link

    mkdir -p summarizer/data/embeddings/german
    mv 2014_tudarmstadt_german_50mincount.vec summarizer/data/embeddings/german
    
  5. [Optional] To solve ILPs using CPLEX (faster), which can be obtained from IBM here: link. Install the cplex python package.

    cd cplex_installation_dir/python
    python setup install
    

To Run

  1. Make sure that you have the raw datasets available. Each raw dataset needs to be extracted and follow the following directory structure:

     +DUC_TEST
     |
     +--+docs
     |  |
     |  +-+d3103t
     |    | 
     |    +-+ many files
     |  |
     |  +-+d31001t
     |
     +--+models
     |  |
     |  +-+ many files
     |
     +--+topics.xml
    
  2. Before running the pipeline, you have to preprocess the raw datasets using the make_data.py script. Replace the DUC_TEST with appropriate dataset and run the same command.

       python summarizer/data_processer/make_data.py -d DUC_TEST -p summarizer/data/raw  -a parse -l english
    

    The results should then be copied into a directory. We recommend using the --iobasedir argument to set the directory

     +--+datasets/
     |  |
     |  +--+raw/
     |     |
     |     +--+DUC_TEST/
     |     |  |
     |     |  +--+d31013t/	 
     |     |  |
     |     |  +--+docs/
     |     |  |
     |     |  +--+models/
     |     |  |
     |  +--+processed/
     |     |
     |     +--+DUC_TEST/
     |     |  |
     |     |  +--+d31013t/
     |     |  |  |
     |     |  |  +--+docs/
     |     |  |  |
     |     |  |  +--+docs.parsed/
     |     |  |  |
     |     |  |  +--+summaries/
     |     |  |  |
     |     |  |  +--+summaries.parsed/
     |     |  |  |
     |     |  |  +--+summaries.upperbound/
     |     |  |  |
     |     |  |  +--+task.json
     |     |  |
     |     |  +--+...
     |     |
     |     +--+ ...
     |
     +--+embeddings/
     |
     +--+english/
     |  |
     |  +-+GoogleNews-vectors-negative300.bin
     |  |
     |  +-+data/
     |
     +--+german/
        |
        +--+2014_tudarmstadt_german_50mincount.vec
    
  3. python pipeline.py --help for more details

        python pipeline.py --summary_size=100 --oracle_type=accept_reject --data_set=DUC_TEST --summarizer_type=feedback --language=english
        pyhton pipeline.py --summary_size=100 --oracle_type=accept_reject --data_set=DUC_TEST --summarizer_type=baselines --language=english --rouge=rouge/RELEASE-1.5.5/ --iobasedir=outputs/
    
  4. Bash file for the experiments in the paper and sample outputs of the system for DBS corpus

        cat bash.sh
        ls outputs/DBS
    

Dataset notes

  • In DUC2004, task 5, topic d151h, document APW20000104.0268 produces and

    xml.etree.ElementTree.ParseError: mismatched tag: line 78, column 2
    

    The reason is a missing opening tag <P> in row 72.

  • In DUC2006, topic D0614E, Model Summary B D0614.M.250.E.B. To fix it, Chrétien has to be replaced by Chretien. (Two times)

Windows setup

Verified by one (1) user.

  1. download + install anaconda2 python 2.7.12 64bit from https://www.continuum.io/downloads#windows , e.g. https://repo.continuum.io/archive/Anaconda2-4.2.0-Windows-x86_64.exe

    • take care that it is NOT python 2.7.13, as that version contains a regression bug which breaks pulp

    TypeError: LoadLibrary() argument 1 must be string, not unicode

    see http://bugs.python.org/issue29294

  2. download + install strawberry perl 64bit. In my case, Strawberry Perl (5.24.0.1-64bit).

  3. download + install eclipse neon.2

  4. download + instlal eclipse pydev

  5. install perl module XML::DOM

  6. install python modules

    	pip install -r requirements.txt
    
  7. configure eclipse pydev run configuration as set up here:

    --summary_size=100 --oracle_type=accept_reject --data_set=TEST --summarizer_type=feedback --language=english

  8. Create a directory "tmp" on your root, e.g. "C:\tmp"!

altText

About

A general framework for Interactive Multi-Document Summarization

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 75.9%
  • C 3.9%
  • GAP 3.6%
  • C++ 3.1%
  • Forth 3.0%
  • E 3.0%
  • Other 7.5%