jihyoung commited on
Commit
77a1931
1 Parent(s): a78e3c2

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +40 -0
README.md CHANGED
@@ -1,3 +1,43 @@
1
  ---
2
  license: cc-by-4.0
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: cc-by-4.0
3
+ datasets:
4
+ - jihyoung/ConversationChronicles
5
+ language:
6
+ - en
7
+ pipeline_tag: summarization
8
  ---
9
+
10
+ # 👫 ReBot - Generation Module ⏰
11
+
12
+ ReBot is a novel multi-session dialgoue model which can generate dialogue with chronological dynamics! ReBot consists two modules: (1) chronological summarization module; (2) dialogue generation module.
13
+
14
+ **This repoistory for dialogue summarization module.** You can check generation module on [this repoistory](https://huggingface.co/jihyoung/rebot-generation).
15
+
16
+ 🚨 Please be cautious when testing our model with the Hosted Inference API. Our model takes sequences as input, so you should provide sequences as input through the API as well.
17
+
18
+ ## Model description
19
+
20
+ + Paper: [Conversation Chronicles: Towards Diverse Temporal and Relational Dynamics in Multi-Session Conversations](https://openreview.net/forum?id=9LPJK81xy1)
21
+ + Dataset : [Conversation Chronicles](https://huggingface.co/datasets/jihyoung/ConversationChronicles)
22
+ + Summarization Module of Model : this repoistory
23
+ + Generation Module of Model : [dialogue generation module](https://huggingface.co/jihyoung/rebot-generation)
24
+
25
+ ## Load with Transformers
26
+
27
+ To load our dataset with Hugging Face Transformers, please use the following code:
28
+
29
+ ```python
30
+ from transformers import pipeline
31
+ summarizer = pipeline("summarization", model="jihyoung/rebot-summarization")
32
+ ```
33
+
34
+ ## Citation Information
35
+ ```
36
+ @inproceedings{jang2023conversation,
37
+ title={Conversation Chronicles: Towards Diverse Temporal and Relational Dynamics in Multi-Session Conversations},
38
+ author={Jihyoung Jang, MinSeong Boo, Hyounghun Kim},
39
+ booktitle={The 2023 Conference on Empirical Methods in Natural Language Processing},
40
+ year={2023},
41
+ url={https://openreview.net/forum?id=9LPJK81xy1}
42
+ }
43
+ ```