├── Readme.md ├── Readme_zh.md └── fastSum ├── Baseline ├── Readme.md ├── Readme_zh.md ├── config │ ├── deeplstm.config │ ├── seqlab.config │ └── transformer.config ├── model │ ├── DeepLSTM.py │ ├── Encoder.py │ ├── LSTMModel.py │ ├── Loss.py │ ├── Metric.py │ ├── TForiginal.py │ ├── TransformerModel.py │ └── __init__.py ├── test_data.py ├── testdata │ ├── test.jsonl │ ├── train.jsonl │ ├── val.jsonl │ └── vocab ├── tools │ ├── Callback.py │ ├── PositionEmbedding.py │ ├── __init__.py │ ├── data.py │ ├── logger.py │ └── utils.py ├── train.py └── transformer │ ├── Beam.py │ ├── Constants.py │ ├── Layers.py │ ├── Models.py │ ├── Modules.py │ ├── Optim.py │ ├── SubLayers.py │ ├── Translator.py │ └── __init__.py ├── Dataloader ├── Readme.md ├── Readme_zh.md ├── example.py └── summarizationLoader.py ├── MatchSum ├── Readme.md ├── Readme_zh.md ├── callback.py ├── dataloader.py ├── metrics.py ├── model.py ├── preprocess │ ├── get_candidate.py │ └── test_cnndm.jsonl ├── train_matching.py └── utils.py ├── PointerGen ├── Readme.md ├── Readme_zh.md ├── data_util │ ├── __pycache__ │ │ ├── config.cpython-37.pyc │ │ ├── data.cpython-37.pyc │ │ ├── logging.cpython-37.pyc │ │ └── utils.cpython-37.pyc │ ├── data.py │ ├── logging.py │ └── utils.py ├── decode.py ├── model │ ├── __pycache__ │ │ ├── loss.cpython-37.pyc │ │ ├── metric.cpython-37.pyc │ │ └── model.cpython-37.pyc │ ├── loss.py │ ├── metric.py │ ├── model.bak.py │ ├── model.py │ └── mq ├── train.py └── training_ptr_gen │ ├── __pycache__ │ └── callback.cpython-37.pyc │ └── callback.py ├── PreSum ├── Readme.md ├── Readme_zh.md ├── __init__.py ├── callback.py ├── dataloader.py ├── metrics.py ├── models │ ├── __init__.py │ ├── decoder.py │ ├── encoder.py │ ├── model_builder.py │ ├── neural.py │ └── optimizers.py ├── others │ ├── __init__.py │ ├── logging.py │ ├── tokenization.py │ └── utils.py ├── preprocess.py ├── train_abstractive.py ├── train_extractive.py ├── train_presum.py ├── trainer.py └── translate │ ├── __init__.py │ ├── beam.py │ └── penalties.py └── resources └── ROUGE ├── DB_File-1.835.tar.gz ├── DB_File-1.835 ├── Changes ├── DB_File.bs ├── DB_File.c ├── DB_File.o ├── DB_File.pm ├── DB_File.pm.bak ├── DB_File.xs ├── DB_File_BS ├── MANIFEST ├── META.json ├── META.yml ├── MYMETA.json ├── MYMETA.yml ├── Makefile ├── Makefile.PL ├── README ├── blib │ ├── arch │ │ ├── .exists │ │ └── auto │ │ │ └── DB_File │ │ │ ├── .exists │ │ │ └── DB_File.so │ ├── bin │ │ └── .exists │ ├── lib │ │ ├── .exists │ │ ├── DB_File.pm │ │ └── auto │ │ │ └── DB_File │ │ │ └── .exists │ ├── man1 │ │ └── .exists │ ├── man3 │ │ ├── .exists │ │ └── DB_File.3pm │ └── script │ │ └── .exists ├── config.in ├── constants.h ├── constants.xs ├── dbinfo ├── fallback.h ├── fallback.xs ├── hints │ ├── dynixptx.pl │ └── sco.pl ├── patches │ ├── 5.004 │ ├── 5.004_01 │ ├── 5.004_02 │ ├── 5.004_03 │ ├── 5.004_04 │ ├── 5.004_05 │ ├── 5.005 │ ├── 5.005_01 │ ├── 5.005_02 │ ├── 5.005_03 │ └── 5.6.0 ├── pm_to_blib ├── ppport.h ├── t │ ├── db-btree.t │ ├── db-btree.t.bak │ ├── db-hash.t │ ├── db-hash.t.bak │ ├── db-recno.t │ ├── db-recno.t.bak │ ├── pod.t │ └── pod.t.bak ├── typemap ├── version.c └── version.o ├── RELEASE-1.5.5 ├── README.txt ├── RELEASE-NOTE.txt ├── ROUGE-1.5.5.pl ├── data │ ├── WordNet-1.6-Exceptions │ │ ├── WordNet-1.6.exc.db │ │ ├── adj.exc │ │ ├── adv.exc │ │ ├── buildExeptionDB.pl │ │ ├── noun.exc │ │ └── verb.exc │ ├── WordNet-1.6.exc.db │ ├── WordNet-2.0-Exceptions │ │ ├── WordNet-2.0.exc.db │ │ ├── adj.exc │ │ ├── adv.exc │ │ ├── buildExeptionDB.pl │ │ ├── noun.exc │ │ └── verb.exc │ ├── WordNet-2.0.exc.db │ └── smart_common_words.txt ├── docs │ ├── ACL2004.pdf │ ├── COLING2004.pdf │ ├── NAACL2003.pdf │ ├── NTCIR4.pdf │ ├── ROUGE-Note-v1.4.2.pdf │ └── WAS2004.pdf ├── runROUGE-test.pl ├── sample-output │ ├── DUC2002-BE-F.in.26.lst.out │ ├── DUC2002-BE-F.in.26.simple.out │ ├── DUC2002-BE-L.in.26.lst.out │ ├── DUC2002-BE-L.in.26.simple.out │ ├── DUC2002-ROUGE.in.26.spl.lst.out │ ├── DUC2002-ROUGE.in.26.spl.out │ ├── ROUGE-test-c95-2-1-U-r1000-n4-w1.2-a-m-s.out │ ├── ROUGE-test-c95-2-1-U-r1000-n4-w1.2-a-m.out │ ├── ROUGE-test-c95-2-1-U-r1000-n4-w1.2-a.out │ ├── ROUGE-test-c95-2-1-U-r1000-n4-w1.2-b75-a-m-s.out │ ├── ROUGE-test-c95-2-1-U-r1000-n4-w1.2-b75-a-m.out │ ├── ROUGE-test-c95-2-1-U-r1000-n4-w1.2-b75-a.out │ ├── ROUGE-test-c95-2-1-U-r1000-n4-w1.2-l10-a-m-s.out │ ├── ROUGE-test-c95-2-1-U-r1000-n4-w1.2-l10-a-m.out │ ├── ROUGE-test-c95-2-1-U-r1000-n4-w1.2-l10-a.out │ ├── verify-c95-2-1-U-r1000-n4-w1.2-b75-a-m-s.out │ └── verify-spl-c95-2-1-U-r1000-n4-w1.2-b75-a-m-s.out └── sample-test │ ├── DUC2002-BE-F.in.26.lst │ ├── DUC2002-BE-F.in.26.simple.xml │ ├── DUC2002-BE-L.in.26.lst │ ├── DUC2002-BE-L.in.26.simple.xml │ ├── DUC2002-ROUGE.in.26.spl.lst │ ├── DUC2002-ROUGE.in.26.spl.xml │ ├── DUC2002 │ ├── BE-F │ │ ├── D061.M.100.J.26.mini.be │ │ ├── D061.M.100.J.I.mini.be │ │ ├── D062.M.100.J.26.mini.be │ │ ├── D062.M.100.J.A.mini.be │ │ ├── D063.M.100.J.26.mini.be │ │ ├── D063.M.100.J.E.mini.be │ │ ├── D064.M.100.J.26.mini.be │ │ ├── D064.M.100.J.B.mini.be │ │ ├── D065.M.100.J.26.mini.be │ │ ├── D065.M.100.J.F.mini.be │ │ ├── D066.M.100.J.26.mini.be │ │ ├── D066.M.100.J.I.mini.be │ │ ├── D067.M.100.F.26.mini.be │ │ ├── D067.M.100.F.I.mini.be │ │ ├── D068.M.100.F.26.mini.be │ │ ├── D068.M.100.F.A.mini.be │ │ ├── D069.M.100.F.26.mini.be │ │ ├── D069.M.100.F.C.mini.be │ │ ├── D070.M.100.F.26.mini.be │ │ ├── D070.M.100.F.D.mini.be │ │ ├── D071.M.100.F.26.mini.be │ │ ├── D071.M.100.F.D.mini.be │ │ ├── D072.M.100.F.26.mini.be │ │ ├── D072.M.100.F.J.mini.be │ │ ├── D073.M.100.B.26.mini.be │ │ ├── D073.M.100.B.J.mini.be │ │ ├── D074.M.100.B.26.mini.be │ │ ├── D074.M.100.B.A.mini.be │ │ ├── D075.M.100.B.26.mini.be │ │ ├── D075.M.100.B.E.mini.be │ │ ├── D076.M.100.B.26.mini.be │ │ ├── D076.M.100.B.E.mini.be │ │ ├── D077.M.100.B.26.mini.be │ │ ├── D077.M.100.B.H.mini.be │ │ ├── D078.M.100.B.26.mini.be │ │ ├── D078.M.100.B.J.mini.be │ │ ├── D079.M.100.A.26.mini.be │ │ ├── D079.M.100.A.I.mini.be │ │ ├── D080.M.100.A.26.mini.be │ │ ├── D080.M.100.A.E.mini.be │ │ ├── D081.M.100.A.26.mini.be │ │ ├── D081.M.100.A.D.mini.be │ │ ├── D082.M.100.A.26.mini.be │ │ ├── D082.M.100.A.C.mini.be │ │ ├── D083.M.100.A.26.mini.be │ │ ├── D083.M.100.A.G.mini.be │ │ ├── D084.M.100.A.26.mini.be │ │ ├── D084.M.100.A.H.mini.be │ │ ├── D085.M.100.D.26.mini.be │ │ ├── D085.M.100.D.H.mini.be │ │ ├── D086.M.100.D.26.mini.be │ │ ├── D086.M.100.D.B.mini.be │ │ ├── D087.M.100.D.26.mini.be │ │ ├── D087.M.100.D.B.mini.be │ │ ├── D089.M.100.D.26.mini.be │ │ ├── D089.M.100.D.G.mini.be │ │ ├── D090.M.100.D.26.mini.be │ │ ├── D090.M.100.D.J.mini.be │ │ ├── D091.M.100.C.26.mini.be │ │ ├── D091.M.100.C.F.mini.be │ │ ├── D092.M.100.C.26.mini.be │ │ ├── D092.M.100.C.A.mini.be │ │ ├── D093.M.100.C.26.mini.be │ │ ├── D093.M.100.C.H.mini.be │ │ ├── D094.M.100.C.26.mini.be │ │ ├── D094.M.100.C.D.mini.be │ │ ├── D095.M.100.C.26.mini.be │ │ ├── D095.M.100.C.H.mini.be │ │ ├── D096.M.100.C.26.mini.be │ │ ├── D096.M.100.C.G.mini.be │ │ ├── D097.M.100.E.26.mini.be │ │ ├── D097.M.100.E.J.mini.be │ │ ├── D098.M.100.E.26.mini.be │ │ ├── D098.M.100.E.A.mini.be │ │ ├── D099.M.100.E.26.mini.be │ │ ├── D099.M.100.E.D.mini.be │ │ ├── D100.M.100.E.26.mini.be │ │ ├── D100.M.100.E.F.mini.be │ │ ├── D101.M.100.E.26.mini.be │ │ ├── D101.M.100.E.G.mini.be │ │ ├── D102.M.100.E.26.mini.be │ │ ├── D102.M.100.E.D.mini.be │ │ ├── D103.M.100.G.26.mini.be │ │ ├── D103.M.100.G.A.mini.be │ │ ├── D104.M.100.G.26.mini.be │ │ ├── D104.M.100.G.C.mini.be │ │ ├── D105.M.100.G.26.mini.be │ │ ├── D105.M.100.G.C.mini.be │ │ ├── D106.M.100.G.26.mini.be │ │ ├── D106.M.100.G.F.mini.be │ │ ├── D107.M.100.G.26.mini.be │ │ ├── D107.M.100.G.H.mini.be │ │ ├── D108.M.100.G.26.mini.be │ │ ├── D108.M.100.G.I.mini.be │ │ ├── D109.M.100.H.26.mini.be │ │ ├── D109.M.100.H.B.mini.be │ │ ├── D110.M.100.H.26.mini.be │ │ ├── D110.M.100.H.C.mini.be │ │ ├── D111.M.100.H.26.mini.be │ │ ├── D111.M.100.H.C.mini.be │ │ ├── D112.M.100.H.26.mini.be │ │ ├── D112.M.100.H.E.mini.be │ │ ├── D113.M.100.H.26.mini.be │ │ ├── D113.M.100.H.I.mini.be │ │ ├── D114.M.100.H.26.mini.be │ │ ├── D114.M.100.H.F.mini.be │ │ ├── D115.M.100.I.26.mini.be │ │ ├── D115.M.100.I.B.mini.be │ │ ├── D116.M.100.I.26.mini.be │ │ ├── D116.M.100.I.B.mini.be │ │ ├── D117.M.100.I.26.mini.be │ │ ├── D117.M.100.I.G.mini.be │ │ ├── D118.M.100.I.26.mini.be │ │ ├── D118.M.100.I.E.mini.be │ │ ├── D119.M.100.I.26.mini.be │ │ ├── D119.M.100.I.F.mini.be │ │ ├── D120.M.100.I.26.mini.be │ │ └── D120.M.100.I.J.mini.be │ ├── BE-L │ │ ├── D061.M.100.J.26.be │ │ ├── D061.M.100.J.I.be │ │ ├── D062.M.100.J.26.be │ │ ├── D062.M.100.J.A.be │ │ ├── D063.M.100.J.26.be │ │ ├── D063.M.100.J.E.be │ │ ├── D064.M.100.J.26.be │ │ ├── D064.M.100.J.B.be │ │ ├── D065.M.100.J.26.be │ │ ├── D065.M.100.J.F.be │ │ ├── D066.M.100.J.26.be │ │ ├── D066.M.100.J.I.be │ │ ├── D067.M.100.F.26.be │ │ ├── D067.M.100.F.I.be │ │ ├── D068.M.100.F.26.be │ │ ├── D068.M.100.F.A.be │ │ ├── D069.M.100.F.26.be │ │ ├── D069.M.100.F.C.be │ │ ├── D070.M.100.F.26.be │ │ ├── D070.M.100.F.D.be │ │ ├── D071.M.100.F.26.be │ │ ├── D071.M.100.F.D.be │ │ ├── D072.M.100.F.26.be │ │ ├── D072.M.100.F.J.be │ │ ├── D073.M.100.B.26.be │ │ ├── D073.M.100.B.J.be │ │ ├── D074.M.100.B.26.be │ │ ├── D074.M.100.B.A.be │ │ ├── D075.M.100.B.26.be │ │ ├── D075.M.100.B.E.be │ │ ├── D076.M.100.B.26.be │ │ ├── D076.M.100.B.E.be │ │ ├── D077.M.100.B.26.be │ │ ├── D077.M.100.B.H.be │ │ ├── D078.M.100.B.26.be │ │ ├── D078.M.100.B.J.be │ │ ├── D079.M.100.A.26.be │ │ ├── D079.M.100.A.I.be │ │ ├── D080.M.100.A.26.be │ │ ├── D080.M.100.A.E.be │ │ ├── D081.M.100.A.26.be │ │ ├── D081.M.100.A.D.be │ │ ├── D082.M.100.A.26.be │ │ ├── D082.M.100.A.C.be │ │ ├── D083.M.100.A.26.be │ │ ├── D083.M.100.A.G.be │ │ ├── D084.M.100.A.26.be │ │ ├── D084.M.100.A.H.be │ │ ├── D085.M.100.D.26.be │ │ ├── D085.M.100.D.H.be │ │ ├── D086.M.100.D.26.be │ │ ├── D086.M.100.D.B.be │ │ ├── D087.M.100.D.26.be │ │ ├── D087.M.100.D.B.be │ │ ├── D089.M.100.D.26.be │ │ ├── D089.M.100.D.G.be │ │ ├── D090.M.100.D.26.be │ │ ├── D090.M.100.D.J.be │ │ ├── D091.M.100.C.26.be │ │ ├── D091.M.100.C.F.be │ │ ├── D092.M.100.C.26.be │ │ ├── D092.M.100.C.A.be │ │ ├── D093.M.100.C.26.be │ │ ├── D093.M.100.C.H.be │ │ ├── D094.M.100.C.26.be │ │ ├── D094.M.100.C.D.be │ │ ├── D095.M.100.C.26.be │ │ ├── D095.M.100.C.H.be │ │ ├── D096.M.100.C.26.be │ │ ├── D096.M.100.C.G.be │ │ ├── D097.M.100.E.26.be │ │ ├── D097.M.100.E.J.be │ │ ├── D098.M.100.E.26.be │ │ ├── D098.M.100.E.A.be │ │ ├── D099.M.100.E.26.be │ │ ├── D099.M.100.E.D.be │ │ ├── D100.M.100.E.26.be │ │ ├── D100.M.100.E.F.be │ │ ├── D101.M.100.E.26.be │ │ ├── D101.M.100.E.G.be │ │ ├── D102.M.100.E.26.be │ │ ├── D102.M.100.E.D.be │ │ ├── D103.M.100.G.26.be │ │ ├── D103.M.100.G.A.be │ │ ├── D104.M.100.G.26.be │ │ ├── D104.M.100.G.C.be │ │ ├── D105.M.100.G.26.be │ │ ├── D105.M.100.G.C.be │ │ ├── D106.M.100.G.26.be │ │ ├── D106.M.100.G.F.be │ │ ├── D107.M.100.G.26.be │ │ ├── D107.M.100.G.H.be │ │ ├── D108.M.100.G.26.be │ │ ├── D108.M.100.G.I.be │ │ ├── D109.M.100.H.26.be │ │ ├── D109.M.100.H.B.be │ │ ├── D110.M.100.H.26.be │ │ ├── D110.M.100.H.C.be │ │ ├── D111.M.100.H.26.be │ │ ├── D111.M.100.H.C.be │ │ ├── D112.M.100.H.26.be │ │ ├── D112.M.100.H.E.be │ │ ├── D113.M.100.H.26.be │ │ ├── D113.M.100.H.I.be │ │ ├── D114.M.100.H.26.be │ │ ├── D114.M.100.H.F.be │ │ ├── D115.M.100.I.26.be │ │ ├── D115.M.100.I.B.be │ │ ├── D116.M.100.I.26.be │ │ ├── D116.M.100.I.B.be │ │ ├── D117.M.100.I.26.be │ │ ├── D117.M.100.I.G.be │ │ ├── D118.M.100.I.26.be │ │ ├── D118.M.100.I.E.be │ │ ├── D119.M.100.I.26.be │ │ ├── D119.M.100.I.F.be │ │ ├── D120.M.100.I.26.be │ │ └── D120.M.100.I.J.be │ └── docs-spl │ │ ├── D061.M.100.J.26.spl │ │ ├── D061.M.100.J.I.spl │ │ ├── D062.M.100.J.26.spl │ │ ├── D062.M.100.J.A.spl │ │ ├── D063.M.100.J.26.spl │ │ ├── D063.M.100.J.E.spl │ │ ├── D064.M.100.J.26.spl │ │ ├── D064.M.100.J.B.spl │ │ ├── D065.M.100.J.26.spl │ │ ├── D065.M.100.J.F.spl │ │ ├── D066.M.100.J.26.spl │ │ ├── D066.M.100.J.I.spl │ │ ├── D067.M.100.F.26.spl │ │ ├── D067.M.100.F.I.spl │ │ ├── D068.M.100.F.26.spl │ │ ├── D068.M.100.F.A.spl │ │ ├── D069.M.100.F.26.spl │ │ ├── D069.M.100.F.C.spl │ │ ├── D070.M.100.F.26.spl │ │ ├── D070.M.100.F.D.spl │ │ ├── D071.M.100.F.26.spl │ │ ├── D071.M.100.F.D.spl │ │ ├── D072.M.100.F.26.spl │ │ ├── D072.M.100.F.J.spl │ │ ├── D073.M.100.B.26.spl │ │ ├── D073.M.100.B.J.spl │ │ ├── D074.M.100.B.26.spl │ │ ├── D074.M.100.B.A.spl │ │ ├── D075.M.100.B.26.spl │ │ ├── D075.M.100.B.E.spl │ │ ├── D076.M.100.B.26.spl │ │ ├── D076.M.100.B.E.spl │ │ ├── D077.M.100.B.26.spl │ │ ├── D077.M.100.B.H.spl │ │ ├── D078.M.100.B.26.spl │ │ ├── D078.M.100.B.J.spl │ │ ├── D079.M.100.A.26.spl │ │ ├── D079.M.100.A.I.spl │ │ ├── D080.M.100.A.26.spl │ │ ├── D080.M.100.A.E.spl │ │ ├── D081.M.100.A.26.spl │ │ ├── D081.M.100.A.D.spl │ │ ├── D082.M.100.A.26.spl │ │ ├── D082.M.100.A.C.spl │ │ ├── D083.M.100.A.26.spl │ │ ├── D083.M.100.A.G.spl │ │ ├── D084.M.100.A.26.spl │ │ ├── D084.M.100.A.H.spl │ │ ├── D085.M.100.D.26.spl │ │ ├── D085.M.100.D.H.spl │ │ ├── D086.M.100.D.26.spl │ │ ├── D086.M.100.D.B.spl │ │ ├── D087.M.100.D.26.spl │ │ ├── D087.M.100.D.B.spl │ │ ├── D089.M.100.D.26.spl │ │ ├── D089.M.100.D.G.spl │ │ ├── D090.M.100.D.26.spl │ │ ├── D090.M.100.D.J.spl │ │ ├── D091.M.100.C.26.spl │ │ ├── D091.M.100.C.F.spl │ │ ├── D092.M.100.C.26.spl │ │ ├── D092.M.100.C.A.spl │ │ ├── D093.M.100.C.26.spl │ │ ├── D093.M.100.C.H.spl │ │ ├── D094.M.100.C.26.spl │ │ ├── D094.M.100.C.D.spl │ │ ├── D095.M.100.C.26.spl │ │ ├── D095.M.100.C.H.spl │ │ ├── D096.M.100.C.26.spl │ │ ├── D096.M.100.C.G.spl │ │ ├── D097.M.100.E.26.spl │ │ ├── D097.M.100.E.J.spl │ │ ├── D098.M.100.E.26.spl │ │ ├── D098.M.100.E.A.spl │ │ ├── D099.M.100.E.26.spl │ │ ├── D099.M.100.E.D.spl │ │ ├── D100.M.100.E.26.spl │ │ ├── D100.M.100.E.F.spl │ │ ├── D101.M.100.E.26.spl │ │ ├── D101.M.100.E.G.spl │ │ ├── D102.M.100.E.26.spl │ │ ├── D102.M.100.E.D.spl │ │ ├── D103.M.100.G.26.spl │ │ ├── D103.M.100.G.A.spl │ │ ├── D104.M.100.G.26.spl │ │ ├── D104.M.100.G.C.spl │ │ ├── D105.M.100.G.26.spl │ │ ├── D105.M.100.G.C.spl │ │ ├── D106.M.100.G.26.spl │ │ ├── D106.M.100.G.F.spl │ │ ├── D107.M.100.G.26.spl │ │ ├── D107.M.100.G.H.spl │ │ ├── D108.M.100.G.26.spl │ │ ├── D108.M.100.G.I.spl │ │ ├── D109.M.100.H.26.spl │ │ ├── D109.M.100.H.B.spl │ │ ├── D110.M.100.H.26.spl │ │ ├── D110.M.100.H.C.spl │ │ ├── D111.M.100.H.26.spl │ │ ├── D111.M.100.H.C.spl │ │ ├── D112.M.100.H.26.spl │ │ ├── D112.M.100.H.E.spl │ │ ├── D113.M.100.H.26.spl │ │ ├── D113.M.100.H.I.spl │ │ ├── D114.M.100.H.26.spl │ │ ├── D114.M.100.H.F.spl │ │ ├── D115.M.100.I.26.spl │ │ ├── D115.M.100.I.B.spl │ │ ├── D116.M.100.I.26.spl │ │ ├── D116.M.100.I.B.spl │ │ ├── D117.M.100.I.26.spl │ │ ├── D117.M.100.I.G.spl │ │ ├── D118.M.100.I.26.spl │ │ ├── D118.M.100.I.E.spl │ │ ├── D119.M.100.I.26.spl │ │ ├── D119.M.100.I.F.spl │ │ ├── D120.M.100.I.26.spl │ │ └── D120.M.100.I.J.spl │ ├── ROUGE-test.xml │ ├── SL2003 │ ├── models │ │ ├── SL.P.10.R.A.SL062003-01.html │ │ ├── SL.P.10.R.A.SL062003-02.html │ │ ├── SL.P.10.R.A.SL062003-03.html │ │ ├── SL.P.10.R.A.SL062003-04.html │ │ ├── SL.P.10.R.A.SL062003-05.html │ │ ├── SL.P.10.R.A.SL062003-06.html │ │ ├── SL.P.10.R.A.SL062003-07.html │ │ ├── SL.P.10.R.A.SL062003-08.html │ │ ├── SL.P.10.R.A.SL062003-09.html │ │ ├── SL.P.10.R.A.SL062003-10.html │ │ ├── SL.P.10.R.A.SL062003-11.html │ │ ├── SL.P.10.R.A.SL062003-12.html │ │ ├── SL.P.10.R.A.SL062003-13.html │ │ ├── SL.P.10.R.A.SL062003-14.html │ │ ├── SL.P.10.R.A.SL062003-15.html │ │ ├── SL.P.10.R.A.SL062003-16.html │ │ ├── SL.P.10.R.A.SL062003-17.html │ │ ├── SL.P.10.R.A.SL062003-18.html │ │ ├── SL.P.10.R.A.SL062003-19.html │ │ ├── SL.P.10.R.A.SL062003-20.html │ │ ├── SL.P.10.R.A.SL062003-21.html │ │ ├── SL.P.10.R.A.SL062003-22.html │ │ ├── SL.P.10.R.A.SL062003-23.html │ │ ├── SL.P.10.R.A.SL062003-24.html │ │ ├── SL.P.10.R.A.SL062003-25.html │ │ ├── SL.P.10.R.B.SL062003-01.html │ │ ├── SL.P.10.R.B.SL062003-02.html │ │ ├── SL.P.10.R.B.SL062003-03.html │ │ ├── SL.P.10.R.B.SL062003-04.html │ │ ├── SL.P.10.R.B.SL062003-05.html │ │ ├── SL.P.10.R.B.SL062003-06.html │ │ ├── SL.P.10.R.B.SL062003-07.html │ │ ├── SL.P.10.R.B.SL062003-08.html │ │ ├── SL.P.10.R.B.SL062003-09.html │ │ ├── SL.P.10.R.B.SL062003-10.html │ │ ├── SL.P.10.R.B.SL062003-11.html │ │ ├── SL.P.10.R.B.SL062003-12.html │ │ ├── SL.P.10.R.B.SL062003-13.html │ │ ├── SL.P.10.R.B.SL062003-14.html │ │ ├── SL.P.10.R.B.SL062003-15.html │ │ ├── SL.P.10.R.B.SL062003-16.html │ │ ├── SL.P.10.R.B.SL062003-17.html │ │ ├── SL.P.10.R.B.SL062003-18.html │ │ ├── SL.P.10.R.B.SL062003-19.html │ │ ├── SL.P.10.R.B.SL062003-20.html │ │ ├── SL.P.10.R.B.SL062003-21.html │ │ ├── SL.P.10.R.B.SL062003-22.html │ │ ├── SL.P.10.R.B.SL062003-23.html │ │ ├── SL.P.10.R.B.SL062003-24.html │ │ ├── SL.P.10.R.B.SL062003-25.html │ │ ├── SL.P.10.R.C.SL062003-01.html │ │ ├── SL.P.10.R.C.SL062003-02.html │ │ ├── SL.P.10.R.C.SL062003-03.html │ │ ├── SL.P.10.R.C.SL062003-04.html │ │ ├── SL.P.10.R.C.SL062003-05.html │ │ ├── SL.P.10.R.C.SL062003-06.html │ │ ├── SL.P.10.R.C.SL062003-07.html │ │ ├── SL.P.10.R.C.SL062003-08.html │ │ ├── SL.P.10.R.C.SL062003-09.html │ │ ├── SL.P.10.R.C.SL062003-10.html │ │ ├── SL.P.10.R.C.SL062003-11.html │ │ ├── SL.P.10.R.C.SL062003-12.html │ │ ├── SL.P.10.R.C.SL062003-13.html │ │ ├── SL.P.10.R.C.SL062003-14.html │ │ ├── SL.P.10.R.C.SL062003-15.html │ │ ├── SL.P.10.R.C.SL062003-16.html │ │ ├── SL.P.10.R.C.SL062003-17.html │ │ ├── SL.P.10.R.C.SL062003-18.html │ │ ├── SL.P.10.R.C.SL062003-19.html │ │ ├── SL.P.10.R.C.SL062003-20.html │ │ ├── SL.P.10.R.C.SL062003-21.html │ │ ├── SL.P.10.R.C.SL062003-22.html │ │ ├── SL.P.10.R.C.SL062003-23.html │ │ ├── SL.P.10.R.C.SL062003-24.html │ │ ├── SL.P.10.R.C.SL062003-25.html │ │ ├── SL.P.10.R.D.SL062003-01.html │ │ ├── SL.P.10.R.D.SL062003-02.html │ │ ├── SL.P.10.R.D.SL062003-03.html │ │ ├── SL.P.10.R.D.SL062003-04.html │ │ ├── SL.P.10.R.D.SL062003-05.html │ │ ├── SL.P.10.R.D.SL062003-06.html │ │ ├── SL.P.10.R.D.SL062003-07.html │ │ ├── SL.P.10.R.D.SL062003-08.html │ │ ├── SL.P.10.R.D.SL062003-09.html │ │ ├── SL.P.10.R.D.SL062003-10.html │ │ ├── SL.P.10.R.D.SL062003-11.html │ │ ├── SL.P.10.R.D.SL062003-12.html │ │ ├── SL.P.10.R.D.SL062003-13.html │ │ ├── SL.P.10.R.D.SL062003-14.html │ │ ├── SL.P.10.R.D.SL062003-15.html │ │ ├── SL.P.10.R.D.SL062003-16.html │ │ ├── SL.P.10.R.D.SL062003-17.html │ │ ├── SL.P.10.R.D.SL062003-18.html │ │ ├── SL.P.10.R.D.SL062003-19.html │ │ ├── SL.P.10.R.D.SL062003-20.html │ │ ├── SL.P.10.R.D.SL062003-21.html │ │ ├── SL.P.10.R.D.SL062003-22.html │ │ ├── SL.P.10.R.D.SL062003-23.html │ │ ├── SL.P.10.R.D.SL062003-24.html │ │ └── SL.P.10.R.D.SL062003-25.html │ └── systems │ │ ├── SL.P.10.R.11.SL062003-01.html │ │ ├── SL.P.10.R.11.SL062003-02.html │ │ ├── SL.P.10.R.11.SL062003-03.html │ │ ├── SL.P.10.R.11.SL062003-04.html │ │ ├── SL.P.10.R.11.SL062003-05.html │ │ ├── SL.P.10.R.11.SL062003-06.html │ │ ├── SL.P.10.R.11.SL062003-07.html │ │ ├── SL.P.10.R.11.SL062003-08.html │ │ ├── SL.P.10.R.11.SL062003-09.html │ │ ├── SL.P.10.R.11.SL062003-10.html │ │ ├── SL.P.10.R.11.SL062003-11.html │ │ ├── SL.P.10.R.11.SL062003-12.html │ │ ├── SL.P.10.R.11.SL062003-13.html │ │ ├── SL.P.10.R.11.SL062003-14.html │ │ ├── SL.P.10.R.11.SL062003-15.html │ │ ├── SL.P.10.R.11.SL062003-16.html │ │ ├── SL.P.10.R.11.SL062003-17.html │ │ ├── SL.P.10.R.11.SL062003-18.html │ │ ├── SL.P.10.R.11.SL062003-19.html │ │ ├── SL.P.10.R.11.SL062003-20.html │ │ ├── SL.P.10.R.11.SL062003-21.html │ │ ├── SL.P.10.R.11.SL062003-22.html │ │ ├── SL.P.10.R.11.SL062003-23.html │ │ ├── SL.P.10.R.11.SL062003-24.html │ │ ├── SL.P.10.R.11.SL062003-25.html │ │ ├── SL.P.10.R.12.SL062003-01.html │ │ ├── SL.P.10.R.12.SL062003-02.html │ │ ├── SL.P.10.R.12.SL062003-03.html │ │ ├── SL.P.10.R.12.SL062003-04.html │ │ ├── SL.P.10.R.12.SL062003-05.html │ │ ├── SL.P.10.R.12.SL062003-06.html │ │ ├── SL.P.10.R.12.SL062003-07.html │ │ ├── SL.P.10.R.12.SL062003-08.html │ │ ├── SL.P.10.R.12.SL062003-09.html │ │ ├── SL.P.10.R.12.SL062003-10.html │ │ ├── SL.P.10.R.12.SL062003-11.html │ │ ├── SL.P.10.R.12.SL062003-12.html │ │ ├── SL.P.10.R.12.SL062003-13.html │ │ ├── SL.P.10.R.12.SL062003-14.html │ │ ├── SL.P.10.R.12.SL062003-15.html │ │ ├── SL.P.10.R.12.SL062003-16.html │ │ ├── SL.P.10.R.12.SL062003-17.html │ │ ├── SL.P.10.R.12.SL062003-18.html │ │ ├── SL.P.10.R.12.SL062003-19.html │ │ ├── SL.P.10.R.12.SL062003-20.html │ │ ├── SL.P.10.R.12.SL062003-21.html │ │ ├── SL.P.10.R.12.SL062003-22.html │ │ ├── SL.P.10.R.12.SL062003-23.html │ │ ├── SL.P.10.R.12.SL062003-24.html │ │ ├── SL.P.10.R.12.SL062003-25.html │ │ ├── SL.P.10.R.13.SL062003-01.html │ │ ├── SL.P.10.R.13.SL062003-02.html │ │ ├── SL.P.10.R.13.SL062003-03.html │ │ ├── SL.P.10.R.13.SL062003-04.html │ │ ├── SL.P.10.R.13.SL062003-05.html │ │ ├── SL.P.10.R.13.SL062003-06.html │ │ ├── SL.P.10.R.13.SL062003-07.html │ │ ├── SL.P.10.R.13.SL062003-08.html │ │ ├── SL.P.10.R.13.SL062003-09.html │ │ ├── SL.P.10.R.13.SL062003-10.html │ │ ├── SL.P.10.R.13.SL062003-11.html │ │ ├── SL.P.10.R.13.SL062003-12.html │ │ ├── SL.P.10.R.13.SL062003-13.html │ │ ├── SL.P.10.R.13.SL062003-14.html │ │ ├── SL.P.10.R.13.SL062003-15.html │ │ ├── SL.P.10.R.13.SL062003-16.html │ │ ├── SL.P.10.R.13.SL062003-17.html │ │ ├── SL.P.10.R.13.SL062003-18.html │ │ ├── SL.P.10.R.13.SL062003-19.html │ │ ├── SL.P.10.R.13.SL062003-20.html │ │ ├── SL.P.10.R.13.SL062003-21.html │ │ ├── SL.P.10.R.13.SL062003-22.html │ │ ├── SL.P.10.R.13.SL062003-23.html │ │ ├── SL.P.10.R.13.SL062003-24.html │ │ ├── SL.P.10.R.13.SL062003-25.html │ │ ├── SL.P.10.R.14.SL062003-01.html │ │ ├── SL.P.10.R.14.SL062003-02.html │ │ ├── SL.P.10.R.14.SL062003-03.html │ │ ├── SL.P.10.R.14.SL062003-04.html │ │ ├── SL.P.10.R.14.SL062003-05.html │ │ ├── SL.P.10.R.14.SL062003-06.html │ │ ├── SL.P.10.R.14.SL062003-07.html │ │ ├── SL.P.10.R.14.SL062003-08.html │ │ ├── SL.P.10.R.14.SL062003-09.html │ │ ├── SL.P.10.R.14.SL062003-10.html │ │ ├── SL.P.10.R.14.SL062003-11.html │ │ ├── SL.P.10.R.14.SL062003-12.html │ │ ├── SL.P.10.R.14.SL062003-13.html │ │ ├── SL.P.10.R.14.SL062003-14.html │ │ ├── SL.P.10.R.14.SL062003-15.html │ │ ├── SL.P.10.R.14.SL062003-16.html │ │ ├── SL.P.10.R.14.SL062003-17.html │ │ ├── SL.P.10.R.14.SL062003-18.html │ │ ├── SL.P.10.R.14.SL062003-19.html │ │ ├── SL.P.10.R.14.SL062003-20.html │ │ ├── SL.P.10.R.14.SL062003-21.html │ │ ├── SL.P.10.R.14.SL062003-22.html │ │ ├── SL.P.10.R.14.SL062003-23.html │ │ ├── SL.P.10.R.14.SL062003-24.html │ │ ├── SL.P.10.R.14.SL062003-25.html │ │ ├── SL.P.10.R.21.SL062003-01.html │ │ ├── SL.P.10.R.21.SL062003-02.html │ │ ├── SL.P.10.R.21.SL062003-03.html │ │ ├── SL.P.10.R.21.SL062003-04.html │ │ ├── SL.P.10.R.21.SL062003-05.html │ │ ├── SL.P.10.R.21.SL062003-06.html │ │ ├── SL.P.10.R.21.SL062003-07.html │ │ ├── SL.P.10.R.21.SL062003-08.html │ │ ├── SL.P.10.R.21.SL062003-09.html │ │ ├── SL.P.10.R.21.SL062003-10.html │ │ ├── SL.P.10.R.21.SL062003-11.html │ │ ├── SL.P.10.R.21.SL062003-12.html │ │ ├── SL.P.10.R.21.SL062003-13.html │ │ ├── SL.P.10.R.21.SL062003-14.html │ │ ├── SL.P.10.R.21.SL062003-15.html │ │ ├── SL.P.10.R.21.SL062003-16.html │ │ ├── SL.P.10.R.21.SL062003-17.html │ │ ├── SL.P.10.R.21.SL062003-18.html │ │ ├── SL.P.10.R.21.SL062003-19.html │ │ ├── SL.P.10.R.21.SL062003-20.html │ │ ├── SL.P.10.R.21.SL062003-21.html │ │ ├── SL.P.10.R.21.SL062003-22.html │ │ ├── SL.P.10.R.21.SL062003-23.html │ │ ├── SL.P.10.R.21.SL062003-24.html │ │ ├── SL.P.10.R.21.SL062003-25.html │ │ ├── SL.P.10.R.22.SL062003-01.html │ │ ├── SL.P.10.R.22.SL062003-02.html │ │ ├── SL.P.10.R.22.SL062003-03.html │ │ ├── SL.P.10.R.22.SL062003-04.html │ │ ├── SL.P.10.R.22.SL062003-05.html │ │ ├── SL.P.10.R.22.SL062003-06.html │ │ ├── SL.P.10.R.22.SL062003-07.html │ │ ├── SL.P.10.R.22.SL062003-08.html │ │ ├── SL.P.10.R.22.SL062003-09.html │ │ ├── SL.P.10.R.22.SL062003-10.html │ │ ├── SL.P.10.R.22.SL062003-11.html │ │ ├── SL.P.10.R.22.SL062003-12.html │ │ ├── SL.P.10.R.22.SL062003-13.html │ │ ├── SL.P.10.R.22.SL062003-14.html │ │ ├── SL.P.10.R.22.SL062003-15.html │ │ ├── SL.P.10.R.22.SL062003-16.html │ │ ├── SL.P.10.R.22.SL062003-17.html │ │ ├── SL.P.10.R.22.SL062003-18.html │ │ ├── SL.P.10.R.22.SL062003-19.html │ │ ├── SL.P.10.R.22.SL062003-20.html │ │ ├── SL.P.10.R.22.SL062003-21.html │ │ ├── SL.P.10.R.22.SL062003-22.html │ │ ├── SL.P.10.R.22.SL062003-23.html │ │ ├── SL.P.10.R.22.SL062003-24.html │ │ ├── SL.P.10.R.22.SL062003-25.html │ │ ├── SL.P.10.R.23.SL062003-01.html │ │ ├── SL.P.10.R.23.SL062003-02.html │ │ ├── SL.P.10.R.23.SL062003-03.html │ │ ├── SL.P.10.R.23.SL062003-04.html │ │ ├── SL.P.10.R.23.SL062003-05.html │ │ ├── SL.P.10.R.23.SL062003-06.html │ │ ├── SL.P.10.R.23.SL062003-07.html │ │ ├── SL.P.10.R.23.SL062003-08.html │ │ ├── SL.P.10.R.23.SL062003-09.html │ │ ├── SL.P.10.R.23.SL062003-10.html │ │ ├── SL.P.10.R.23.SL062003-11.html │ │ ├── SL.P.10.R.23.SL062003-12.html │ │ ├── SL.P.10.R.23.SL062003-13.html │ │ ├── SL.P.10.R.23.SL062003-14.html │ │ ├── SL.P.10.R.23.SL062003-15.html │ │ ├── SL.P.10.R.23.SL062003-16.html │ │ ├── SL.P.10.R.23.SL062003-17.html │ │ ├── SL.P.10.R.23.SL062003-18.html │ │ ├── SL.P.10.R.23.SL062003-19.html │ │ ├── SL.P.10.R.23.SL062003-20.html │ │ ├── SL.P.10.R.23.SL062003-21.html │ │ ├── SL.P.10.R.23.SL062003-22.html │ │ ├── SL.P.10.R.23.SL062003-23.html │ │ ├── SL.P.10.R.23.SL062003-24.html │ │ ├── SL.P.10.R.23.SL062003-25.html │ │ ├── SL.P.10.R.24.SL062003-01.html │ │ ├── SL.P.10.R.24.SL062003-02.html │ │ ├── SL.P.10.R.24.SL062003-03.html │ │ ├── SL.P.10.R.24.SL062003-04.html │ │ ├── SL.P.10.R.24.SL062003-05.html │ │ ├── SL.P.10.R.24.SL062003-06.html │ │ ├── SL.P.10.R.24.SL062003-07.html │ │ ├── SL.P.10.R.24.SL062003-08.html │ │ ├── SL.P.10.R.24.SL062003-09.html │ │ ├── SL.P.10.R.24.SL062003-10.html │ │ ├── SL.P.10.R.24.SL062003-11.html │ │ ├── SL.P.10.R.24.SL062003-12.html │ │ ├── SL.P.10.R.24.SL062003-13.html │ │ ├── SL.P.10.R.24.SL062003-14.html │ │ ├── SL.P.10.R.24.SL062003-15.html │ │ ├── SL.P.10.R.24.SL062003-16.html │ │ ├── SL.P.10.R.24.SL062003-17.html │ │ ├── SL.P.10.R.24.SL062003-18.html │ │ ├── SL.P.10.R.24.SL062003-19.html │ │ ├── SL.P.10.R.24.SL062003-20.html │ │ ├── SL.P.10.R.24.SL062003-21.html │ │ ├── SL.P.10.R.24.SL062003-22.html │ │ ├── SL.P.10.R.24.SL062003-23.html │ │ ├── SL.P.10.R.24.SL062003-24.html │ │ └── SL.P.10.R.24.SL062003-25.html │ ├── Verify-SPL │ ├── D00000.M.100.A.C.spl │ ├── D00000.M.100.A.D.spl │ ├── D00000.M.100.A.E.spl │ ├── D00000.M.100.A.F.spl │ ├── D00000.M.100.A.G.spl │ ├── D00000.P.10.A.C.ISI08012003.0001.spl │ ├── D00000.P.10.A.C.ISI08012003.0002.spl │ ├── D00000.P.10.A.C.ISI08012003.0003.spl │ ├── D00000.P.10.A.C.ISI08012003.0004.spl │ ├── D00000.P.10.A.D.ISI08012003.0001.spl │ ├── D00000.P.10.A.D.ISI08012003.0002.spl │ ├── D00000.P.10.A.D.ISI08012003.0003.spl │ ├── D00000.P.10.A.D.ISI08012003.0004.spl │ ├── D00000.P.10.A.E.ISI08012003.0001.spl │ ├── D00000.P.10.A.E.ISI08012003.0002.spl │ ├── D00000.P.10.A.E.ISI08012003.0003.spl │ ├── D00000.P.10.A.E.ISI08012003.0004.spl │ ├── D00000.P.10.A.F.ISI08012003.0001.spl │ ├── D00000.P.10.A.F.ISI08012003.0002.spl │ ├── D00000.P.10.A.F.ISI08012003.0003.spl │ ├── D00000.P.10.A.F.ISI08012003.0004.spl │ ├── D00000.P.10.A.G.ISI08012003.0001.spl │ ├── D00000.P.10.A.G.ISI08012003.0002.spl │ ├── D00000.P.10.A.G.ISI08012003.0003.spl │ ├── D00000.P.10.A.G.ISI08012003.0004.spl │ ├── D00001.M.100.A.C.spl │ ├── D00001.M.100.A.D.spl │ ├── D00001.M.100.A.E.spl │ ├── D00001.M.100.A.F.spl │ ├── D00001.M.100.A.G.spl │ ├── D00002.M.100.A.C.spl │ ├── D00002.M.100.A.D.spl │ ├── D00002.M.100.A.E.spl │ ├── D00002.M.100.A.F.spl │ ├── D00002.M.100.A.G.spl │ ├── D00003.M.100.A.C.spl │ ├── D00003.M.100.A.D.spl │ ├── D00003.M.100.A.E.spl │ ├── D00003.M.100.A.F.spl │ ├── D00003.M.100.A.G.spl │ └── mkSPL.pl │ ├── Verify │ ├── D00000.M.100.A.C.html │ ├── D00000.M.100.A.D.html │ ├── D00000.M.100.A.E.html │ ├── D00000.M.100.A.F.html │ ├── D00000.M.100.A.G.html │ ├── D00000.P.10.A.C.ISI08012003.0001.html │ ├── D00000.P.10.A.C.ISI08012003.0002.html │ ├── D00000.P.10.A.C.ISI08012003.0003.html │ ├── D00000.P.10.A.C.ISI08012003.0004.html │ ├── D00000.P.10.A.D.ISI08012003.0001.html │ ├── D00000.P.10.A.D.ISI08012003.0002.html │ ├── D00000.P.10.A.D.ISI08012003.0003.html │ ├── D00000.P.10.A.D.ISI08012003.0004.html │ ├── D00000.P.10.A.E.ISI08012003.0001.html │ ├── D00000.P.10.A.E.ISI08012003.0002.html │ ├── D00000.P.10.A.E.ISI08012003.0003.html │ ├── D00000.P.10.A.E.ISI08012003.0004.html │ ├── D00000.P.10.A.F.ISI08012003.0001.html │ ├── D00000.P.10.A.F.ISI08012003.0002.html │ ├── D00000.P.10.A.F.ISI08012003.0003.html │ ├── D00000.P.10.A.F.ISI08012003.0004.html │ ├── D00000.P.10.A.G.ISI08012003.0001.html │ ├── D00000.P.10.A.G.ISI08012003.0002.html │ ├── D00000.P.10.A.G.ISI08012003.0003.html │ ├── D00000.P.10.A.G.ISI08012003.0004.html │ ├── D00001.M.100.A.C.html │ ├── D00001.M.100.A.D.html │ ├── D00001.M.100.A.E.html │ ├── D00001.M.100.A.F.html │ ├── D00001.M.100.A.G.html │ ├── D00002.M.100.A.C.html │ ├── D00002.M.100.A.D.html │ ├── D00002.M.100.A.E.html │ ├── D00002.M.100.A.F.html │ ├── D00002.M.100.A.G.html │ ├── D00003.M.100.A.C.html │ ├── D00003.M.100.A.D.html │ ├── D00003.M.100.A.E.html │ ├── D00003.M.100.A.F.html │ └── D00003.M.100.A.G.html │ ├── verify-spl.xml │ └── verify.xml ├── ROUGE-1.5.5.tgz ├── XML-DOM-1.46.tar.gz ├── XML-DOM-1.46 ├── BUGS ├── Changes ├── CheckAncestors.pm ├── CmpDOM.pm ├── FAQ.xml ├── MANIFEST ├── META.json ├── META.yml ├── MYMETA.json ├── MYMETA.yml ├── Makefile ├── Makefile.PL ├── README ├── XML-Parser-2.31.patch ├── blib │ ├── arch │ │ ├── .exists │ │ └── auto │ │ │ └── XML │ │ │ └── DOM │ │ │ └── .exists │ ├── bin │ │ └── .exists │ ├── lib │ │ ├── XML │ │ │ ├── .exists │ │ │ ├── DOM.pm │ │ │ ├── DOM │ │ │ │ ├── AttDef.pod │ │ │ │ ├── AttlistDecl.pod │ │ │ │ ├── Attr.pod │ │ │ │ ├── CDATASection.pod │ │ │ │ ├── CharacterData.pod │ │ │ │ ├── Comment.pod │ │ │ │ ├── DOMException.pm │ │ │ │ ├── DOMImplementation.pod │ │ │ │ ├── Document.pod │ │ │ │ ├── DocumentFragment.pod │ │ │ │ ├── DocumentType.pod │ │ │ │ ├── Element.pod │ │ │ │ ├── ElementDecl.pod │ │ │ │ ├── Entity.pod │ │ │ │ ├── EntityReference.pod │ │ │ │ ├── NamedNodeMap.pm │ │ │ │ ├── NamedNodeMap.pod │ │ │ │ ├── Node.pod │ │ │ │ ├── NodeList.pm │ │ │ │ ├── NodeList.pod │ │ │ │ ├── Notation.pod │ │ │ │ ├── Parser.pod │ │ │ │ ├── PerlSAX.pm │ │ │ │ ├── ProcessingInstruction.pod │ │ │ │ ├── Text.pod │ │ │ │ └── XMLDecl.pod │ │ │ └── Handler │ │ │ │ └── BuildDOM.pm │ │ └── auto │ │ │ └── XML │ │ │ └── DOM │ │ │ └── .exists │ ├── man1 │ │ └── .exists │ ├── man3 │ │ ├── .exists │ │ ├── XML__DOM.3pm │ │ ├── XML__DOM__AttDef.3pm │ │ ├── XML__DOM__AttlistDecl.3pm │ │ ├── XML__DOM__Attr.3pm │ │ ├── XML__DOM__CDATASection.3pm │ │ ├── XML__DOM__CharacterData.3pm │ │ ├── XML__DOM__Comment.3pm │ │ ├── XML__DOM__DOMImplementation.3pm │ │ ├── XML__DOM__Document.3pm │ │ ├── XML__DOM__DocumentFragment.3pm │ │ ├── XML__DOM__DocumentType.3pm │ │ ├── XML__DOM__Element.3pm │ │ ├── XML__DOM__ElementDecl.3pm │ │ ├── XML__DOM__Entity.3pm │ │ ├── XML__DOM__EntityReference.3pm │ │ ├── XML__DOM__NamedNodeMap.3pm │ │ ├── XML__DOM__Node.3pm │ │ ├── XML__DOM__NodeList.3pm │ │ ├── XML__DOM__Notation.3pm │ │ ├── XML__DOM__Parser.3pm │ │ ├── XML__DOM__PerlSAX.3pm │ │ ├── XML__DOM__ProcessingInstruction.3pm │ │ ├── XML__DOM__Text.3pm │ │ ├── XML__DOM__XMLDecl.3pm │ │ └── XML__Handler__BuildDOM.3pm │ └── script │ │ └── .exists ├── lib │ └── XML │ │ ├── DOM.pm │ │ ├── DOM │ │ ├── AttDef.pod │ │ ├── AttlistDecl.pod │ │ ├── Attr.pod │ │ ├── CDATASection.pod │ │ ├── CharacterData.pod │ │ ├── Comment.pod │ │ ├── DOMException.pm │ │ ├── DOMImplementation.pod │ │ ├── Document.pod │ │ ├── DocumentFragment.pod │ │ ├── DocumentType.pod │ │ ├── Element.pod │ │ ├── ElementDecl.pod │ │ ├── Entity.pod │ │ ├── EntityReference.pod │ │ ├── NamedNodeMap.pm │ │ ├── NamedNodeMap.pod │ │ ├── Node.pod │ │ ├── NodeList.pm │ │ ├── NodeList.pod │ │ ├── Notation.pod │ │ ├── Parser.pod │ │ ├── PerlSAX.pm │ │ ├── ProcessingInstruction.pod │ │ ├── Text.pod │ │ └── XMLDecl.pod │ │ └── Handler │ │ └── BuildDOM.pm ├── pm_to_blib ├── samples │ ├── REC-xml-19980210.xml │ └── minutes.xml └── t │ ├── build_dom.t │ ├── dom_astress.t │ ├── dom_attr.t │ ├── dom_cdata.t │ ├── dom_documenttype.t │ ├── dom_encode.t │ ├── dom_example.t │ ├── dom_extent.dtd │ ├── dom_extent.ent │ ├── dom_extent.t │ ├── dom_jp_astress.t │ ├── dom_jp_attr.t │ ├── dom_jp_cdata.t │ ├── dom_jp_example.t │ ├── dom_jp_minus.t │ ├── dom_jp_modify.t │ ├── dom_jp_print.t │ ├── dom_minus.t │ ├── dom_modify.t │ ├── dom_noexpand.t │ ├── dom_print.t │ ├── dom_template.t │ └── dom_text.t ├── XML-Parser-2.44.tar.gz ├── XML-Parser-2.44 ├── Changes ├── Expat │ ├── Expat.bs │ ├── Expat.c │ ├── Expat.o │ ├── Expat.pm │ ├── Expat.xs │ ├── MYMETA.json │ ├── MYMETA.yml │ ├── Makefile │ ├── Makefile.PL │ ├── encoding.h │ ├── pm_to_blib │ └── typemap ├── MANIFEST ├── META.json ├── META.yml ├── MYMETA.json ├── MYMETA.yml ├── Makefile ├── Makefile.PL ├── Parser.pm ├── Parser │ ├── Encodings │ │ ├── Japanese_Encodings.msg │ │ ├── README │ │ ├── big5.enc │ │ ├── euc-kr.enc │ │ ├── ibm866.enc │ │ ├── iso-8859-2.enc │ │ ├── iso-8859-3.enc │ │ ├── iso-8859-4.enc │ │ ├── iso-8859-5.enc │ │ ├── iso-8859-7.enc │ │ ├── iso-8859-8.enc │ │ ├── iso-8859-9.enc │ │ ├── koi8-r.enc │ │ ├── windows-1250.enc │ │ ├── windows-1251.enc │ │ ├── windows-1252.enc │ │ ├── windows-1255.enc │ │ ├── x-euc-jp-jisx0221.enc │ │ ├── x-euc-jp-unicode.enc │ │ ├── x-sjis-cp932.enc │ │ ├── x-sjis-jdk117.enc │ │ ├── x-sjis-jisx0221.enc │ │ └── x-sjis-unicode.enc │ ├── LWPExternEnt.pl │ └── Style │ │ ├── Debug.pm │ │ ├── Objects.pm │ │ ├── Stream.pm │ │ ├── Subs.pm │ │ └── Tree.pm ├── README ├── blib │ ├── arch │ │ ├── .exists │ │ └── auto │ │ │ └── XML │ │ │ └── Parser │ │ │ ├── .exists │ │ │ └── Expat │ │ │ ├── .exists │ │ │ └── Expat.so │ ├── bin │ │ └── .exists │ ├── lib │ │ ├── XML │ │ │ ├── .exists │ │ │ ├── Parser.pm │ │ │ └── Parser │ │ │ │ ├── .exists │ │ │ │ ├── Encodings │ │ │ │ ├── Japanese_Encodings.msg │ │ │ │ ├── README │ │ │ │ ├── big5.enc │ │ │ │ ├── euc-kr.enc │ │ │ │ ├── ibm866.enc │ │ │ │ ├── iso-8859-2.enc │ │ │ │ ├── iso-8859-3.enc │ │ │ │ ├── iso-8859-4.enc │ │ │ │ ├── iso-8859-5.enc │ │ │ │ ├── iso-8859-7.enc │ │ │ │ ├── iso-8859-8.enc │ │ │ │ ├── iso-8859-9.enc │ │ │ │ ├── koi8-r.enc │ │ │ │ ├── windows-1250.enc │ │ │ │ ├── windows-1251.enc │ │ │ │ ├── windows-1252.enc │ │ │ │ ├── windows-1255.enc │ │ │ │ ├── x-euc-jp-jisx0221.enc │ │ │ │ ├── x-euc-jp-unicode.enc │ │ │ │ ├── x-sjis-cp932.enc │ │ │ │ ├── x-sjis-jdk117.enc │ │ │ │ ├── x-sjis-jisx0221.enc │ │ │ │ └── x-sjis-unicode.enc │ │ │ │ ├── Expat.pm │ │ │ │ ├── LWPExternEnt.pl │ │ │ │ └── Style │ │ │ │ ├── Debug.pm │ │ │ │ ├── Objects.pm │ │ │ │ ├── Stream.pm │ │ │ │ ├── Subs.pm │ │ │ │ └── Tree.pm │ │ └── auto │ │ │ └── XML │ │ │ └── Parser │ │ │ ├── .exists │ │ │ └── Expat │ │ │ └── .exists │ ├── man1 │ │ └── .exists │ ├── man3 │ │ ├── .exists │ │ ├── XML__Parser.3pm │ │ ├── XML__Parser__Expat.3pm │ │ ├── XML__Parser__Style__Debug.3pm │ │ ├── XML__Parser__Style__Objects.3pm │ │ ├── XML__Parser__Style__Stream.3pm │ │ ├── XML__Parser__Style__Subs.3pm │ │ └── XML__Parser__Style__Tree.3pm │ └── script │ │ └── .exists ├── inc │ └── Devel │ │ └── CheckLib.pm ├── pm_to_blib ├── samples │ ├── REC-xml-19980210.xml │ ├── canonical │ ├── canontst.xml │ ├── ctest.dtd │ ├── xmlcomments │ ├── xmlfilter │ └── xmlstats └── t │ ├── astress.t │ ├── cdata.t │ ├── decl.t │ ├── defaulted.t │ ├── encoding.t │ ├── ext.ent │ ├── ext2.ent │ ├── external_ent.t │ ├── file.t │ ├── file_open_scalar.t │ ├── finish.t │ ├── foo.dtd │ ├── namespaces.t │ ├── parament.t │ ├── partial.t │ ├── skip.t │ ├── stream.t │ └── styles.t ├── XML-RegExp-0.04.tar.gz └── XML-RegExp-0.04 ├── Changes ├── MANIFEST ├── META.yml ├── MYMETA.json ├── MYMETA.yml ├── Makefile ├── Makefile.PL ├── README ├── blib ├── arch │ ├── .exists │ └── auto │ │ └── XML │ │ └── RegExp │ │ └── .exists ├── bin │ └── .exists ├── lib │ ├── XML │ │ ├── .exists │ │ └── RegExp.pm │ └── auto │ │ └── XML │ │ └── RegExp │ │ └── .exists ├── man1 │ └── .exists ├── man3 │ ├── .exists │ └── XML__RegExp.3pm └── script │ └── .exists ├── lib └── XML │ └── RegExp.pm ├── pm_to_blib └── test.pl /fastSum/Baseline/config/deeplstm.config: -------------------------------------------------------------------------------- 1 | { 2 | "n_layers": 16, 3 | "layer_sum": false, 4 | "layer_cat": false, 5 | "lstm_hidden_size": 300, 6 | "ffn_inner_hidden_size": 2048, 7 | "n_head": 6, 8 | "recurrent_dropout_prob": 0.1, 9 | "atten_dropout_prob": 0.1, 10 | "ffn_dropout_prob": 0.1, 11 | "fix_mask": true 12 | } -------------------------------------------------------------------------------- /fastSum/Baseline/config/seqlab.config: -------------------------------------------------------------------------------- 1 | { 2 | 3 | } -------------------------------------------------------------------------------- /fastSum/Baseline/config/transformer.config: -------------------------------------------------------------------------------- 1 | { 2 | "n_layers": 12, 3 | "hidden_size": 512, 4 | "ffn_inner_hidden_size": 2048, 5 | "n_head": 8, 6 | "recurrent_dropout_prob": 0.1, 7 | "atten_dropout_prob": 0.1, 8 | "ffn_dropout_prob": 0.1 9 | } -------------------------------------------------------------------------------- /fastSum/Baseline/model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/Baseline/model/__init__.py -------------------------------------------------------------------------------- /fastSum/Baseline/tools/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fastSum/Baseline/transformer/Constants.py: -------------------------------------------------------------------------------- 1 | 2 | PAD = 0 3 | UNK = 1 4 | BOS = 2 5 | EOS = 3 6 | 7 | PAD_WORD = '' 8 | UNK_WORD = '' 9 | BOS_WORD = '' 10 | EOS_WORD = '' 11 | -------------------------------------------------------------------------------- /fastSum/Baseline/transformer/__init__.py: -------------------------------------------------------------------------------- 1 | import transformer.Constants 2 | import transformer.Modules 3 | import transformer.Layers 4 | import transformer.SubLayers 5 | import transformer.Models 6 | import transformer.Translator 7 | import transformer.Beam 8 | import transformer.Optim 9 | 10 | __all__ = [ 11 | transformer.Constants, transformer.Modules, transformer.Layers, 12 | transformer.SubLayers, transformer.Models, transformer.Optim, 13 | transformer.Translator, transformer.Beam] 14 | -------------------------------------------------------------------------------- /fastSum/Dataloader/Readme.md: -------------------------------------------------------------------------------- 1 | # Dataloader 2 | 3 | 1. We provide a simple example in [example.py](./example.py). 4 | 5 | 2. You can modify the data set download location by specifying FASTNLP_CACHE_DIR in the system environment variables. 6 | 7 | 8 | -------------------------------------------------------------------------------- /fastSum/Dataloader/Readme_zh.md: -------------------------------------------------------------------------------- 1 | # Dataloader 2 | 3 | 1. 使用方法可参照[example.py](./example.py) 4 | 5 | 2. 可以通过在系统环境变量中指定FASTNLP_CACHE_DIR来修改数据集下载位置 6 | 7 | 8 | -------------------------------------------------------------------------------- /fastSum/Dataloader/example.py: -------------------------------------------------------------------------------- 1 | from fastNLP.io.file_utils import get_cache_path 2 | from summarizationLoader import ArxivLoader 3 | 4 | if __name__ == "__main__": 5 | 6 | # 请设置fastNLP默认cache的存放路径FASTNLP_CACHE_DIR, get_cache_path会获取设置下载的数据位置 7 | # 详细可参考: https://gitee.com/fastnlp/fastNLP/blob/7b4e099c5267efb6a4a88b9d789a0940be05bb56/fastNLP/io/file_utils.py#L228 8 | print(f"下载的数据位置: {get_cache_path()}") 9 | ArxivLoader().download() 10 | data = ArxivLoader().load() 11 | print(data) -------------------------------------------------------------------------------- /fastSum/PointerGen/data_util/__pycache__/config.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/PointerGen/data_util/__pycache__/config.cpython-37.pyc -------------------------------------------------------------------------------- /fastSum/PointerGen/data_util/__pycache__/data.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/PointerGen/data_util/__pycache__/data.cpython-37.pyc -------------------------------------------------------------------------------- /fastSum/PointerGen/data_util/__pycache__/logging.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/PointerGen/data_util/__pycache__/logging.cpython-37.pyc -------------------------------------------------------------------------------- /fastSum/PointerGen/data_util/__pycache__/utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/PointerGen/data_util/__pycache__/utils.cpython-37.pyc -------------------------------------------------------------------------------- /fastSum/PointerGen/data_util/logging.py: -------------------------------------------------------------------------------- 1 | import logging 2 | import logging.handlers 3 | 4 | logger = logging.getLogger("ptr_gen_logger") 5 | 6 | handler1 = logging.StreamHandler() 7 | 8 | logger.setLevel(logging.DEBUG) 9 | handler1.setLevel(logging.DEBUG) 10 | 11 | formatter = logging.Formatter("%(asctime)s %(name)s %(levelname)s %(message)s") 12 | handler1.setFormatter(formatter) 13 | 14 | logger.addHandler(handler1) 15 | -------------------------------------------------------------------------------- /fastSum/PointerGen/model/__pycache__/loss.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/PointerGen/model/__pycache__/loss.cpython-37.pyc -------------------------------------------------------------------------------- /fastSum/PointerGen/model/__pycache__/metric.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/PointerGen/model/__pycache__/metric.cpython-37.pyc -------------------------------------------------------------------------------- /fastSum/PointerGen/model/__pycache__/model.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/PointerGen/model/__pycache__/model.cpython-37.pyc -------------------------------------------------------------------------------- /fastSum/PointerGen/model/mq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/PointerGen/model/mq -------------------------------------------------------------------------------- /fastSum/PointerGen/training_ptr_gen/__pycache__/callback.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/PointerGen/training_ptr_gen/__pycache__/callback.cpython-37.pyc -------------------------------------------------------------------------------- /fastSum/PreSum/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/PreSum/__init__.py -------------------------------------------------------------------------------- /fastSum/PreSum/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/PreSum/models/__init__.py -------------------------------------------------------------------------------- /fastSum/PreSum/others/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/PreSum/others/__init__.py -------------------------------------------------------------------------------- /fastSum/PreSum/translate/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/PreSum/translate/__init__.py -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/DB_File-1.835.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/DB_File-1.835.tar.gz -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/DB_File-1.835/DB_File.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/DB_File-1.835/DB_File.bs -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/DB_File-1.835/DB_File.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/DB_File-1.835/DB_File.o -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/DB_File-1.835/DB_File_BS: -------------------------------------------------------------------------------- 1 | # NeXT needs /usr/lib/libposix.a to load along with DB_File.so 2 | if ( $dlsrc eq "dl_next.xs" ) { 3 | @DynaLoader::dl_resolve_using = ( '/usr/lib/libposix.a' ); 4 | } 5 | 6 | 1; 7 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/DB_File-1.835/META.yml: -------------------------------------------------------------------------------- 1 | --- 2 | abstract: 'Perl5 access to Berkeley DB version 1.x' 3 | author: 4 | - 'Paul Marquess ' 5 | build_requires: 6 | ExtUtils::MakeMaker: 0 7 | configure_requires: 8 | ExtUtils::MakeMaker: 0 9 | dynamic_config: 1 10 | generated_by: 'ExtUtils::MakeMaker version 6.62, CPAN::Meta::Converter version 2.112150' 11 | license: perl 12 | meta-spec: 13 | url: http://module-build.sourceforge.net/META-spec-v1.4.html 14 | version: 1.4 15 | name: DB_File 16 | no_index: 17 | directory: 18 | - t 19 | - inc 20 | requires: {} 21 | version: 1.835 22 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/DB_File-1.835/MYMETA.yml: -------------------------------------------------------------------------------- 1 | --- 2 | abstract: 'Perl5 access to Berkeley DB version 1.x' 3 | author: 4 | - 'Paul Marquess ' 5 | build_requires: 6 | ExtUtils::MakeMaker: '0' 7 | configure_requires: 8 | ExtUtils::MakeMaker: '0' 9 | dynamic_config: 0 10 | generated_by: 'ExtUtils::MakeMaker version 6.62, CPAN::Meta::Converter version 2.112150, CPAN::Meta::Converter version 2.150001' 11 | license: perl 12 | meta-spec: 13 | url: http://module-build.sourceforge.net/META-spec-v1.4.html 14 | version: '1.4' 15 | name: DB_File 16 | no_index: 17 | directory: 18 | - t 19 | - inc 20 | requires: {} 21 | version: '1.835' 22 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/DB_File-1.835/blib/arch/.exists: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/DB_File-1.835/blib/arch/.exists -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/DB_File-1.835/blib/arch/auto/DB_File/.exists: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/DB_File-1.835/blib/arch/auto/DB_File/.exists -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/DB_File-1.835/blib/arch/auto/DB_File/DB_File.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/DB_File-1.835/blib/arch/auto/DB_File/DB_File.so -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/DB_File-1.835/blib/bin/.exists: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/DB_File-1.835/blib/bin/.exists -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/DB_File-1.835/blib/lib/.exists: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/DB_File-1.835/blib/lib/.exists -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/DB_File-1.835/blib/lib/auto/DB_File/.exists: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/DB_File-1.835/blib/lib/auto/DB_File/.exists -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/DB_File-1.835/blib/man1/.exists: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/DB_File-1.835/blib/man1/.exists -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/DB_File-1.835/blib/man3/.exists: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/DB_File-1.835/blib/man3/.exists -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/DB_File-1.835/blib/script/.exists: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/DB_File-1.835/blib/script/.exists -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/DB_File-1.835/hints/dynixptx.pl: -------------------------------------------------------------------------------- 1 | # Need to add an extra '-lc' to the end to work around a DYNIX/ptx bug 2 | 3 | $self->{LIBS} = ['-lm -lc']; 4 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/DB_File-1.835/hints/sco.pl: -------------------------------------------------------------------------------- 1 | # osr5 needs to explicitly link against libc to pull in some static symbols 2 | $self->{LIBS} = ['-ldb -lc'] if $Config{'osvers'} =~ '3\.2v5\.0\..' ; 3 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/DB_File-1.835/pm_to_blib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/DB_File-1.835/pm_to_blib -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/DB_File-1.835/t/pod.t: -------------------------------------------------------------------------------- 1 | eval " use Test::More " ; 2 | 3 | if ($@) 4 | { 5 | print "1..0 # Skip: Test::More required for testing POD\n" ; 6 | exit 0; 7 | } 8 | 9 | eval "use Test::Pod 1.00"; 10 | 11 | if ($@) 12 | { 13 | print "1..0 # Skip: Test::Pod 1.00 required for testing POD\n" ; 14 | exit 0; 15 | } 16 | 17 | all_pod_files_ok(); 18 | 19 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/DB_File-1.835/t/pod.t.bak: -------------------------------------------------------------------------------- 1 | eval " use Test::More " ; 2 | 3 | if ($@) 4 | { 5 | print "1..0 # Skip: Test::More required for testing POD\n" ; 6 | exit 0; 7 | } 8 | 9 | eval "use Test::Pod 1.00"; 10 | 11 | if ($@) 12 | { 13 | print "1..0 # Skip: Test::Pod 1.00 required for testing POD\n" ; 14 | exit 0; 15 | } 16 | 17 | all_pod_files_ok(); 18 | 19 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/DB_File-1.835/version.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/DB_File-1.835/version.o -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/data/WordNet-1.6-Exceptions/WordNet-1.6.exc.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/RELEASE-1.5.5/data/WordNet-1.6-Exceptions/WordNet-1.6.exc.db -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/data/WordNet-1.6-Exceptions/adv.exc: -------------------------------------------------------------------------------- 1 | best well 2 | better well 3 | deeper deeply 4 | farther far 5 | further far 6 | harder hard 7 | hardest hard 8 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/data/WordNet-1.6.exc.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/RELEASE-1.5.5/data/WordNet-1.6.exc.db -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/data/WordNet-2.0-Exceptions/WordNet-2.0.exc.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/RELEASE-1.5.5/data/WordNet-2.0-Exceptions/WordNet-2.0.exc.db -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/data/WordNet-2.0-Exceptions/adv.exc: -------------------------------------------------------------------------------- 1 | best well 2 | better well 3 | deeper deeply 4 | farther far 5 | further far 6 | harder hard 7 | hardest hard 8 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/data/WordNet-2.0.exc.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/RELEASE-1.5.5/data/WordNet-2.0.exc.db -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/docs/ACL2004.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/RELEASE-1.5.5/docs/ACL2004.pdf -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/docs/COLING2004.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/RELEASE-1.5.5/docs/COLING2004.pdf -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/docs/NAACL2003.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/RELEASE-1.5.5/docs/NAACL2003.pdf -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/docs/NTCIR4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/RELEASE-1.5.5/docs/NTCIR4.pdf -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/docs/ROUGE-Note-v1.4.2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/RELEASE-1.5.5/docs/ROUGE-Note-v1.4.2.pdf -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/docs/WAS2004.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/RELEASE-1.5.5/docs/WAS2004.pdf -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-output/DUC2002-BE-F.in.26.lst.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/RELEASE-1.5.5/sample-output/DUC2002-BE-F.in.26.lst.out -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-output/DUC2002-BE-F.in.26.simple.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/RELEASE-1.5.5/sample-output/DUC2002-BE-F.in.26.simple.out -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-output/DUC2002-BE-L.in.26.lst.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/RELEASE-1.5.5/sample-output/DUC2002-BE-L.in.26.lst.out -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-output/DUC2002-BE-L.in.26.simple.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/RELEASE-1.5.5/sample-output/DUC2002-BE-L.in.26.simple.out -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-output/DUC2002-ROUGE.in.26.spl.lst.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/RELEASE-1.5.5/sample-output/DUC2002-ROUGE.in.26.spl.lst.out -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-output/DUC2002-ROUGE.in.26.spl.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/RELEASE-1.5.5/sample-output/DUC2002-ROUGE.in.26.spl.out -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-output/ROUGE-test-c95-2-1-U-r1000-n4-w1.2-a-m-s.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/RELEASE-1.5.5/sample-output/ROUGE-test-c95-2-1-U-r1000-n4-w1.2-a-m-s.out -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-output/ROUGE-test-c95-2-1-U-r1000-n4-w1.2-a-m.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/RELEASE-1.5.5/sample-output/ROUGE-test-c95-2-1-U-r1000-n4-w1.2-a-m.out -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-output/ROUGE-test-c95-2-1-U-r1000-n4-w1.2-a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/RELEASE-1.5.5/sample-output/ROUGE-test-c95-2-1-U-r1000-n4-w1.2-a.out -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-output/ROUGE-test-c95-2-1-U-r1000-n4-w1.2-b75-a-m-s.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/RELEASE-1.5.5/sample-output/ROUGE-test-c95-2-1-U-r1000-n4-w1.2-b75-a-m-s.out -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-output/ROUGE-test-c95-2-1-U-r1000-n4-w1.2-b75-a-m.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/RELEASE-1.5.5/sample-output/ROUGE-test-c95-2-1-U-r1000-n4-w1.2-b75-a-m.out -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-output/ROUGE-test-c95-2-1-U-r1000-n4-w1.2-b75-a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/RELEASE-1.5.5/sample-output/ROUGE-test-c95-2-1-U-r1000-n4-w1.2-b75-a.out -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-output/ROUGE-test-c95-2-1-U-r1000-n4-w1.2-l10-a-m-s.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/RELEASE-1.5.5/sample-output/ROUGE-test-c95-2-1-U-r1000-n4-w1.2-l10-a-m-s.out -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-output/ROUGE-test-c95-2-1-U-r1000-n4-w1.2-l10-a-m.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/RELEASE-1.5.5/sample-output/ROUGE-test-c95-2-1-U-r1000-n4-w1.2-l10-a-m.out -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-output/ROUGE-test-c95-2-1-U-r1000-n4-w1.2-l10-a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/RELEASE-1.5.5/sample-output/ROUGE-test-c95-2-1-U-r1000-n4-w1.2-l10-a.out -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/DUC2002/docs-spl/D065.M.100.J.26.spl: -------------------------------------------------------------------------------- 1 | -LRB- 11/14/1988 -RRB- Dan Quayle is likely to be a ` ` man on the outside ' ' in George Bush 's White House following a vice presidential candidacy that began in a furor but settled into obscurity , experts say . 2 | -LRB- 11/14/1988 -RRB- Relegated in the campaign to small towns and safe GOP areas , Quayle as vice president is likely to be given a traditional ceremonial role _ going to political gatherings and state funerals _ rather than the advisory role that Walter Mondale and even Bush had , some scholars feel . 3 | -LRB- 11/12/1989 -RRB- One year after his election , Dan Quayle has achieved all he ever wanted : He has become dull . 4 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/DUC2002/docs-spl/D068.M.100.F.A.spl: -------------------------------------------------------------------------------- 1 | On June 22 , 1990 Checkpoint Charlie , the allied border crossing on the west side of the Berlin Wall , was hoisted by crane onto a flatbed truck . 2 | The removal of this symbol of the Cold War was part of an elaborate ceremony attended by the top diplomats of the two Germanys and the four World War II allies . 3 | Appropriate to the occasion , Soviet Foreign Minister Shevardnadze backed away from all-out opposition to united Germany 's membership in NATO , suggesting that this could take place but only after a five-year waiting period during which all Soviet and U.S. troops would leave the country . 4 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/DUC2002/docs-spl/D069.M.100.F.C.spl: -------------------------------------------------------------------------------- 1 | East Germany was near chaos by the end of 1989 . 2 | Woeful economic conditions prevailed . 3 | Massive demonstrations for democratic reform swept the nation . 4 | The hard-line Communist government admitted its failure , giving strong impetus to the German reunification movement . 5 | The Soviets endorsed it in February as the World War II Allies did later . 6 | Unification was now imminent . 7 | The specter of an economically and politically powerful Germany disturbed many , but particularly the Poles , Soviets and world Jewry . 8 | Despite concerns , reunification would be accepted as a lesser threat than a chaotic East Germany . 9 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/DUC2002/docs-spl/D071.M.100.F.D.spl: -------------------------------------------------------------------------------- 1 | Dog competition in national and international events is both entertainment and big business . 2 | Competitions attract numerous contestants and visitors . 3 | In Israel , the dog of the year contest briefly outshone the general election and the uprising known as the intefadeh . 4 | Owners of one dog were embroiled in a law suit over whether the dog should be retired or not and a Manhattan artist 's Weimaraners have served as both models for his work and appeared on Sesame Street . 5 | Dog handling can be lucrative , but the overhead is high and the hours are long , according to Bill McFadden a professional dog handler . 6 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/DUC2002/docs-spl/D073.M.100.B.J.spl: -------------------------------------------------------------------------------- 1 | Pinatubo began erupting about two weeks ago , after six centuries of dormancy . 2 | Located 10 miles from Clark AFB , the explosions have become increasingly severe . 3 | The U.S. has denied the possibility of radioactive contamination if volcanic debris hits the weapons depots at Clark AFB , which was evacuated a week ago . 4 | At least four dead and 24 injured are attributed to the eruptions . 5 | About 84,000 have been evacuated . 6 | Heavy rains today have raised fears of catastrophic mudflows . 7 | According to Foreign Secretary Manglapus , the eruptions should not effect the stalled talks with the U.S. on new Clark and Subic lease agreements . 8 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/DUC2002/docs-spl/D081.M.100.A.D.spl: -------------------------------------------------------------------------------- 1 | Miners throughout the world have used strikes not only to achieve economic gains , but also to gain greater control over their industries and to achieve political ends . 2 | Miners in Poland , Romania and in every region of the Soviet Union have struck for higher wages and better living conditions and also and for more local control . 3 | In Poland , miners struck for legalization of Solidarity . 4 | In South Africa miners struck for better wages and working conditions and in the U.S. miners walked of f the job in sympathy for fellow miners in a bitter dispute with a coal company . 5 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/DUC2002/docs-spl/D091.M.100.C.F.spl: -------------------------------------------------------------------------------- 1 | The death toll from floods in eastern Ohio rose to 21 and may to higher since 14 persons are still missing . 2 | Torrential rains caused two creeks near Shadyside , Ohio , overflow and create a wall of water 15 to 20 feet high . 3 | The flood raged through the valley demolishing a crowded tavern and at least 70 houses . 4 | Governor Celeste declared a state of emergency and sent National Guard troops into the area to assist . 5 | Dog teams were used to search for survivors and bodies . 6 | Few of the damaged homes were covered by flood insurance so the owners must look to federal assistance . 7 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/DUC2002/docs-spl/D093.M.100.C.H.spl: -------------------------------------------------------------------------------- 1 | In 1988 , overloaded ferries capsized in India 's Ganges River , killing 400 ; in Bangladesh 's Meghna River , killing 100 ; off China 's Hainan Island , killing 55 students and teachers , and in Guangxi Zhuang Autonomous Region , killing 61 . 2 | An overloaded ferry capsized in Guatemala in 1989 , killing 67 . 3 | In 1991 , ferries capsized after striking reefs off Kenya , killing 180 Somali refugees , and in the Red Sea , killing 352 . 4 | Other ferry capsizings killed 150 on India 's Krishna River in 1970 ; 133 on China 's Min River and 71 on the Yangtze in 1988 ; 19 sailors off Israel 's coast in 1990 ; and 11 refugees off Kenya in 1991 . 5 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/DUC2002/docs-spl/D094.M.100.C.D.spl: -------------------------------------------------------------------------------- 1 | Emperor Hirohito of Japan died in 1989 at the age of 87 . 2 | He ascended the throne in 1926 and presided over one of Japan 's most tumultuous eras . 3 | The last of the World War II generation of leaders , Hirohito was a controversial figure , even in death . 4 | While western leaders generally , Asian leaders whose countries suffered under the Japanese military in World War II were cool . 5 | While some historians regard him as a powerless figurehead , others believe that he was complicit in Japanese war crimes . 6 | Hirohito died of cancer after a long illness and is succeeded by his son Akihito . 7 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/DUC2002/docs-spl/D096.M.100.C.G.spl: -------------------------------------------------------------------------------- 1 | The San Francisco 49ers won the 1989 and 1990 Super Bowls , marking four out of four wins and setting several players ' records . 2 | The 1990 Super Bowl was the lowest rated in 21 years , although the most watched TV event of the week . 3 | Super Bowl XXV , to be held in Tampa in 1991 , will feature local events planned by a committee headed by two black men in order to resolve an area racial dispute . 4 | Only 80 % of the face value of Super Bowl tickets can be deducted now . 5 | The Rose Bowl is being offered rent free to the NFL for Super Bowl XXVII . 6 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/DUC2002/docs-spl/D100.M.100.E.F.spl: -------------------------------------------------------------------------------- 1 | John Lennon was celebrated in life and death for his music and commitment to world peace . 2 | He had detractors , namely a celebrity biographer in The Lives of John Lennon . 3 | His widow , Yoko Ono , former wife , and sons refuted the alleged misdeeds contained in that book . 4 | On the 50th anniversary of his birth , his song '' Imagine '' was broadcast worldwide to an audience of one billion people . 5 | On the tenth anniversary of his murder , admirers gathered in Liverpool and other locations around the world to pay homage . 6 | Ono has kept his memory alive but many believe she does so for mercenary reasons . 7 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/DUC2002/docs-spl/D104.M.100.G.C.spl: -------------------------------------------------------------------------------- 1 | Firing indiscriminately on the crowds as they advanced , Chinese troops broke through barricades of reform-minded protesters late on 3 June1989 and reached Tiananmen Square after being rebuffed in earlier attempts . 2 | Early the next day they routed the surviving demonstrators who fled the square that had occupied for three weeks in defiance of government orders . 3 | Thousands died in the two days of violence . 4 | The bloody weekend was the climax of trouble that had escalated since April . 5 | Later demonstrations in other large Chinese cities protested the Beijing slaughter . 6 | The United States suspended all military sales to China . 7 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/DUC2002/docs-spl/D110.M.100.H.C.spl: -------------------------------------------------------------------------------- 1 | Iraq 's powerful army met little resistance when it invaded Kuwait on 2 August 1990 . 2 | The invasion came as no surprise . 3 | Iraqi President Hussein had accused Kuwait of stealing oil from a border area , and exceeding OPEC production goals . 4 | The United Nations Security Council voted on 6 August to impose trade and military sanctions on Iraq . 5 | Some major oil importers had already embargoed Iraqi oil . 6 | Oil prices soared . 7 | The United States moved an aircraft carrier into the Arabian Sea . 8 | Iraq warned its people of a possible United States attack . 9 | President Bush only said that all options were open . 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/DUC2002/docs-spl/D111.M.100.H.C.spl: -------------------------------------------------------------------------------- 1 | Freighters sank off Cape Cod in 1989 , and in the North Sea in 1988 . 2 | A 1989 Austrian scandal grew out of the 1977 sinking of the Lucona . 3 | In 1989 an Argentine supply ship sank in Antarctica . 4 | In 1994 a Korean fishing vessel was scuttled while fishing illegally near Argentina . 5 | The Ostwind , once Hitler 's yacht , was purposely sunk off Florida . 6 | An American pleasure boat was sunk by aggressive whales . 7 | In 1994 the ferry Estonia sank with 800 aboard . 8 | The German battleship Bismarck , scuttled in 1989 , was located in 1989 . 9 | A Turkish vessel , sunk in 1822 , was found in 1988 . 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/DUC2002/docs-spl/D117.M.100.I.G.spl: -------------------------------------------------------------------------------- 1 | Britain 's Booker Prize for fiction novels is similar to America 's Pulitzer Prize and National Book awards but more excitement is associated with it . 2 | British publishers each submit three new titles . 3 | The total of around 100 books is narrowed down to a final six by a panel of learned judges after they have read all the novels . 4 | Odds are given with reviews , and literary insiders bet on which book will win the prize . 5 | The winner is announced at a yearly banquet . 6 | The Prize is administered by Book Trust , an educational charity , and sponsored by Booker , an international food and farming business . 7 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/models/SL.P.10.R.A.SL062003-01.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.A.SL062003-01 4 | 5 | 6 | [1] Poor nations demand trade subsidies from developed nations. 7 | 8 | 9 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/models/SL.P.10.R.A.SL062003-02.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.A.SL062003-02 4 | 5 | 6 | [1] Indonesia charges Imam Samudra and Amrozi with Bali bombing. 7 | 8 | 9 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/models/SL.P.10.R.A.SL062003-03.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.A.SL062003-03 4 | 5 | 6 | [1] Improvements in homeland security, intelligence required to eliminate terrorist threat. 7 | 8 | 9 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/models/SL.P.10.R.A.SL062003-04.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.A.SL062003-04 4 | 5 | 6 | [1] War against terror for India and world will continue. 7 | 8 | 9 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/models/SL.P.10.R.A.SL062003-05.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.A.SL062003-05 4 | 5 | 6 | [1] Musharraf charms media, but Agra Summit fails. 7 | 8 | 9 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/models/SL.P.10.R.A.SL062003-06.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.A.SL062003-06 4 | 5 | 6 | [1] Uday Marankar reminisces on the devastation caused by Gujrat earthquake. 7 | 8 | 9 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/models/SL.P.10.R.A.SL062003-07.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.A.SL062003-07 4 | 5 | 6 | [1] Vajpayee showed lack of leadership in governing country in 2001. 7 | 8 | 9 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/models/SL.P.10.R.A.SL062003-08.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.A.SL062003-08 4 | 5 | 6 | [1] Iraq has 2 months to turn over weapons of mass destruction. 7 | 8 | 9 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/models/SL.P.10.R.A.SL062003-09.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.A.SL062003-09 4 | 5 | 6 | [1] American Industry saved $10 billion by outsourcing to India: NASSCOM 7 | 8 | 9 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/models/SL.P.10.R.A.SL062003-10.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.A.SL062003-10 4 | 5 | 6 | [1] Mehta and 3 others convicted for stock market scandal. 7 | 8 | 9 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/models/SL.P.10.R.A.SL062003-11.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.A.SL062003-11 4 | 5 | 6 | [1] Defense minister threatens Jayalalitha with criminal investigation. 7 | 8 | 9 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/models/SL.P.10.R.A.SL062003-12.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.A.SL062003-12 4 | 5 | 6 | [1] India wants friendly relations with neighbors: Jaswant Singh 7 | 8 | 9 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/models/SL.P.10.R.A.SL062003-13.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.A.SL062003-13 4 | 5 | 6 | [1] No slandering or slogan shouting at Singh's campaign party. 7 | 8 | 9 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/models/SL.P.10.R.A.SL062003-14.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.A.SL062003-14 4 | 5 | 6 | [1] World Bank president praises India's economic development. 7 | 8 | 9 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/models/SL.P.10.R.A.SL062003-15.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.A.SL062003-15 4 | 5 | 6 | [1] Protests and demonstrations at site of G8 summit. 7 | 8 | 9 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/models/SL.P.10.R.A.SL062003-16.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.A.SL062003-16 4 | 5 | 6 | [1] "No shortage of IT professionals in the country": Pasvaan 7 | 8 | 9 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/models/SL.P.10.R.A.SL062003-17.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.A.SL062003-17 4 | 5 | 6 | [1] New hope for peace in Kashmir after Vajpayee, Sonia's visit. 7 | 8 | 9 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/models/SL.P.10.R.A.SL062003-18.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.A.SL062003-18 4 | 5 | 6 | [1] India's plans to send unmanned moon mission on right track. 7 | 8 | 9 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/models/SL.P.10.R.A.SL062003-19.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.A.SL062003-19 4 | 5 | 6 | [1] Investigation on to determine cause of fire in army depot. 7 | 8 | 9 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/models/SL.P.10.R.A.SL062003-20.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.A.SL062003-20 4 | 5 | 6 | [1] Project to save tigers successful: Environment and Forest Ministry. 7 | 8 | 9 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/models/SL.P.10.R.A.SL062003-21.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.A.SL062003-21 4 | 5 | 6 | [1] Hunt on for killers of BHEL's Vice-President, family. 7 | 8 | 9 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/models/SL.P.10.R.A.SL062003-22.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.A.SL062003-22 4 | 5 | 6 | [1] India can deliver fitting response to Pakistan: Chinmayananda 7 | 8 | 9 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/models/SL.P.10.R.A.SL062003-23.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.A.SL062003-23 4 | 5 | 6 | [1] Project to make India a "Developed Nation" by 2020. 7 | 8 | 9 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/models/SL.P.10.R.A.SL062003-24.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.A.SL062003-24 4 | 5 | 6 | [1] 4 killed in accident between Roadway bus and Maruti. 7 | 8 | 9 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/models/SL.P.10.R.A.SL062003-25.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.A.SL062003-25 4 | 5 | 6 | [1] Kashmir can forge friendship between India and Pakistan: Mufti 7 | 8 | 9 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/models/SL.P.10.R.B.SL062003-01.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.B.SL062003-01 4 | 5 | 6 | [1] Poor nations pressurise developed countries into granting trade subsidies. 7 | 8 | 9 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/models/SL.P.10.R.B.SL062003-02.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.B.SL062003-02 4 | 5 | 6 | [1] The suspected 'Bali bomber', Imam Samudra goes to trial. 7 | 8 | 9 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/models/SL.P.10.R.B.SL062003-03.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.B.SL062003-03 4 | 5 | 6 | [1] Terrorism can be solved through efficent policy than brute force. 7 | 8 | 9 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/models/SL.P.10.R.B.SL062003-04.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.B.SL062003-04 4 | 5 | 6 | [1] India along with others continue to fight against evil elements. 7 | 8 | 9 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/models/SL.P.10.R.B.SL062003-05.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.B.SL062003-05 4 | 5 | 6 | [1] Agra Summit not fruitful but Musharraf grabs attention of media. 7 | 8 | 9 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/models/SL.P.10.R.B.SL062003-06.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.B.SL062003-06 4 | 5 | 6 | [1] Massive earthquake rocks the state of Gujarat on 26th January,2002. 7 | 8 | 9 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/models/SL.P.10.R.B.SL062003-07.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.B.SL062003-07 4 | 5 | 6 | [1] 2001: Year full of conundrums and disappointments for Prime-Minister Vajpayee. 7 | 8 | 9 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/models/SL.P.10.R.B.SL062003-08.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.B.SL062003-08 4 | 5 | 6 | [1] Iraqi's given 2 weeks notice to handover unlicensed weapons: America. 7 | 8 | 9 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/models/SL.P.10.R.B.SL062003-09.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.B.SL062003-09 4 | 5 | 6 | [1] Outsourcing to India saves US economy 10-11 billion dollars: NASSCOM. 7 | 8 | 9 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/models/SL.P.10.R.B.SL062003-10.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.B.SL062003-10 4 | 5 | 6 | [1] Harshad Mehta ("Big Bull") and accomplices handed 5 years imprisonment. 7 | 8 | 9 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/models/SL.P.10.R.B.SL062003-11.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.B.SL062003-11 4 | 5 | 6 | [1] Defense Minister George Fernandes threatens prosecution against AIADMK supremo Jayalalitha. 7 | 8 | 9 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/models/SL.P.10.R.B.SL062003-12.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.B.SL062003-12 4 | 5 | 6 | [1] Jaswant Singh signifies the importance for friendly relationship with neighbors. 7 | 8 | 9 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/models/SL.P.10.R.B.SL062003-13.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.B.SL062003-13 4 | 5 | 6 | [1] Manmohan Singh's anomalous political campaign for the Lok Sabha elections. 7 | 8 | 9 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/models/SL.P.10.R.B.SL062003-14.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.B.SL062003-14 4 | 5 | 6 | [1] World Bank President praises India's progress; accepts invitation to India. 7 | 8 | 9 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/models/SL.P.10.R.B.SL062003-15.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.B.SL062003-15 4 | 5 | 6 | [1] Violence and demonstrations gripped the recent G-8 meeting in France. 7 | 8 | 9 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/models/SL.P.10.R.B.SL062003-16.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.B.SL062003-16 4 | 5 | 6 | [1] IT professionals to meet the growing demand for information technology. 7 | 8 | 9 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/models/SL.P.10.R.B.SL062003-17.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.B.SL062003-17 4 | 5 | 6 | [1] Vajpayee, Sonia tour of Kashmir infuses new zeal in Kashmiri's. 7 | 8 | 9 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/models/SL.P.10.R.B.SL062003-18.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.B.SL062003-18 4 | 5 | 6 | [1] Indian dream of reaching the moon on right track: Kasturirangan 7 | 8 | 9 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/models/SL.P.10.R.B.SL062003-19.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.B.SL062003-19 4 | 5 | 6 | [1] Investigation into fire at the Jaisalmer army depot begins: Army. 7 | 8 | 9 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/models/SL.P.10.R.B.SL062003-20.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.B.SL062003-20 4 | 5 | 6 | [1] Operation "Project Tiger" success: Report by Forest and Environmental Ministry. 7 | 8 | 9 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/models/SL.P.10.R.B.SL062003-21.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.B.SL062003-21 4 | 5 | 6 | [1] "BHEL" Vice-President Shyam Agarwal and wife found murdered at home. 7 | 8 | 9 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/models/SL.P.10.R.B.SL062003-22.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.B.SL062003-22 4 | 5 | 6 | [1] India aptly capable of counter-attacking Pakistani sponsored cross-border terrorism: Chinmayananda. 7 | 8 | 9 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/models/SL.P.10.R.B.SL062003-23.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.B.SL062003-23 4 | 5 | 6 | [1] President APJ.Kalam - Scheme for developed India by 2020 ready. 7 | 8 | 9 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/models/SL.P.10.R.B.SL062003-24.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.B.SL062003-24 4 | 5 | 6 | [1] 4 dead in collision between "Roadways" Bus and Maruti car. 7 | 8 | 9 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/models/SL.P.10.R.B.SL062003-25.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.B.SL062003-25 4 | 5 | 6 | [1] Kashmir: Link for peace rather than war between India-Pakistan - Mufti. 7 | 8 | 9 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/models/SL.P.10.R.C.SL062003-01.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.C.SL062003-01 4 | 5 | 6 | [1] Developed countries should be pressurized. Business exemptions to poor nations. 7 | 8 | 9 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/models/SL.P.10.R.C.SL062003-02.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.C.SL062003-02 4 | 5 | 6 | [1] Description of trial on Bali bomb blast suspect Imam Samudra 7 | 8 | 9 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/models/SL.P.10.R.C.SL062003-03.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.C.SL062003-03 4 | 5 | 6 | [1] Finding effective strategies better than attacking terrorist camps or war. 7 | 8 | 9 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/models/SL.P.10.R.C.SL062003-04.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.C.SL062003-04 4 | 5 | 6 | [1] Fight against 'evil' everlasting for India and rest of world 7 | 8 | 9 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/models/SL.P.10.R.C.SL062003-05.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.C.SL062003-05 4 | 5 | 6 | [1] Agra talks fail but Musharraf manages to gain publicity 7 | 8 | 9 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/models/SL.P.10.R.C.SL062003-06.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.C.SL062003-06 4 | 5 | 6 | [1] Reporter's earthquake experience and rapid work to submit magazine story 7 | 8 | 9 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/models/SL.P.10.R.C.SL062003-07.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.C.SL062003-07 4 | 5 | 6 | [1] Account of an unfortunate administrating year for Indian prime minister 7 | 8 | 9 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/models/SL.P.10.R.C.SL062003-08.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.C.SL062003-08 4 | 5 | 6 | [1] America gives two weeks for Iraqi's to surrender unauthorized weapons 7 | 8 | 9 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/models/SL.P.10.R.C.SL062003-09.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.C.SL062003-09 4 | 5 | 6 | [1] America saves billions by outsourcing work to India: NASSCOM study 7 | 8 | 9 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/models/SL.P.10.R.C.SL062003-10.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.C.SL062003-10 4 | 5 | 6 | [1] High court ruling on Harshad Mehta in stock market scam 7 | 8 | 9 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/models/SL.P.10.R.C.SL062003-11.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.C.SL062003-11 4 | 5 | 6 | [1] Account of defense minister's threat for legal action against Jayalalita 7 | 8 | 9 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/models/SL.P.10.R.C.SL062003-12.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.C.SL062003-12 4 | 5 | 6 | [1] External affairs minister addresses India's interest in friendship with neighbors 7 | 8 | 9 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/models/SL.P.10.R.C.SL062003-13.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.C.SL062003-13 4 | 5 | 6 | [1] Description of a political gathering in Manmohan Singh's election campaign 7 | 8 | 9 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/models/SL.P.10.R.C.SL062003-14.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.C.SL062003-14 4 | 5 | 6 | [1] World bank chief praises India's economic development 7 | 8 | 9 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/models/SL.P.10.R.C.SL062003-15.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.C.SL062003-15 4 | 5 | 6 | [1] Demonstration and violence near G-8 summit invokes police response 7 | 8 | 9 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/models/SL.P.10.R.C.SL062003-16.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.C.SL062003-16 4 | 5 | 6 | [1] Human resource minister plans to increase 'IT' professionals in India 7 | 8 | 9 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/models/SL.P.10.R.C.SL062003-17.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.C.SL062003-17 4 | 5 | 6 | [1] Vajpayee and Sonia visits rejuvenates spirits in kashmiris' for peace. 7 | 8 | 9 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/models/SL.P.10.R.C.SL062003-18.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.C.SL062003-18 4 | 5 | 6 | [1] India's mission to reach moon: technical competancy and project justification 7 | 8 | 9 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/models/SL.P.10.R.C.SL062003-19.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.C.SL062003-19 4 | 5 | 6 | [1] Investigation being conducted into fire at army depot in India 7 | 8 | 9 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/models/SL.P.10.R.C.SL062003-20.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.C.SL062003-20 4 | 5 | 6 | [1] Glimpses of 'Project Tiger', a successful undertaking by Indian government 7 | 8 | 9 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/models/SL.P.10.R.C.SL062003-21.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.C.SL062003-21 4 | 5 | 6 | [1] 'BHEL' Vice President and his wife found murdered at home 7 | 8 | 9 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/models/SL.P.10.R.C.SL062003-22.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.C.SL062003-22 4 | 5 | 6 | [1] India can take action if Pakistan fails to curtail terrorism 7 | 8 | 9 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/models/SL.P.10.R.C.SL062003-23.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.C.SL062003-23 4 | 5 | 6 | [1] Improvement in five areas will make India 'developed' by 2020 7 | 8 | 9 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/models/SL.P.10.R.C.SL062003-24.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.C.SL062003-24 4 | 5 | 6 | [1] Four killed in accident between 'Roadways' bus and 'Maruti' car 7 | 8 | 9 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/models/SL.P.10.R.C.SL062003-25.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.C.SL062003-25 4 | 5 | 6 | [1] Resolving Kashmir by talks will create friendship between India-Pakistan 7 | 8 | 9 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/models/SL.P.10.R.D.SL062003-01.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.D.SL062003-01 4 | 5 | 6 | [1] World's poor decide to urge developed nations for business concessions 7 | 8 | 9 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/models/SL.P.10.R.D.SL062003-02.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.D.SL062003-02 4 | 5 | 6 | [1] Trial of Imam samudra gets underway in Bali 7 | 8 | 9 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/models/SL.P.10.R.D.SL062003-03.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.D.SL062003-03 4 | 5 | 6 | [1] Attacking terrorists not a solution. Need a more effective strategy. 7 | 8 | 9 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/models/SL.P.10.R.D.SL062003-04.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.D.SL062003-04 4 | 5 | 6 | [1] Struggle against evil continues in India and the rest of the world. 7 | 8 | 9 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/models/SL.P.10.R.D.SL062003-05.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.D.SL062003-05 4 | 5 | 6 | [1] Agra summit: Musharraf impresses journalists, but talks failure imminent. 7 | 8 | 9 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/models/SL.P.10.R.D.SL062003-06.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.D.SL062003-06 4 | 5 | 6 | [1] Gujarat Earthquake: A first hand narrative 7 | 8 | 9 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/models/SL.P.10.R.D.SL062003-07.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.D.SL062003-07 4 | 5 | 6 | [1] The year 2001: A disaster for Vajpayee 7 | 8 | 9 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/models/SL.P.10.R.D.SL062003-08.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.D.SL062003-08 4 | 5 | 6 | [1] Iraqis face weapon surrender deadline 7 | 8 | 9 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/models/SL.P.10.R.D.SL062003-09.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.D.SL062003-09 4 | 5 | 6 | [1] Outsourcing to India saves US 10 Billion Dollars- NASSCOM 7 | 8 | 9 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/models/SL.P.10.R.D.SL062003-10.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.D.SL062003-10 4 | 5 | 6 | [1] Stock scam: 5 years imprisonment for Harshad Mehta 7 | 8 | 9 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/models/SL.P.10.R.D.SL062003-11.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.D.SL062003-11 4 | 5 | 6 | [1] Defense minister threatens Jayalalitha for prosecution. 7 | 8 | 9 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/models/SL.P.10.R.D.SL062003-12.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.D.SL062003-12 4 | 5 | 6 | [1] India in favor of maintaining friendly relations with neighbors. 7 | 8 | 9 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/models/SL.P.10.R.D.SL062003-13.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.D.SL062003-13 4 | 5 | 6 | [1] Manmohan Singh's assembly peaceful, hospitable and unique. 7 | 8 | 9 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/models/SL.P.10.R.D.SL062003-14.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.D.SL062003-14 4 | 5 | 6 | [1] James Wulfenson praises India's economic development and accepts Yashwant's invitation. 7 | 8 | 9 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/models/SL.P.10.R.D.SL062003-15.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.D.SL062003-15 4 | 5 | 6 | [1] Demonstrations by rebels near G-8 summit site. 7 | 8 | 9 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/models/SL.P.10.R.D.SL062003-16.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.D.SL062003-16 4 | 5 | 6 | [1] "There won't be a shortage of IT professionals" - Sanjay Paswan 7 | 8 | 9 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/models/SL.P.10.R.D.SL062003-17.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.D.SL062003-17 4 | 5 | 6 | [1] Vajpayee and Sonia's meeting raises hopes of peace in Kashmir. 7 | 8 | 9 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/models/SL.P.10.R.D.SL062003-18.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.D.SL062003-18 4 | 5 | 6 | [1] India's mission to reach moon on the right track- Kasturirangan. 7 | 8 | 9 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/models/SL.P.10.R.D.SL062003-19.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.D.SL062003-19 4 | 5 | 6 | [1] Fire in army depot, Jaiselmer district: Investigations underway 7 | 8 | 9 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/models/SL.P.10.R.D.SL062003-20.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.D.SL062003-20 4 | 5 | 6 | [1] Project Tiger: Indian Government's mission to save tigers successful 7 | 8 | 9 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/models/SL.P.10.R.D.SL062003-21.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.D.SL062003-21 4 | 5 | 6 | [1] Shyam Lal Agarwal, vice president of BHEL, assasinated. 7 | 8 | 9 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/models/SL.P.10.R.D.SL062003-22.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.D.SL062003-22 4 | 5 | 6 | [1] India adept at retaliating Pakistan's dirty tricks 7 | 8 | 9 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/models/SL.P.10.R.D.SL062003-23.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.D.SL062003-23 4 | 5 | 6 | [1] Strategy ready to make India a developed nation by 2020 7 | 8 | 9 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/models/SL.P.10.R.D.SL062003-24.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.D.SL062003-24 4 | 5 | 6 | [1] Roadways bus and a Maruti collide: 4 dead 7 | 8 | 9 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/models/SL.P.10.R.D.SL062003-25.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.D.SL062003-25 4 | 5 | 6 | [1] Kashmir: A means of friendship between India and Pakistan? 7 | 8 | 9 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.11.SL062003-01.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.11.SL062003-01 4 | 5 | 6 | [1] The/ Officers it/ The concessions/ The/ The discussion 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.11.SL062003-02.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.11.SL062003-02 4 | 5 | 6 | [1] The city Bali last/ In the case/ The averted/ The/ The death 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.11.SL062003-03.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.11.SL062003-03 4 | 5 | 6 | [1] Foreign Minister Colin to quit/ Attack of Pakistan/ That Kashmir freedom 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.11.SL062003-04.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.11.SL062003-04 4 | 5 | 6 | [1] The world for/ At the time of any one of the/ More 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.11.SL062003-05.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.11.SL062003-05 4 | 5 | 6 | [1] Conference general/ Rice to the failure of 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.11.SL062003-06.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.11.SL062003-06 4 | 5 | 6 | [1] ]/ On the day ever 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.11.SL062003-07.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.11.SL062003-07 4 | 5 | 6 | [1] Years the affairs of Vajpayee/ 2001 passage gum/ The great relief 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.11.SL062003-08.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.11.SL062003-08 4 | 5 | 6 | [1] Iraqis to work/ Of the week at the time/ Army said/ The streets 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.11.SL062003-09.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.11.SL062003-09 4 | 5 | 6 | [1] 2.1 Indian companies work to/ Dollar savings/ US/ To make the proposal. 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.11.SL062003-10.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.11.SL062003-10 4 | 5 | 6 | [1] Scam in Harshad Mehta and three other 5-5 years of hard/ The a/ Of the year 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.11.SL062003-11.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.11.SL062003-11 4 | 5 | 6 | [1] The legal action threatened Delhi,/ Party Mr./ Threat/ Accused 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.11.SL062003-12.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.11.SL062003-12 4 | 5 | 6 | [1] To keep in the:/ Jaswant Singh said/ To keep always/ Mouth of the 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.11.SL062003-13.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.11.SL062003-13 4 | 5 | 6 | [1] The charming not/ "revolution-murdabad ' slogans and not/ Not a.m. the frenzied 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.11.SL062003-14.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.11.SL062003-14 4 | 5 | 6 | [1] By the economic development praise/ Wolfensohn India tour./ India 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.11.SL062003-15.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.11.SL062003-15 4 | 5 | 6 | [1] Summit conference with/ As a countries/ Centre 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.11.SL062003-16.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.11.SL062003-16 4 | 5 | 6 | [1] Professional of/ To be / Paswan said/ In the years/ ' "development 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.11.SL062003-17.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.11.SL062003-17 4 | 5 | 6 | [1] Sonia visit to Kashmir new/ The recent/ Three-day meeting/ The 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.11.SL062003-18.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.11.SL062003-18 4 | 5 | 6 | [1] The of/ Chief Kasturirangan said/ On arrival/ In 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.11.SL062003-19.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.11.SL062003-19 4 | 5 | 6 | [1] Stock in probe into/ Sultana area of the army/ On Sunday began 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.11.SL062003-20.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.11.SL062003-20 4 | 5 | 6 | [1] Project successful/ Forest/ The report of the/ Money/ Delay 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.11.SL062003-21.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.11.SL062003-21 4 | 5 | 6 | [1] Crime. murder Bhel of general manager/ Wife of/ Hardwar Government company/ The/ Yet 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.11.SL062003-22.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.11.SL062003-22 4 | 5 | 6 | [1] Deeds of giving capable of./ Today across the border/ To 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.11.SL062003-23.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.11.SL062003-23 4 | 5 | 6 | [1] To make plan/ June talks./ Kalam/ College engineering on/ Course 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.11.SL062003-24.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.11.SL062003-24 4 | 5 | 6 | [1] Bus and hit four dead./ The district of sector/ People/ Office received 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.11.SL062003-25.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.11.SL062003-25 4 | 5 | 6 | [1] India and Pakistan in the medium/ June talks of Kashmir/ The improvement in the dialogue 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.12.SL062003-01.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.12.SL062003-01 4 | 5 | 6 | [1] TRADE/ AGREEMENT/ PRESSURE/ BE IN BUSINESS CONCESSIONS/ COUNTRIES BANGLADESH IN DHAKA/ ASIAN 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.12.SL062003-02.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.12.SL062003-02 4 | 5 | 6 | [1] BOMB/ ATTACK/ FOUND GUILTY HE DEATH SENTENCE 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.12.SL062003-03.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.12.SL062003-03 4 | 5 | 6 | [1] TERRORIST ATTACK/ COLIN POWELL/ INDIAN PARLIAMENT/ PAKISTAN/ KASHMIR FREEDOM 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.12.SL062003-04.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.12.SL062003-04 4 | 5 | 6 | [1] WORLD/ EVIL STRUGGLE AGAINST HORIZON/ SENTENCE 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.12.SL062003-05.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.12.SL062003-05 4 | 5 | 6 | [1] AGRA SUMMIT/ PERVEZ MUSHARRAF/ LORD RICE/ TALKS 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.12.SL062003-06.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.12.SL062003-06 4 | 5 | 6 | [1] GUJARAT EARTHQUAKE TREMBLE RAISED LAND UNSAFE BUILDINGS/ EARTH/ LONG HAVOC 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.12.SL062003-07.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.12.SL062003-07 4 | 5 | 6 | [1] VAJPAYEE REMAIN/ HOUSE/ RELIEF 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.12.SL062003-08.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.12.SL062003-08 4 | 5 | 6 | [1] 21 IRAQI ARMY/ WEAPONS/ WEEKS TIME JUN 1 2003 UTC/ IRAQ 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.12.SL062003-09.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.12.SL062003-09 4 | 5 | 6 | [1] INDIAN/ MARCH 2003 UTC 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.12.SL062003-10.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.12.SL062003-10 4 | 5 | 6 | [1] SECURITIES SCAM/ RIGOROUS IMPRISONMENT MUMBAI/ HIGH COURT/ IMPRISONMENT SENTENCE/ CASE 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.12.SL062003-11.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.12.SL062003-11 4 | 5 | 6 | [1] DEFENSE MINISTER THREAT OF LEGAL ACTION NEW DELHI/ FERNANDES/ SUPREMO/ FOOD 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.12.SL062003-12.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.12.SL062003-12 4 | 5 | 6 | [1] MR SINGH NEW DELHI/ MINISTER JASWANT SINGH INDIA IS NEIGHBOUR/ SELF/ MOUTH 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.12.SL062003-13.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.12.SL062003-13 4 | 5 | 6 | [1] HOUSE NOT DRUMS NEW DELHI 31 AUGUST CAPITAL NEW/ ELECTION/ REVOLUTION/ RIVAL 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.12.SL062003-14.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.12.SL062003-14 4 | 5 | 6 | [1] ECONOMIC/ JAMES WOLFENSOHN VISIT OF FINANCE MINISTER YASHWANT/ INDIA/ GROWTH/ ROAD 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.12.SL062003-15.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.12.SL062003-15 4 | 5 | 6 | [1] SUMMIT OF SITE WITH DEMONSTRATIONS VIOLENCE JUNE/ POLICE/ CITY/ FRENCH 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.12.SL062003-16.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.12.SL062003-16 4 | 5 | 6 | [1] PROFESSIONAL LACK OF WILL NOT BE/ CENTRAL HUMAN RESOURCES/ STATE 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.12.SL062003-17.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.12.SL062003-17 4 | 5 | 6 | [1] VAJPAYEE SONIAS VISIT TO NEW ZEAL IN KASHMIR JUNE/ VALLEY 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.12.SL062003-18.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.12.SL062003-18 4 | 5 | 6 | [1] POLL OF INDIA JOURNEY/ JUNE INDIAN SPACE KASTURIRANGAN/ MISSION 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.12.SL062003-19.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.12.SL062003-19 4 | 5 | 6 | [1] MILITARY IN TO TAKE STOCK OF PROBE JUNE/ BORDER/ ARMY/ TEAM 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.12.SL062003-20.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.12.SL062003-20 4 | 5 | 6 | [1] GOVERNMENT PROJECT TIGER SUCCESSFUL/ TIGERS/ DELAY 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.12.SL062003-21.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.12.SL062003-21 4 | 5 | 6 | [1] JUNE TALKS/ RED AND BLACK AGARWAL/ HOUSE JHOORDI/ DELAY 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.12.SL062003-22.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.12.SL062003-22 4 | 5 | 6 | [1] INDIA PAKISTAN DEEDS TO ANSWER CAPABLE/ P/ TALKS/ STATE/ CROSS/ ANSWER SWAMI 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.12.SL062003-23.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.12.SL062003-23 4 | 5 | 6 | [1] SUN BY 2020 INDIA/ PLAN KANCHIPURAM 19 TALKS/ WORLD 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.12.SL062003-24.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.12.SL062003-24 4 | 5 | 6 | [1] ROADWAYS BUS AND IMPACT OF FOUR DEAD MORADABAD/ TALKS/ POLICE/ CAR/ BRASS 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.12.SL062003-25.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.12.SL062003-25 4 | 5 | 6 | [1] INDIA AND PAKISTAN IN KASHMIR OF FRIENDSHIP/ SRINAGAR/ INDIAN 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.13.SL062003-01.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.13.SL062003-01 4 | 5 | 6 | [1] WORLD COUNTRIES/ SENIOR TRADE OFFICIALS/ AGREEMENT/ COUNTRIES BANGLADESH DHAKA/ CAPITAL 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.13.SL062003-02.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.13.SL062003-02 4 | 5 | 6 | [1] LAST YEAR/ BOMB BLAST/ CASE IMAM ACCUSED INDIA/ SEA/ WERE 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.13.SL062003-03.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.13.SL062003-03 4 | 5 | 6 | [1] TERRORIST ATTACK CAMPS MEASURES BE MORE EFFECTIVE POLICY AMERICAN/ INDIAN 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.13.SL062003-04.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.13.SL062003-04 4 | 5 | 6 | [1] WORLD GOOD EVIL STRUGGLE/ HORIZON/ SENTENCE/ MATTER IS/ SHAITANS CHAPTER 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.13.SL062003-05.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.13.SL062003-05 4 | 5 | 6 | [1] AGRA/ LORD RICE/ FAILURE TALKS WAS CHAIR/ ARE MISSING LAST 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.13.SL062003-06.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.13.SL062003-06 4 | 5 | 6 | [1] GUJARAT EARTHQUAKE TREMBLE RAISED LAND UNSAFE BUILDINGS WERE EARTH RISING 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.13.SL062003-07.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.13.SL062003-07 4 | 5 | 6 | [1] YEAR RUNNING AFFAIRS VAJPAYEE REMAIN CLEAR/ HOUSE/ RELIEF/ BIG/ YEAR 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.13.SL062003-08.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.13.SL062003-08 4 | 5 | 6 | [1] HAND TWO WEEKS TIME JUN 41 1 2003 UTC 71 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.13.SL062003-09.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.13.SL062003-09 4 | 5 | 6 | [1] 21 INDIAN COMPANIES WORK/ US ECONOMY 10 BILLION DOLLAR SAVINGS 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.13.SL062003-10.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.13.SL062003-10 4 | 5 | 6 | [1] THREE OTHERS YEARS RIGOROUS IMPRISONMENT MUMBAI MUMBAI 28 TH SEPTEMBER 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.13.SL062003-11.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.13.SL062003-11 4 | 5 | 6 | [1] DEFENSE MINISTER THREAT LEGAL ACTION NEW DELHI AUGUST 31 DEFENCE 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.13.SL062003-12.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.13.SL062003-12 4 | 5 | 6 | [1] MAINTAIN FRIENDLY RELATIONS FAVOUR MR SINGH NEW DELHI 31 MR 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.13.SL062003-13.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.13.SL062003-13 4 | 5 | 6 | [1] EXOTIC SLOGANS/ HOUSE DRUMS NEW DELHI 31 AUGUST CAPITAL NEW 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.13.SL062003-14.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.13.SL062003-14 4 | 5 | 6 | [1] WORLD BANK PRESIDENT JAMES INDIAS ECONOMIC DEVELOPMENT APPRECIATION WASHINGTON SEPTEMBER 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.13.SL062003-15.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.13.SL062003-15 4 | 5 | 6 | [1] ONGOING CONFERENCE OPPONENTS/ POLICE GENEVA/ CENTRE/ CITY SUNDAY NIGHT/ CONTINUED 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.13.SL062003-16.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.13.SL062003-16 4 | 5 | 6 | [1] JUNE CENTRAL HUMAN RESOURCES MINISTER STATE SANJAY/ PACE/ INCREASE/ MEASURES 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.13.SL062003-17.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.13.SL062003-17 4 | 5 | 6 | [1] VAJPAYEE SONIAS VISIT NEW ZEAL KASHMIR JUNE PRIME MINISTER ATAL 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.13.SL062003-18.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.13.SL062003-18 4 | 5 | 6 | [1] POLL INDIA JOURNEY/ RIGHT WAY JUNE INDIAN SPACE KASTURIRANGAN CHIEF 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.13.SL062003-19.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.13.SL062003-19 4 | 5 | 6 | [1] MILITARY/ TAKE STOCK/ PROBE JUNE RAJASTHAN BORDER JAISALMER DISTRICT SULTANA 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.13.SL062003-20.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.13.SL062003-20 4 | 5 | 6 | [1] GOVERNMENT PROJECT TIGER SUCCESSFUL PROJECT JUNE ENVIRONMENT FORESTS/ MINISTRY/ MONEY 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.13.SL062003-21.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.13.SL062003-21 4 | 5 | 6 | [1] RED BLACK AGARWAL WIFE SATYA AGARWAL/ HOUSE JHOORDI MURDER/ DELAY 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.13.SL062003-22.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.13.SL062003-22 4 | 5 | 6 | [1] BAHERI P N JUNE 16 TALKS CENTRAL HOME MINISTER STATE 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.13.SL062003-23.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.13.SL062003-23 4 | 5 | 6 | [1] MAKE PLAN KANCHIPURAM/ WORLD ENGINEERING COLLEGE/ COURSE/ INAUGURATING BLOCK OPENING 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.13.SL062003-24.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.13.SL062003-24 4 | 5 | 6 | [1] MARUTI CAR CLASH WOMEN FOUR PEOPLE DIED SENIOR SUPERINTENDENT POLICE 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.13.SL062003-25.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.13.SL062003-25 4 | 5 | 6 | [1] INDIA PAKISTAN KASHMIR FRIENDSHIP CAN BECOME MEDIUM MOOFTEE SRINAGAR JUNE 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.14.SL062003-01.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.14.SL062003-01 4 | 5 | 6 | [1] WORLD COUNTRIES/ SENIOR TRADE OFFICIALS/ AGREEMENT/ COUNTRIES BANGLADESH DHAKA/ CAPITAL/ ASIAN 49 COUNTRIES/ OFFICERS/ TWO 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.14.SL062003-02.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.14.SL062003-02 4 | 5 | 6 | [1] OCTOBER LAST YEAR/ BOMB BLAST/ CASE IMAM ACCUSED INDIA/ SEA MONDAY BEGAN BE AVERTED ATTACK 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.14.SL062003-03.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.14.SL062003-03 4 | 5 | 6 | [1] TERRORIST ATTACK CAMPS MEASURES BE MORE EFFECTIVE POLICY AMERICAN FOREIGN MINISTER COLIN POWELL/ INDIAN PARLIAMENT 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.14.SL062003-04.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.14.SL062003-04 4 | 5 | 6 | [1] INDIA/ REST/ WORLD GOOD EVIL STRUGGLE/ HORIZON LIVING NORMAL/ ONE TIME/ HISTORY MORE SENTENCE/ MATTER 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.14.SL062003-05.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.14.SL062003-05 4 | 5 | 6 | [1] AGRA SUMMIT GENERAL PERVEZ MUSHARRAF DOMINATE/ LORD RICE/ FAILURE TALKS WAS CHAIR/ ARE MISSING LAST 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.14.SL062003-06.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.14.SL062003-06 4 | 5 | 6 | [1] GUJARAT EARTHQUAKE TREMBLE RAISED LAND UNSAFE BUILDINGS WERE EARTH RISING RECALLS HOW MOMENTS/ DAY/ SEVEN 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.14.SL062003-07.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.14.SL062003-07 4 | 5 | 6 | [1] YEAR RUNNING AFFAIRS VAJPAYEE REMAIN CLEAR/ WILL BE ATAL/ HOUSE/ GREAT SIGH RELIEF/ BIG/ YEAR 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.14.SL062003-08.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.14.SL062003-08 4 | 5 | 6 | [1] 21 IRAQI ARMY/ BUSINESS WEAPONS COME HAND TWO WEEKS TIME JUN 41 1 2003 UTC 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.14.SL062003-09.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.14.SL062003-09 4 | 5 | 6 | [1] 21 INDIAN COMPANIES WORK/ US ECONOMY 10 BILLION DOLLAR SAVINGS JUN 31 MARCH 2003 UTC 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.14.SL062003-10.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.14.SL062003-10 4 | 5 | 6 | [1] THREE OTHERS YEARS RIGOROUS IMPRISONMENT MUMBAI MUMBAI 28 TH SEPTEMBER/ HIGH COURT SPECIAL COURT/ IMPRISONMENT 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.14.SL062003-11.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.14.SL062003-11 4 | 5 | 6 | [1] DEFENSE MINISTER THREAT LEGAL ACTION NEW DELHI AUGUST 31 DEFENCE MINISTER SAMATA PARTY PRESIDENT MR 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.14.SL062003-12.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.14.SL062003-12 4 | 5 | 6 | [1] INDIA NEIGHBOURING COUNTRIES MAINTAIN FRIENDLY RELATIONS FAVOUR MR SINGH NEW DELHI 31 AUGUST MR FOREIGN 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.14.SL062003-13.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.14.SL062003-13 4 | 5 | 6 | [1] EXOTIC SLOGANS/ HOUSE DRUMS NEW DELHI 31 AUGUST CAPITAL NEW/ ELECTION MEETING THERE WAS REVOLUTION 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.14.SL062003-14.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.14.SL062003-14 4 | 5 | 6 | [1] JAMES WOLFENSOHN VISIT/ FINANCE MINISTER YASHWANT SINHA ACCEPTED INVITATION INDIA PRAISE ECONOMIC GROWTH INDIA/ ROAD 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.14.SL062003-15.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.14.SL062003-15 4 | 5 | 6 | [1] ONGOING CONFERENCE OPPONENTS/ POLICE GENEVA/ CENTRE/ CITY SUNDAY NIGHT/ CONTINUED/ FRENCH SWISS DIALOGUE COMMITTEE SDA 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.14.SL062003-16.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.14.SL062003-16 4 | 5 | 6 | [1] PROFESSIONAL LACK WILL BE ALLOWED BE JUNE CENTRAL HUMAN RESOURCES MINISTER STATE SANJAY/ YEARS/ COUNTRY 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.14.SL062003-17.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.14.SL062003-17 4 | 5 | 6 | [1] VAJPAYEE SONIAS VISIT NEW ZEAL KASHMIR JUNE PRIME MINISTER ATAL/ KASHMIR IS ATMOSPHERE EARLY/ VALLEY 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.14.SL062003-18.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.14.SL062003-18 4 | 5 | 6 | [1] INDIAN MISSION RIGHT ROAD HAS BEEN GROWING CAMPAIGN/ FIRST HIGH RESOLUTION VEHICLES WILL BE SENT 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.14.SL062003-19.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.14.SL062003-19 4 | 5 | 6 | [1] MILITARY/ TAKE STOCK/ PROBE JUNE RAJASTHAN BORDER JAISALMER DISTRICT SULTANA AREA/ ARMY STOCK YESTERDAY SUNDAY 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.14.SL062003-20.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.14.SL062003-20 4 | 5 | 6 | [1] GOVERNMENT PROJECT TIGER SUCCESSFUL PROJECT JUNE ENVIRONMENT FORESTS/ MINISTRY/ REPORT/ MONEY/ STATE GOVERNMENT DELAY IMPACT 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.14.SL062003-21.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.14.SL062003-21 4 | 5 | 6 | [1] DEHRADUN/ RED BLACK AGARWAL WIFE SATYA AGARWAL/ PEOPLE/ HOUSE JHOORDI MURDER YET DID KNOW DELAY 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.14.SL062003-22.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.14.SL062003-22 4 | 5 | 6 | [1] INDIA PAKISTAN DEEDS ANSWER CAPABLE BAHERI P N JUNE 16 TALKS CENTRAL HOME MINISTER STATE 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.14.SL062003-23.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.14.SL062003-23 4 | 5 | 6 | [1] SUN 2020 INDIA ENRICH NATION MAKE PLAN KANCHIPURAM JUNE 19 TALKS PRESIDENT ABDUL KALAM/ WORLD 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.14.SL062003-24.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.14.SL062003-24 4 | 5 | 6 | [1] ROADWAYS BUS IMPACT/ FOUR DEAD MORADABAD ARTICULATED JUNE 20 TALKS UTTAR PRADESH MORADABAD DISTRICT POLICE 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.14.SL062003-25.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.14.SL062003-25 4 | 5 | 6 | [1] INDIA PAKISTAN KASHMIR FRIENDSHIP CAN BECOME MEDIUM MOOFTEE SRINAGAR JUNE 20 TALKS/ PEOPLE/ INDIAN SUBCONTINENT 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.21.SL062003-01.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.21.SL062003-01 4 | 5 | 6 | [1] world trade officials in the 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.21.SL062003-02.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.21.SL062003-02 4 | 5 | 6 | [1] indonesia the last year in the 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.21.SL062003-03.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.21.SL062003-03 4 | 5 | 6 | [1] militants strategy american foreign minister 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.21.SL062003-04.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.21.SL062003-04 4 | 5 | 6 | [1] against conflict in the most 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.21.SL062003-05.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.21.SL062003-05 4 | 5 | 6 | [1] agra of remains top samelana in the news 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.21.SL062003-06.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.21.SL062003-06 4 | 5 | 6 | [1] sure they are the moment in the deluge 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.21.SL062003-07.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.21.SL062003-07 4 | 5 | 6 | [1] past year by raajakaaja walking the people to the home in the breath 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.21.SL062003-08.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.21.SL062003-08 4 | 5 | 6 | [1] 2.1 in the streets in the 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.21.SL062003-09.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.21.SL062003-09 4 | 5 | 6 | [1] state in the leading firm 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.21.SL062003-10.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.21.SL062003-10 4 | 5 | 6 | [1] securities in the five years in firm 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.21.SL062003-11.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.21.SL062003-11 4 | 5 | 6 | [1] legal action will they arms and drug smugglers andaman sea in 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.21.SL062003-12.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.21.SL062003-12 4 | 5 | 6 | [1] nations to friendly relationship in the mouth 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.21.SL062003-13.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.21.SL062003-13 4 | 5 | 6 | [1] charming house in new delhi 31 august capital delhi in a house contenders leaders 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.21.SL062003-14.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.21.SL062003-14 4 | 5 | 6 | [1] world bank september world bank 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.21.SL062003-15.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.21.SL062003-15 4 | 5 | 6 | [1] summit conference site of the city centre in france 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.21.SL062003-16.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.21.SL062003-16 4 | 5 | 6 | [1] union human resources years in the information technology 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.21.SL062003-17.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.21.SL062003-17 4 | 5 | 6 | [1] the new chief minister in the people in 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.21.SL062003-18.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.21.SL062003-18 4 | 5 | 6 | [1] poll of the poll on reach of the rise in sunday 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.21.SL062003-19.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.21.SL062003-19 4 | 5 | 6 | [1] store in aaga fire the check began two in store at and 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.21.SL062003-20.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.21.SL062003-20 4 | 5 | 6 | [1] state of project in the 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.21.SL062003-21.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.21.SL062003-21 4 | 5 | 6 | [1] crime and his wife of the private company 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.21.SL062003-22.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.21.SL062003-22 4 | 5 | 6 | [1] indian pakistani harakato.n the answer give in central home 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.21.SL062003-23.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.21.SL062003-23 4 | 5 | 6 | [1] college in engineering at a postgraduate course for shubhaara.nbha and a postgraduate block open 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.21.SL062003-24.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.21.SL062003-24 4 | 5 | 6 | [1] clash in four dead at the 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.21.SL062003-25.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.21.SL062003-25 4 | 5 | 6 | [1] kashmir indian cuisine in the chief at reform of for indian subcontinent in there 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.22.SL062003-01.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.22.SL062003-01 4 | 5 | 6 | [1] world trade officials in the nations to concessions give bangladesh 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.22.SL062003-02.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.22.SL062003-02 4 | 5 | 6 | [1] indonesia the last year in the 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.22.SL062003-03.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.22.SL062003-03 4 | 5 | 6 | [1] militants strategy american foreign minister 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.22.SL062003-04.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.22.SL062003-04 4 | 5 | 6 | [1] india and other world against conflict when horizon time in a record in more 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.22.SL062003-05.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.22.SL062003-05 4 | 5 | 6 | [1] agra of remains top samelana in the news are last year july in the 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.22.SL062003-06.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.22.SL062003-06 4 | 5 | 6 | [1] earthquake shivering uThI dharaa buildings vulnerable were they are the moment in the deluge 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.22.SL062003-07.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.22.SL062003-07 4 | 5 | 6 | [1] past year by raajakaaja walking the people to the home in if this year 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.22.SL062003-08.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.22.SL062003-08 4 | 5 | 6 | [1] 2.1 iraakiyo.n the army of work in two weeks of the streets in the 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.22.SL062003-09.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.22.SL062003-09 4 | 5 | 6 | [1] state in the leading firm 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.22.SL062003-10.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.22.SL062003-10 4 | 5 | 6 | [1] securities in the five years 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.22.SL062003-11.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.22.SL062003-11 4 | 5 | 6 | [1] legal action of legal action will they arms and drug smugglers andaman sea in 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.22.SL062003-12.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.22.SL062003-12 4 | 5 | 6 | [1] nations to friendly relationship in the mouth 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.22.SL062003-13.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.22.SL062003-13 4 | 5 | 6 | [1] charming house in new delhi 31 august capital delhi in a house contenders leaders 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.22.SL062003-14.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.22.SL062003-14 4 | 5 | 6 | [1] world bank september world bank 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.22.SL062003-15.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.22.SL062003-15 4 | 5 | 6 | [1] summit conference site of violence two leading countries the organization city centre in france 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.22.SL062003-16.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.22.SL062003-16 4 | 5 | 6 | [1] years in the information technology 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.22.SL062003-17.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.22.SL062003-17 4 | 5 | 6 | [1] the new chief minister in the soon peace restoration of people in long valley 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.22.SL062003-18.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.22.SL062003-18 4 | 5 | 6 | [1] poll of the journey correct that poll on reach of the rise in sunday 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.22.SL062003-19.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.22.SL062003-19 4 | 5 | 6 | [1] store in aaga fire the check began two june in store in check and 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.22.SL062003-20.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.22.SL062003-20 4 | 5 | 6 | [1] state of project and forest ministry of the tiger for protection for project project 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.22.SL062003-21.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.22.SL062003-21 4 | 5 | 6 | [1] crime and his wife of the private company people by his home in murder 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.22.SL062003-22.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.22.SL062003-22 4 | 5 | 6 | [1] indian pakistani harakato.n the answer give in central home to terrorism locked in the 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.22.SL062003-23.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.22.SL062003-23 4 | 5 | 6 | [1] college in engineering at a postgraduate course for shubhaara.nbha and a postgraduate block open 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.22.SL062003-24.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.22.SL062003-24 4 | 5 | 6 | [1] clash in four dead at the 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.22.SL062003-25.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.22.SL062003-25 4 | 5 | 6 | [1] kashmir indian cuisine in the chief at reform of for indian subcontinent in there 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.23.SL062003-01.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.23.SL062003-01 4 | 5 | 6 | [1] trade, business nations Bangladesh World Bank financial United_Nations hit bank proposal 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.23.SL062003-02.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.23.SL062003-02 4 | 5 | 6 | [1] bomb allegation explosion Bali(the island)/earring police attacks karachi ship, plane security 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.23.SL062003-03.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.23.SL062003-03 4 | 5 | 6 | [1] police Pakistan terrorism Osama Bin Laden year attacks India 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.23.SL062003-04.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.23.SL062003-04 4 | 5 | 6 | [1] thousand one two India Osama Bin Laden earthquake Osama 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.23.SL062003-05.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.23.SL062003-05 4 | 5 | 6 | [1] team India Vajpayee (India's prime minister) Pakistan government police people people gathering, function 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.23.SL062003-06.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.23.SL062003-06 4 | 5 | 6 | [1] people earthquake building India space Columbia police Kashmir team 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.23.SL062003-07.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.23.SL062003-07 4 | 5 | 6 | [1] Vajpayee (India's prime minister) year war government police Prime Minister India team 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.23.SL062003-08.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.23.SL062003-08 4 | 5 | 6 | [1] point army rate police two weapon one Saddam Hussain 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.23.SL062003-09.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.23.SL062003-09 4 | 5 | 6 | [1] point rate nations one two earthquake Arab/Billion thousand five 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.23.SL062003-10.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.23.SL062003-10 4 | 5 | 6 | [1] court company thousand fame one Enron two program share_market 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.23.SL062003-11.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.23.SL062003-11 4 | 5 | 6 | [1] election test, inspection commission test, exam, inspection missile World Bank ship, plane poll, election party 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.23.SL062003-12.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.23.SL062003-12 4 | 5 | 6 | [1] India atomic Pakistan North_Korea World Bank Korea north plane, aircraft 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.23.SL062003-13.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.23.SL062003-13 4 | 5 | 6 | [1] Singh (common Indian last name) BJP (Bhartiya Janata Party - a political party in India) victory prize, award festival party election Congress political party in India, US Congress Modi (name) 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.23.SL062003-14.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.23.SL062003-14 4 | 5 | 6 | [1] World Bank India bank destroyed meeting/summit financial currency minister both countries 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.23.SL062003-15.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.23.SL062003-15 4 | 5 | 6 | [1] gathering, function nation, country violence people police army gas festival Dollar 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.23.SL062003-16.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.23.SL062003-16 4 | 5 | 6 | [1] minister government Jammu & Kashmir BJP (Bhartiya Janata Party - a political party in India) India party Singh (common Indian last name) mobile World Bank 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.23.SL062003-17.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.23.SL062003-17 4 | 5 | 6 | [1] Kashmir Vajpayee (India's prime minister) Pakistan Jammu & Kashmir Congress political party in India, US Congress Sayeed (name) states India 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.23.SL062003-18.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.23.SL062003-18 4 | 5 | 6 | [1] ship space satellite China India flight Columbia ban water 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.23.SL062003-19.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.23.SL062003-19 4 | 5 | 6 | [1] army accident plane, aircraft rail fame one border share_market security 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.23.SL062003-20.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.23.SL062003-20 4 | 5 | 6 | [1] effort report number, count Me/In, Inside, within Tamil disease information, knowledge government Kashmir 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.23.SL062003-21.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.23.SL062003-21 4 | 5 | 6 | [1] police India talk use Kashmir more explosion two work 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.23.SL062003-22.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.23.SL062003-22 4 | 5 | 6 | [1] Pakistan police Vajpayee (India's prime minister) India government Prime Minister Qaeda ["Al-Qaeda"] cup European 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.23.SL062003-23.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.23.SL062003-23 4 | 5 | 6 | [1] Me/In, Inside, within President India ship nations space effort nineteen thousand 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.23.SL062003-24.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.23.SL062003-24 4 | 5 | 6 | [1] police accident ear poll, election nation, country Pakistan people people weapons 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.23.SL062003-25.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.23.SL062003-25 4 | 5 | 6 | [1] both countries Jammu & Kashmir population, people both Kashmir Pakistan Sayeed (name) Vajpayee (India's prime minister) India 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.24.SL062003-01.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.24.SL062003-01 4 | 5 | 6 | [1] world countries is fact is that developed countries put pressure on that they should be 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.24.SL062003-02.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.24.SL062003-02 4 | 5 | 6 | [1] indonesian city of bali in in bomb blast accused india began to be averted 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.24.SL062003-03.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.24.SL062003-03 4 | 5 | 6 | [1] terrorist attack measures should be more effective policy american foreign minister everyone knows that indian parliament attack 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.24.SL062003-04.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.24.SL062003-04 4 | 5 | 6 | [1] india and rest of world for good and evil struggle because living 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.24.SL062003-05.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.24.SL062003-05 4 | 5 | 6 | [1] agra remains of agra summit in general pervez musharraf was to chair idea 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.24.SL062003-06.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.24.SL062003-06 4 | 5 | 6 | [1] gujarat earthquake tremble raised land unsafe buildings were earth 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.24.SL062003-07.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.24.SL062003-07 4 | 5 | 6 | [1] in past year in running affairs of vajpayee remain clear less to people 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.24.SL062003-08.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.24.SL062003-08 4 | 5 | 6 | [1] 2.1 iraqi army 1 11:28 7.1 american forces around covered with offence to control he for iraqi army 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.24.SL062003-09.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.24.SL062003-09 4 | 5 | 6 | [1] UTC 16:35 4.1 in america indian companies to work not to be given to make proposal 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.24.SL062003-10.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.24.SL062003-10 4 | 5 | 6 | [1] securities scam in harshad mehta and three others to 5 @-@ 5 years 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.24.SL062003-11.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.24.SL062003-11 4 | 5 | 6 | [1] defense minister threat 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.24.SL062003-12.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.24.SL062003-12 4 | 5 | 6 | [1] india from neighbouring countries to maintain friendly relations in favour 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.24.SL062003-13.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.24.SL062003-13 4 | 5 | 6 | [1] manmohan not drums new delhi 31 august capital new delhi there was not @-@ revolution murdabad ' slogans and not 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.24.SL062003-14.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.24.SL062003-14 4 | 5 | 6 | [1] world bank president james by india ' s economic development appreciation visit yashwant sinha accepted invitation 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.24.SL062003-15.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.24.SL062003-15 4 | 5 | 6 | [1] g @-@ 8 summit violence june 2 as leading countries 8 summit all over continued 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.24.SL062003-16.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.24.SL062003-16 4 | 5 | 6 | [1] professional lack will not be allowed to be june 2 central human resources minister said 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.24.SL062003-17.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.24.SL062003-17 4 | 5 | 6 | [1] vajpayee sonia s visit to new zeal in kashmir june is atmosphere 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.24.SL062003-18.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.24.SL062003-18 4 | 5 | 6 | [1] poll of india journey of right way june 2 indian space kasturirangan will be sent 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.24.SL062003-19.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.24.SL062003-19 4 | 5 | 6 | [1] military in to take stock june 2 rajasthan border jaisalmer district in stock yesterday began 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.24.SL062003-20.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.24.SL062003-20 4 | 5 | 6 | [1] government project ' tiger ' successful project june 2 environment and forests of ministry 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.24.SL062003-21.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.24.SL062003-21 4 | 5 | 6 | [1] crime 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.24.SL062003-22.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.24.SL062003-22 4 | 5 | 6 | [1] india pakistan deeds to answer capable of 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.24.SL062003-23.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.24.SL062003-23 4 | 5 | 6 | [1] sun enrich nation to make plan kanchipuram june 19 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.24.SL062003-24.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.24.SL062003-24 4 | 5 | 6 | [1] roadways bus and impact 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/SL2003/systems/SL.P.10.R.24.SL062003-25.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SL.P.10.R.24.SL062003-25 4 | 5 | 6 | [1] india and pakistan in kashmir can become medium @-@ mooftee srinagar june 20 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/RELEASE-1.5.5/sample-test/Verify-SPL/mkSPL.pl: -------------------------------------------------------------------------------- 1 | #!/usr/bin/perl -w 2 | opendir(DIR,".")||die "Cannot open .\n"; 3 | while(defined($file=readdir(DIR))) { 4 | if($file=~/^(.+)\.html$/o) { 5 | $ofile="$1\.spl"; 6 | open(IN,$file)||die "Cannot open $file\n"; 7 | open(OUT,">$ofile")||die "Cannot open $ofile\n"; 8 | print "writing $ofile\n"; 9 | while(defined($line=)) { 10 | if($line=~/id=[0-9]+>([^<]+)<\/a>/o) { 11 | $text=$1; 12 | print OUT $text,"\n"; 13 | } 14 | } 15 | close(IN); 16 | close(OUT); 17 | } 18 | } 19 | closedir(DIR); 20 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/ROUGE-1.5.5.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/ROUGE-1.5.5.tgz -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/XML-DOM-1.46.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/XML-DOM-1.46.tar.gz -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/XML-DOM-1.46/BUGS: -------------------------------------------------------------------------------- 1 | There have been reports of XML::DOM core dumping when 2 | the 'use diagnostics' pragma is set. Patches welcome! 3 | 4 | t/dom_jp_print fails when using a locally compiled Perl 5.8.0 5 | t/dom_jp_print........FAILED test 2 6 | Failed 1/3 tests, 66.67% okay 7 | 8 | The test passes with the Mandrake Perl 5.8.0 RPM - perhaps 9 | it is a bug in Perl that Mandrake fixed in their release of 10 | Perl 5.8.0? 11 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/XML-DOM-1.46/META.yml: -------------------------------------------------------------------------------- 1 | --- 2 | abstract: unknown 3 | author: 4 | - unknown 5 | build_requires: 6 | ExtUtils::MakeMaker: 0 7 | configure_requires: 8 | ExtUtils::MakeMaker: 0 9 | dynamic_config: 1 10 | generated_by: 'ExtUtils::MakeMaker version 6.66, CPAN::Meta::Converter version 2.120921' 11 | license: unknown 12 | meta-spec: 13 | url: http://module-build.sourceforge.net/META-spec-v1.4.html 14 | version: 1.4 15 | name: XML-DOM 16 | no_index: 17 | directory: 18 | - t 19 | - inc 20 | requires: 21 | LWP::UserAgent: 0 22 | XML::Parser: 2.30 23 | XML::Parser::PerlSAX: 0.07 24 | XML::RegExp: 0 25 | version: 1.46 26 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/XML-DOM-1.46/MYMETA.yml: -------------------------------------------------------------------------------- 1 | --- 2 | abstract: unknown 3 | author: 4 | - unknown 5 | build_requires: 6 | ExtUtils::MakeMaker: '0' 7 | configure_requires: 8 | ExtUtils::MakeMaker: '0' 9 | dynamic_config: 0 10 | generated_by: 'ExtUtils::MakeMaker version 6.66, CPAN::Meta::Converter version 2.120921, CPAN::Meta::Converter version 2.150001' 11 | license: unknown 12 | meta-spec: 13 | url: http://module-build.sourceforge.net/META-spec-v1.4.html 14 | version: '1.4' 15 | name: XML-DOM 16 | no_index: 17 | directory: 18 | - t 19 | - inc 20 | requires: 21 | LWP::UserAgent: '0' 22 | XML::Parser: '2.30' 23 | XML::Parser::PerlSAX: '0.07' 24 | XML::RegExp: '0' 25 | version: '1.46' 26 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/XML-DOM-1.46/blib/arch/.exists: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/XML-DOM-1.46/blib/arch/.exists -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/XML-DOM-1.46/blib/arch/auto/XML/DOM/.exists: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/XML-DOM-1.46/blib/arch/auto/XML/DOM/.exists -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/XML-DOM-1.46/blib/bin/.exists: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/XML-DOM-1.46/blib/bin/.exists -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/XML-DOM-1.46/blib/lib/XML/.exists: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/XML-DOM-1.46/blib/lib/XML/.exists -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/XML-DOM-1.46/blib/lib/XML/DOM/Comment.pod: -------------------------------------------------------------------------------- 1 | =head1 NAME 2 | 3 | XML::DOM::Comment - An XML comment in XML::DOM 4 | 5 | =head1 DESCRIPTION 6 | 7 | XML::DOM::Comment extends L which extends 8 | L. 9 | 10 | This node represents the content of a comment, i.e., all the characters 11 | between the starting ''. Note that this is the 12 | definition of a comment in XML, and, in practice, HTML, although some 13 | HTML tools may implement the full SGML comment structure. 14 | 15 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/XML-DOM-1.46/blib/lib/XML/DOM/ElementDecl.pod: -------------------------------------------------------------------------------- 1 | =head1 NAME 2 | 3 | XML::DOM::ElementDecl - An XML ELEMENT declaration in XML::DOM 4 | 5 | =head1 DESCRIPTION 6 | 7 | XML::DOM::ElementDecl extends L but is not part of the 8 | DOM Level 1 specification. 9 | 10 | This node represents an Element declaration, e.g. 11 | 12 | 13 | 14 | =head2 METHODS 15 | 16 | =over 4 17 | 18 | =item getName 19 | 20 | Returns the Element tagName. 21 | 22 | =item getModel and setModel (model) 23 | 24 | Returns and sets the model as a string, e.g. 25 | "(street+, city, state, zip, country?)" in the above example. 26 | 27 | =back 28 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/XML-DOM-1.46/blib/lib/auto/XML/DOM/.exists: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/XML-DOM-1.46/blib/lib/auto/XML/DOM/.exists -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/XML-DOM-1.46/blib/man1/.exists: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/XML-DOM-1.46/blib/man1/.exists -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/XML-DOM-1.46/blib/man3/.exists: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/XML-DOM-1.46/blib/man3/.exists -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/XML-DOM-1.46/blib/script/.exists: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/XML-DOM-1.46/blib/script/.exists -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/XML-DOM-1.46/lib/XML/DOM/Comment.pod: -------------------------------------------------------------------------------- 1 | =head1 NAME 2 | 3 | XML::DOM::Comment - An XML comment in XML::DOM 4 | 5 | =head1 DESCRIPTION 6 | 7 | XML::DOM::Comment extends L which extends 8 | L. 9 | 10 | This node represents the content of a comment, i.e., all the characters 11 | between the starting ''. Note that this is the 12 | definition of a comment in XML, and, in practice, HTML, although some 13 | HTML tools may implement the full SGML comment structure. 14 | 15 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/XML-DOM-1.46/lib/XML/DOM/ElementDecl.pod: -------------------------------------------------------------------------------- 1 | =head1 NAME 2 | 3 | XML::DOM::ElementDecl - An XML ELEMENT declaration in XML::DOM 4 | 5 | =head1 DESCRIPTION 6 | 7 | XML::DOM::ElementDecl extends L but is not part of the 8 | DOM Level 1 specification. 9 | 10 | This node represents an Element declaration, e.g. 11 | 12 | 13 | 14 | =head2 METHODS 15 | 16 | =over 4 17 | 18 | =item getName 19 | 20 | Returns the Element tagName. 21 | 22 | =item getModel and setModel (model) 23 | 24 | Returns and sets the model as a string, e.g. 25 | "(street+, city, state, zip, country?)" in the above example. 26 | 27 | =back 28 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/XML-DOM-1.46/pm_to_blib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/XML-DOM-1.46/pm_to_blib -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/XML-DOM-1.46/samples/REC-xml-19980210.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/XML-DOM-1.46/samples/REC-xml-19980210.xml -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/XML-DOM-1.46/t/dom_documenttype.t: -------------------------------------------------------------------------------- 1 | BEGIN {print "1..1\n";} 2 | END {print "not ok 1\n" unless $loaded;} 3 | use XML::DOM; 4 | $loaded = 1; 5 | my $xml = new XML::DOM::Document; 6 | $xml->setDoctype($xml->createDocumentType('Sample', 'Sample.dtd')); 7 | print "not " unless $xml->toString eq qq{\n}; 8 | print "ok 1\n"; 9 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/XML-DOM-1.46/t/dom_extent.dtd: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/XML-DOM-1.46/t/dom_extent.ent: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/XML-DOM-1.46/t/dom_template.t: -------------------------------------------------------------------------------- 1 | BEGIN {print "1..2\n";} 2 | END {print "not ok 1\n" unless $loaded;} 3 | use XML::DOM; 4 | $loaded = 1; 5 | print "ok 1\n"; 6 | 7 | my $test = 1; 8 | sub assert_ok 9 | { 10 | my $ok = shift; 11 | print "not " unless $ok; 12 | ++$test; 13 | print "ok $test\n"; 14 | $ok; 15 | } 16 | 17 | #Test 2 18 | 19 | print "ok 2\n"; 20 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/XML-Parser-2.44.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/XML-Parser-2.44.tar.gz -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/XML-Parser-2.44/Expat/Expat.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/XML-Parser-2.44/Expat/Expat.bs -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/XML-Parser-2.44/Expat/Expat.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/XML-Parser-2.44/Expat/Expat.o -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/XML-Parser-2.44/Expat/MYMETA.yml: -------------------------------------------------------------------------------- 1 | --- 2 | abstract: "Lowlevel access to James Clark's expat XML parser" 3 | author: 4 | - 'Matt Sergeant (matt@sergeant.org)' 5 | build_requires: 6 | ExtUtils::MakeMaker: '0' 7 | configure_requires: 8 | ExtUtils::MakeMaker: '0' 9 | dynamic_config: 0 10 | generated_by: 'ExtUtils::MakeMaker version 7.0401, CPAN::Meta::Converter version 2.150001' 11 | license: unknown 12 | meta-spec: 13 | url: http://module-build.sourceforge.net/META-spec-v1.4.html 14 | version: '1.4' 15 | name: XML-Parser-Expat 16 | no_index: 17 | directory: 18 | - t 19 | - inc 20 | requires: {} 21 | version: '2.44' 22 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/XML-Parser-2.44/Expat/pm_to_blib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/XML-Parser-2.44/Expat/pm_to_blib -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/XML-Parser-2.44/Expat/typemap: -------------------------------------------------------------------------------- 1 | # 2 | ##### XML::Parser::Expat typemap 3 | # 4 | 5 | XML_Parser T_PTR 6 | Encinfo * T_ENCOBJ 7 | 8 | ################################################################ 9 | INPUT 10 | T_ENCOBJ 11 | if (sv_derived_from($arg, \"XML::Parser::Encinfo\")) { 12 | IV tmp = SvIV((SV*)SvRV($arg)); 13 | $var = ($type) tmp; 14 | } 15 | else 16 | croak(\"$var is not of type XML::Parser::Encinfo\") 17 | ################################################################ 18 | OUTPUT 19 | T_ENCOBJ 20 | if ($var) { 21 | sv_setref_pv($arg, \"XML::Parser::Encinfo\", (void*)$var); 22 | } 23 | else 24 | $arg = &PL_sv_undef; 25 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/XML-Parser-2.44/Parser/Encodings/big5.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/XML-Parser-2.44/Parser/Encodings/big5.enc -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/XML-Parser-2.44/Parser/Encodings/euc-kr.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/XML-Parser-2.44/Parser/Encodings/euc-kr.enc -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/XML-Parser-2.44/Parser/Encodings/ibm866.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/XML-Parser-2.44/Parser/Encodings/ibm866.enc -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/XML-Parser-2.44/Parser/Encodings/iso-8859-2.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/XML-Parser-2.44/Parser/Encodings/iso-8859-2.enc -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/XML-Parser-2.44/Parser/Encodings/iso-8859-3.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/XML-Parser-2.44/Parser/Encodings/iso-8859-3.enc -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/XML-Parser-2.44/Parser/Encodings/iso-8859-4.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/XML-Parser-2.44/Parser/Encodings/iso-8859-4.enc -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/XML-Parser-2.44/Parser/Encodings/iso-8859-5.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/XML-Parser-2.44/Parser/Encodings/iso-8859-5.enc -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/XML-Parser-2.44/Parser/Encodings/iso-8859-7.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/XML-Parser-2.44/Parser/Encodings/iso-8859-7.enc -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/XML-Parser-2.44/Parser/Encodings/iso-8859-8.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/XML-Parser-2.44/Parser/Encodings/iso-8859-8.enc -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/XML-Parser-2.44/Parser/Encodings/iso-8859-9.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/XML-Parser-2.44/Parser/Encodings/iso-8859-9.enc -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/XML-Parser-2.44/Parser/Encodings/koi8-r.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/XML-Parser-2.44/Parser/Encodings/koi8-r.enc -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/XML-Parser-2.44/Parser/Encodings/windows-1250.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/XML-Parser-2.44/Parser/Encodings/windows-1250.enc -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/XML-Parser-2.44/Parser/Encodings/windows-1251.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/XML-Parser-2.44/Parser/Encodings/windows-1251.enc -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/XML-Parser-2.44/Parser/Encodings/windows-1252.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/XML-Parser-2.44/Parser/Encodings/windows-1252.enc -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/XML-Parser-2.44/Parser/Encodings/windows-1255.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/XML-Parser-2.44/Parser/Encodings/windows-1255.enc -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/XML-Parser-2.44/Parser/Encodings/x-euc-jp-jisx0221.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/XML-Parser-2.44/Parser/Encodings/x-euc-jp-jisx0221.enc -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/XML-Parser-2.44/Parser/Encodings/x-euc-jp-unicode.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/XML-Parser-2.44/Parser/Encodings/x-euc-jp-unicode.enc -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/XML-Parser-2.44/Parser/Encodings/x-sjis-cp932.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/XML-Parser-2.44/Parser/Encodings/x-sjis-cp932.enc -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/XML-Parser-2.44/Parser/Encodings/x-sjis-jdk117.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/XML-Parser-2.44/Parser/Encodings/x-sjis-jdk117.enc -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/XML-Parser-2.44/Parser/Encodings/x-sjis-jisx0221.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/XML-Parser-2.44/Parser/Encodings/x-sjis-jisx0221.enc -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/XML-Parser-2.44/Parser/Encodings/x-sjis-unicode.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/XML-Parser-2.44/Parser/Encodings/x-sjis-unicode.enc -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/XML-Parser-2.44/blib/arch/.exists: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/XML-Parser-2.44/blib/arch/.exists -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/XML-Parser-2.44/blib/arch/auto/XML/Parser/.exists: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/XML-Parser-2.44/blib/arch/auto/XML/Parser/.exists -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/XML-Parser-2.44/blib/arch/auto/XML/Parser/Expat/.exists: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/XML-Parser-2.44/blib/arch/auto/XML/Parser/Expat/.exists -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/XML-Parser-2.44/blib/arch/auto/XML/Parser/Expat/Expat.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/XML-Parser-2.44/blib/arch/auto/XML/Parser/Expat/Expat.so -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/XML-Parser-2.44/blib/bin/.exists: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/XML-Parser-2.44/blib/bin/.exists -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/XML-Parser-2.44/blib/lib/XML/.exists: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/XML-Parser-2.44/blib/lib/XML/.exists -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/XML-Parser-2.44/blib/lib/XML/Parser/.exists: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/XML-Parser-2.44/blib/lib/XML/Parser/.exists -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/XML-Parser-2.44/blib/lib/XML/Parser/Encodings/big5.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/XML-Parser-2.44/blib/lib/XML/Parser/Encodings/big5.enc -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/XML-Parser-2.44/blib/lib/XML/Parser/Encodings/euc-kr.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/XML-Parser-2.44/blib/lib/XML/Parser/Encodings/euc-kr.enc -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/XML-Parser-2.44/blib/lib/XML/Parser/Encodings/ibm866.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/XML-Parser-2.44/blib/lib/XML/Parser/Encodings/ibm866.enc -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/XML-Parser-2.44/blib/lib/XML/Parser/Encodings/iso-8859-2.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/XML-Parser-2.44/blib/lib/XML/Parser/Encodings/iso-8859-2.enc -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/XML-Parser-2.44/blib/lib/XML/Parser/Encodings/iso-8859-3.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/XML-Parser-2.44/blib/lib/XML/Parser/Encodings/iso-8859-3.enc -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/XML-Parser-2.44/blib/lib/XML/Parser/Encodings/iso-8859-4.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/XML-Parser-2.44/blib/lib/XML/Parser/Encodings/iso-8859-4.enc -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/XML-Parser-2.44/blib/lib/XML/Parser/Encodings/iso-8859-5.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/XML-Parser-2.44/blib/lib/XML/Parser/Encodings/iso-8859-5.enc -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/XML-Parser-2.44/blib/lib/XML/Parser/Encodings/iso-8859-7.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/XML-Parser-2.44/blib/lib/XML/Parser/Encodings/iso-8859-7.enc -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/XML-Parser-2.44/blib/lib/XML/Parser/Encodings/iso-8859-8.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/XML-Parser-2.44/blib/lib/XML/Parser/Encodings/iso-8859-8.enc -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/XML-Parser-2.44/blib/lib/XML/Parser/Encodings/iso-8859-9.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/XML-Parser-2.44/blib/lib/XML/Parser/Encodings/iso-8859-9.enc -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/XML-Parser-2.44/blib/lib/XML/Parser/Encodings/koi8-r.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/XML-Parser-2.44/blib/lib/XML/Parser/Encodings/koi8-r.enc -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/XML-Parser-2.44/blib/lib/XML/Parser/Encodings/windows-1250.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/XML-Parser-2.44/blib/lib/XML/Parser/Encodings/windows-1250.enc -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/XML-Parser-2.44/blib/lib/XML/Parser/Encodings/windows-1251.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/XML-Parser-2.44/blib/lib/XML/Parser/Encodings/windows-1251.enc -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/XML-Parser-2.44/blib/lib/XML/Parser/Encodings/windows-1252.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/XML-Parser-2.44/blib/lib/XML/Parser/Encodings/windows-1252.enc -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/XML-Parser-2.44/blib/lib/XML/Parser/Encodings/windows-1255.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/XML-Parser-2.44/blib/lib/XML/Parser/Encodings/windows-1255.enc -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/XML-Parser-2.44/blib/lib/XML/Parser/Encodings/x-euc-jp-jisx0221.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/XML-Parser-2.44/blib/lib/XML/Parser/Encodings/x-euc-jp-jisx0221.enc -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/XML-Parser-2.44/blib/lib/XML/Parser/Encodings/x-euc-jp-unicode.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/XML-Parser-2.44/blib/lib/XML/Parser/Encodings/x-euc-jp-unicode.enc -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/XML-Parser-2.44/blib/lib/XML/Parser/Encodings/x-sjis-cp932.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/XML-Parser-2.44/blib/lib/XML/Parser/Encodings/x-sjis-cp932.enc -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/XML-Parser-2.44/blib/lib/XML/Parser/Encodings/x-sjis-jdk117.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/XML-Parser-2.44/blib/lib/XML/Parser/Encodings/x-sjis-jdk117.enc -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/XML-Parser-2.44/blib/lib/XML/Parser/Encodings/x-sjis-jisx0221.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/XML-Parser-2.44/blib/lib/XML/Parser/Encodings/x-sjis-jisx0221.enc -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/XML-Parser-2.44/blib/lib/XML/Parser/Encodings/x-sjis-unicode.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/XML-Parser-2.44/blib/lib/XML/Parser/Encodings/x-sjis-unicode.enc -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/XML-Parser-2.44/blib/lib/auto/XML/Parser/.exists: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/XML-Parser-2.44/blib/lib/auto/XML/Parser/.exists -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/XML-Parser-2.44/blib/lib/auto/XML/Parser/Expat/.exists: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/XML-Parser-2.44/blib/lib/auto/XML/Parser/Expat/.exists -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/XML-Parser-2.44/blib/man1/.exists: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/XML-Parser-2.44/blib/man1/.exists -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/XML-Parser-2.44/blib/man3/.exists: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/XML-Parser-2.44/blib/man3/.exists -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/XML-Parser-2.44/blib/script/.exists: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/XML-Parser-2.44/blib/script/.exists -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/XML-Parser-2.44/pm_to_blib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/XML-Parser-2.44/pm_to_blib -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/XML-Parser-2.44/samples/REC-xml-19980210.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/XML-Parser-2.44/samples/REC-xml-19980210.xml -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/XML-Parser-2.44/samples/canontst.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 7 | ] 8 | > 9 | 11 | 12 | 13 | 14 | 15 | Here is a PI: . Like it? 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/XML-Parser-2.44/samples/ctest.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/XML-Parser-2.44/t/ext.ent: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/XML-Parser-2.44/t/ext2.ent: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/XML-Parser-2.44/t/file.t: -------------------------------------------------------------------------------- 1 | 2 | use Test::More tests => 1; 3 | use XML::Parser; 4 | 5 | my $count = 0; 6 | 7 | $parser = XML::Parser->new(ErrorContext => 2); 8 | $parser->setHandlers(Comment => sub {$count++;}); 9 | 10 | $parser->parsefile('samples/REC-xml-19980210.xml'); 11 | 12 | is($count, 37); 13 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/XML-Parser-2.44/t/file_open_scalar.t: -------------------------------------------------------------------------------- 1 | 2 | use if $] < 5.006, Test::More => skip_all => 'syntax requires perl 5.6'; 3 | 4 | #tests behaviour on perls 5.10? .. 5.10.1 5 | package Some::Fake::Packege; 6 | sub fake_sub { 7 | require FileHandle; 8 | } 9 | package main; 10 | 11 | use Test::More tests => 1; 12 | use XML::Parser; 13 | use strict; 14 | 15 | my $count = 0; 16 | 17 | my $parser = XML::Parser->new(ErrorContext => 2); 18 | $parser->setHandlers(Comment => sub {$count++;}); 19 | 20 | open my $fh,'<','samples/REC-xml-19980210.xml' or die; 21 | #on 5.10 $fh would be a FileHandle object without a real FileHandle class 22 | 23 | $parser->parse($fh); 24 | 25 | is($count, 37); 26 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/XML-Parser-2.44/t/finish.t: -------------------------------------------------------------------------------- 1 | BEGIN {print "1..3\n";} 2 | END {print "not ok 1\n" unless $loaded;} 3 | use XML::Parser; 4 | $loaded = 1; 5 | print "ok 1\n"; 6 | 7 | my $stcount = 0; 8 | my $encount = 0; 9 | 10 | sub st { 11 | my ($exp, $el) = @_; 12 | $stcount++; 13 | $exp->finish if $el eq 'loc'; 14 | } 15 | 16 | sub end { 17 | $encount++; 18 | } 19 | 20 | $parser = new XML::Parser(Handlers => {Start => \&st, 21 | End => \&end 22 | }, 23 | ErrorContext => 2); 24 | 25 | 26 | $parser->parsefile('samples/REC-xml-19980210.xml'); 27 | 28 | print "not " unless $stcount == 12; 29 | print "ok 2\n"; 30 | 31 | print "not " unless $encount == 8; 32 | print "ok 3\n"; 33 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/XML-Parser-2.44/t/foo.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/XML-Parser-2.44/t/foo.dtd -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/XML-RegExp-0.04.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/XML-RegExp-0.04.tar.gz -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/XML-RegExp-0.04/Changes: -------------------------------------------------------------------------------- 1 | Revision history for Perl extension XML::RegExp. 2 | 3 | 0.04 3/26/2012 (tjmather) 4 | - Fixed version number bug in $VERSION, set to 0.04 instead of 0.02 5 | ( https://rt.cpan.org/Public/Bug/Display.html?id=38536 ) 6 | 7 | 0.03 6/26/2001 (tjmather) 8 | - updated docs, added license 9 | 10 | 0.02 6/20/2001 (tjmather) 11 | - moved out of libxml-enno, added $VERSION 12 | 13 | 0.01 10/26/1999 (enno) 14 | - original version; included in libxml-enno-1.00 15 | 16 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/XML-RegExp-0.04/MANIFEST: -------------------------------------------------------------------------------- 1 | Changes 2 | Makefile.PL 3 | MANIFEST 4 | lib/XML/RegExp.pm 5 | README 6 | test.pl 7 | META.yml Module meta-data (added by MakeMaker) 8 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/XML-RegExp-0.04/META.yml: -------------------------------------------------------------------------------- 1 | --- #YAML:1.0 2 | name: XML-RegExp 3 | version: 0.04 4 | abstract: ~ 5 | author: [] 6 | license: unknown 7 | distribution_type: module 8 | configure_requires: 9 | ExtUtils::MakeMaker: 0 10 | build_requires: 11 | ExtUtils::MakeMaker: 0 12 | requires: {} 13 | no_index: 14 | directory: 15 | - t 16 | - inc 17 | generated_by: ExtUtils::MakeMaker version 6.56 18 | meta-spec: 19 | url: http://module-build.sourceforge.net/META-spec-v1.4.html 20 | version: 1.4 21 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/XML-RegExp-0.04/MYMETA.yml: -------------------------------------------------------------------------------- 1 | --- 2 | abstract: unknown 3 | author: 4 | - unknown 5 | build_requires: 6 | ExtUtils::MakeMaker: '0' 7 | configure_requires: 8 | ExtUtils::MakeMaker: '0' 9 | dynamic_config: 0 10 | generated_by: 'ExtUtils::MakeMaker version 6.56, CPAN::Meta::Converter version 2.150001' 11 | license: unknown 12 | meta-spec: 13 | url: http://module-build.sourceforge.net/META-spec-v1.4.html 14 | version: '1.4' 15 | name: XML-RegExp 16 | no_index: 17 | directory: 18 | - t 19 | - inc 20 | requires: {} 21 | version: '0.04' 22 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/XML-RegExp-0.04/Makefile.PL: -------------------------------------------------------------------------------- 1 | use ExtUtils::MakeMaker; 2 | # See lib/ExtUtils/MakeMaker.pm for details of how to influence 3 | # the contents of the Makefile that is written. 4 | WriteMakefile( 5 | 'NAME' => 'XML::RegExp', 6 | 'VERSION_FROM' => 'lib/XML/RegExp.pm', # finds $VERSION 7 | ); 8 | -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/XML-RegExp-0.04/blib/arch/.exists: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/XML-RegExp-0.04/blib/arch/.exists -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/XML-RegExp-0.04/blib/arch/auto/XML/RegExp/.exists: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/XML-RegExp-0.04/blib/arch/auto/XML/RegExp/.exists -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/XML-RegExp-0.04/blib/bin/.exists: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/XML-RegExp-0.04/blib/bin/.exists -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/XML-RegExp-0.04/blib/lib/XML/.exists: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/XML-RegExp-0.04/blib/lib/XML/.exists -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/XML-RegExp-0.04/blib/lib/auto/XML/RegExp/.exists: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/XML-RegExp-0.04/blib/lib/auto/XML/RegExp/.exists -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/XML-RegExp-0.04/blib/man1/.exists: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/XML-RegExp-0.04/blib/man1/.exists -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/XML-RegExp-0.04/blib/man3/.exists: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/XML-RegExp-0.04/blib/man3/.exists -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/XML-RegExp-0.04/blib/script/.exists: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/XML-RegExp-0.04/blib/script/.exists -------------------------------------------------------------------------------- /fastSum/resources/ROUGE/XML-RegExp-0.04/pm_to_blib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastnlp/fastSum/17c9f1de3341cede9e8a4970b1188bad6242f808/fastSum/resources/ROUGE/XML-RegExp-0.04/pm_to_blib --------------------------------------------------------------------------------