jihyoung commited on
Commit
a843f19
·
1 Parent(s): 05e18f2

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +43 -0
README.md CHANGED
@@ -1,3 +1,46 @@
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: conversational
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 generation module.** You can check summarization module on [this repoistory](https://huggingface.co/jihyoung/rebot-summarization).
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
+ + Generation Module of Model : this repoistory
23
+ + Summarization Module of Model : [chronological summarization module](https://huggingface.co/jihyoung/rebot-summarization)
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 AutoTokenizer, AutoModelForSeq2SeqLM
31
+
32
+ tokenizer = AutoTokenizer.from_pretrained("jihyoung/rebot-generation")
33
+ model = AutoModelForSeq2SeqLM.from_pretrained("jihyoung/rebot-generation")
34
+ ```
35
+
36
+ ## Citation Information
37
+
38
+ ```
39
+ @inproceedings{jang2023conversation,
40
+ title={Conversation Chronicles: Towards Diverse Temporal and Relational Dynamics in Multi-Session Conversations},
41
+ author={Jihyoung Jang, MinSeong Boo, Hyounghun Kim},
42
+ booktitle={The 2023 Conference on Empirical Methods in Natural Language Processing},
43
+ year={2023},
44
+ url={https://openreview.net/forum?id=9LPJK81xy1}
45
+ }
46
+ ```