|
17 | 17 |
|
18 | 18 |
|
19 | 19 | # STREAM
|
20 |
| -We present STREAM, a Simplified Topic Retrieval, Exploration, and Analysis Module for user-friendly topic modelling and especially subsequent interactive topic visualization and analysis. |
| 20 | +We present STREAM, a Simplified Topic Retrieval, Exploration, and Analysis Module for user-friendly topic modelling and especially subsequent interactive topic visualization and analysis. Our paper can be found [here](https://aclanthology.org/2024.acl-short.41.pdf). |
21 | 21 |
|
22 | 22 | # Table of Contents
|
23 | 23 | - [STREAM](#stream)
|
@@ -46,7 +46,7 @@ We present STREAM, a Simplified Topic Retrieval, Exploration, and Analysis Modul
|
46 | 46 | - [Validation Criteria](#validation-criteria)
|
47 | 47 | - [Submitting Your Contribution](#submitting-your-contribution)
|
48 | 48 | - [Citation](#citation)
|
49 |
| - - [Paper 1 TBD](#paper-1-tbd) |
| 49 | + - [STREAM](#stream-1) |
50 | 50 | - [Metrics and CEDC](#metrics-and-cedc)
|
51 | 51 | - [TNTM](#tntm)
|
52 | 52 | - [DCTE](#dcte)
|
@@ -80,6 +80,9 @@ Make additionally sure to download the necessary [nltk](https://www.nltk.org/) r
|
80 | 80 |
|
81 | 81 | ```python
|
82 | 82 | import nltk
|
| 83 | +nltk.download('stopwords') |
| 84 | +nltk.download('punkt') |
| 85 | +nltk.download('wordnet') |
83 | 86 | nltk.download('averaged_perceptron_tagger')
|
84 | 87 | ```
|
85 | 88 |
|
@@ -604,18 +607,16 @@ If you want to include a new model where these guidelines are not approriate ple
|
604 | 607 |
|
605 | 608 | If you use this project in your research, please consider citing:
|
606 | 609 |
|
607 |
| -### Paper 1 TBD |
| 610 | +### STREAM |
608 | 611 |
|
609 | 612 | ```bibtex
|
610 |
| -@article{your_paper_key1, |
611 |
| - title={Your Paper Title}, |
612 |
| - author={Your Name and Co-Author's Name}, |
613 |
| - journal={Journal/Conference Name}, |
614 |
| - year={Year}, |
615 |
| - volume={Volume}, |
616 |
| - number={Number}, |
617 |
| - pages={Pages}, |
618 |
| - doi={link_to_doi} |
| 613 | +@inproceedings{thielmann-etal-2024-stream, |
| 614 | + title = {STREAM: Simplified Topic Retrieval, Exploration, and Analysis Module}, |
| 615 | + author = {Thielmann, Anton and Reuter, Arik and Weisser, Christoph and Kant, Gillian and Kumar, Manish and S{\"a}fken, Benjamin}, |
| 616 | + booktitle = {Proceedings of the 62nd Annual Meeting of the Association for Computational Linguistics (Volume 2: Short Papers)}, |
| 617 | + year = {2024}, |
| 618 | + publisher = {Association for Computational Linguistics}, |
| 619 | + pages = {435--444}, |
619 | 620 | }
|
620 | 621 | ```
|
621 | 622 |
|
|
0 commit comments