From 59fb72aa8e3a0199cfd7e2253a9c2e3459dd5f21 Mon Sep 17 00:00:00 2001
From: Shutong Feng <shutong.feng@hhu.de>
Date: Mon, 5 Jun 2023 12:22:38 +0000
Subject: [PATCH] Update README.md

---
 README.md | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/README.md b/README.md
index a80d9b8..a3827b3 100644
--- a/README.md
+++ b/README.md
@@ -2,6 +2,15 @@
 
 This is the codebase for [EmoWOZ: A Large-Scale Corpus and Labelling Scheme for Emotion Recognition in Task-Oriented Dialogue Systems](https://aclanthology.org/2022.lrec-1.436/). 
 
+06/2023 Update: EmoWOZ is now available in [Huggingface Datasets Repository](https://huggingface.co/datasets/hhu-dsml/emowoz). You can load EmoWOZ using the following code:
+
+```
+from datasets import load_dataset
+
+# The second argument is by default 'emowoz', which loads all dialogues from subset. 
+# Use 'multiwoz' or 'dialmage' to load specific subsets.
+dataset = load_dataset("hhu-dsml/emowoz", 'emowoz', use_auth_token=True)
+```
 
 ### Data
 
-- 
GitLab