From e09d17de6088e3205ad9e3c85ec01b4fa0531587 Mon Sep 17 00:00:00 2001
From: yhliang <429259365@qq.com>
Date: 星期四, 13 四月 2023 15:09:04 +0800
Subject: [PATCH] add m2met2 docs cn version

---
 docs_m2met2_cn/数据集.md                     |   24 ++++++
 docs_m2met2_cn/Makefile                   |   20 +++++
 docs_m2met2_cn/images/sa_asr_arch.png     |    0 
 docs_m2met2_cn/make.bat                   |   35 ++++++++
 docs_m2met2_cn/images/dataset_detail.png  |    0 
 docs_m2met2/index.rst                     |    2 
 docs_m2met2/Introduction.md               |    2 
 docs_m2met2_cn/images/meeting_room.png    |    0 
 docs_m2met2_cn/index.rst                  |   28 +++++++
 docs_m2met2/Baseline.md                   |    2 
 .github/workflows/main.yml                |    2 
 docs_m2met2_cn/规则.md                      |   16 ++++
 docs_m2met2_cn/conf.py                    |   39 +++++++++
 docs_m2met2_cn/简介.md                      |   27 ++++++
 docs_m2met2_cn/images/baseline_result.png |    0 
 docs_m2met2_cn/基线.md                      |   12 +++
 docs_m2met2_cn/组委会.md                     |    1 
 docs_m2met2_cn/赛道设置与评估.md                 |   15 +++
 18 files changed, 221 insertions(+), 4 deletions(-)

diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index d7f012e..5966c84 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -24,7 +24,7 @@
       - uses: ammaraskar/sphinx-action@master
         with:
           docs-folder: "docs_m2met2/"
-          pre-build-command: "pip install jinja2 sphinx_rtd_theme myst_parser"
+          pre-build-command: "pip install jinja2 sphinx_rtd_theme myst-parser"
 
       - name: deploy copy
         if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/dev_wjm' || github.ref == 'refs/heads/dev_lyh'
diff --git a/docs_m2met2/Baseline.md b/docs_m2met2/Baseline.md
index 0bd09b3..975fab8 100644
--- a/docs_m2met2/Baseline.md
+++ b/docs_m2met2/Baseline.md
@@ -1,6 +1,6 @@
 # Baseline
 ## Overview
-We provide an end-to-end sa-asr baseline conducted on [FunASR](https://github.com/alibaba-damo-academy/FunASR) as a receipe. The model architecture is shown in Figure 3. The SpeakerEncoder is initialized with a pre-trained [speaker verification model](https://modelscope.cn/models/damo/speech_xvector_sv-zh-cn-cnceleb-16k-spk3465-pytorch/summary) from [ModelScope](https://modelscope.cn/home). This speaker verification model is also be used to extract the speaker embedding in the speaker profile. 
+We provide an end-to-end sa-asr baseline conducted on [FunASR](https://github.com/alibaba-damo-academy/FunASR) as a receipe. The model architecture is shown in Figure 2. The SpeakerEncoder is initialized with a pre-trained [speaker verification model](https://modelscope.cn/models/damo/speech_xvector_sv-zh-cn-cnceleb-16k-spk3465-pytorch/summary) from [ModelScope](https://modelscope.cn/home). This speaker verification model is also be used to extract the speaker embedding in the speaker profile. 
 
 ![model archietecture](images/sa_asr_arch.png)
 
diff --git a/docs_m2met2/Introduction.md b/docs_m2met2/Introduction.md
index 1362691..10c65b0 100644
--- a/docs_m2met2/Introduction.md
+++ b/docs_m2met2/Introduction.md
@@ -17,7 +17,7 @@
 
 ## Guidelines
 
-Potential participants from both academia and industry should send an email to **m2met.alimeeting@gmail.com** to register to the challenge before or by May 5 with the following requirements:
+Potential participants from both academia and industry should send an email to **m2met.alimeeting@gmail.com** to register to the challenge before or by May 5, 2023 with the following requirements:
 
 
 - Email subject: [ASRU2023 M2MeT2.0 Challenge Registration] 鈥� Team Name - Participating 
diff --git a/docs_m2met2/index.rst b/docs_m2met2/index.rst
index 74217c2..a2edab1 100644
--- a/docs_m2met2/index.rst
+++ b/docs_m2met2/index.rst
@@ -7,7 +7,7 @@
 ==================================================================================
 Building on the success of the M2MeT challenge, we are pleased to announce the M2MeT2.0 challenge as an ASRU2023 Signal Processing Grand Challenge.
 To further advance the current multi-talker ASR system to practicality, the M2MeT2.0 challenge proposes the speaker-attribute ASR task with two sub-tracks performing in fixed and open training conditions.
-We provide a detailed introduction of the dataset, rules, evaluation methods, and baseline systems to further promote reproducible research in this field.
+We provide a detailed introduction of the dataset, rules, baseline systems, and evaluation methods to further promote reproducible research in this field.
 
 .. toctree::
    :maxdepth: 1
diff --git a/docs_m2met2_cn/Makefile b/docs_m2met2_cn/Makefile
new file mode 100644
index 0000000..d4bb2cb
--- /dev/null
+++ b/docs_m2met2_cn/Makefile
@@ -0,0 +1,20 @@
+# Minimal makefile for Sphinx documentation
+#
+
+# You can set these variables from the command line, and also
+# from the environment for the first two.
+SPHINXOPTS    ?=
+SPHINXBUILD   ?= sphinx-build
+SOURCEDIR     = .
+BUILDDIR      = _build
+
+# Put it first so that "make" without argument is like "make help".
+help:
+	@$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
+
+.PHONY: help Makefile
+
+# Catch-all target: route all unknown targets to Sphinx using the new
+# "make mode" option.  $(O) is meant as a shortcut for $(SPHINXOPTS).
+%: Makefile
+	@$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
diff --git a/docs_m2met2_cn/conf.py b/docs_m2met2_cn/conf.py
new file mode 100644
index 0000000..7a8a45a
--- /dev/null
+++ b/docs_m2met2_cn/conf.py
@@ -0,0 +1,39 @@
+# Configuration file for the Sphinx documentation builder.
+#
+# For the full list of built-in configuration values, see the documentation:
+# https://www.sphinx-doc.org/en/master/usage/configuration.html
+
+# -- Project information -----------------------------------------------------
+# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
+
+project = 'm2met2'
+copyright = '2023, Speech Lab, Alibaba Group; Audio, Speech and Language Processing Group, Northwestern Polytechnical University'
+author = 'Speech Lab, Alibaba Group; Audio, Speech and Language Processing Group, Northwestern Polytechnical University'
+
+# -- General configuration ---------------------------------------------------
+# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
+extensions = [
+    'myst_parser',
+    'sphinx_rtd_theme',
+]
+
+myst_enable_extensions = [
+    "colon_fence",
+    "deflist",
+    "dollarmath",
+]
+
+myst_heading_anchors = 2
+myst_highlight_code_blocks=True
+myst_update_mathjax=False
+templates_path = ['_templates']
+exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
+
+language = 'zh_CN'
+
+# -- Options for HTML output -------------------------------------------------
+# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output
+
+html_theme = 'sphinx_rtd_theme'
+html_static_path = ['_static']
+
diff --git a/docs_m2met2_cn/images/baseline_result.png b/docs_m2met2_cn/images/baseline_result.png
new file mode 100644
index 0000000..d51d775
--- /dev/null
+++ b/docs_m2met2_cn/images/baseline_result.png
Binary files differ
diff --git a/docs_m2met2_cn/images/dataset_detail.png b/docs_m2met2_cn/images/dataset_detail.png
new file mode 100644
index 0000000..ea1cdf0
--- /dev/null
+++ b/docs_m2met2_cn/images/dataset_detail.png
Binary files differ
diff --git a/docs_m2met2_cn/images/meeting_room.png b/docs_m2met2_cn/images/meeting_room.png
new file mode 100644
index 0000000..d26178d
--- /dev/null
+++ b/docs_m2met2_cn/images/meeting_room.png
Binary files differ
diff --git a/docs_m2met2_cn/images/sa_asr_arch.png b/docs_m2met2_cn/images/sa_asr_arch.png
new file mode 100644
index 0000000..6c662ff
--- /dev/null
+++ b/docs_m2met2_cn/images/sa_asr_arch.png
Binary files differ
diff --git a/docs_m2met2_cn/index.rst b/docs_m2met2_cn/index.rst
new file mode 100644
index 0000000..69107c2
--- /dev/null
+++ b/docs_m2met2_cn/index.rst
@@ -0,0 +1,28 @@
+.. m2met2 documentation master file, created by
+   sphinx-quickstart on Wed Apr 12 17:49:45 2023.
+   You can adapt this file completely to your liking, but it should at least
+   contain the root `toctree` directive.
+
+ASRU 2023 澶氶�氶亾澶氭柟浼氳杞綍鎸戞垬 2.0
+==================================================================================
+鍦ㄤ笂涓�灞奙2MET鎴愬姛涓惧姙鐨勫熀纭�涓婏紝鎴戜滑灏嗗湪ASRU2023涓婄户缁妇鍔濵2MET2.0鎸戞垬璧涖��
+涓轰簡灏嗙幇鍦ㄧ殑澶氳璇濅汉璇煶璇嗗埆绯荤粺鎺ㄥ悜瀹炵敤鍖栵紝M2MET2.0鎸戞垬璧涘皢鍦ㄨ璇濅汉鐩稿叧鐨勪汉鐗╀笂璇勪及锛屽苟涓斿悓鏃惰绔嬮檺瀹氭暟鎹笌涓嶉檺瀹氭暟鎹袱涓瓙璧涢亾銆�
+鎴戜滑瀵规暟鎹泦銆佽鍒欍�佸熀绾跨郴缁熷拰璇勪及鏂规硶杩涜浜嗚缁嗕粙缁嶏紝浠ヨ繘涓�姝ヤ績杩涘璇磋瘽浜鸿闊宠瘑鍒鍩熺爺绌剁殑鍙戝睍銆�
+
+.. toctree::
+   :maxdepth: 1
+   :caption: 鐩綍:
+
+   ./绠�浠�
+   ./鏁版嵁闆�
+   ./璧涢亾璁剧疆涓庤瘎浼�
+   ./鍩虹嚎
+   ./瑙勫垯
+   ./缁勫浼�
+
+Indices and tables
+==================
+
+* :ref:`genindex`
+* :ref:`modindex`
+* :ref:`search`
diff --git a/docs_m2met2_cn/make.bat b/docs_m2met2_cn/make.bat
new file mode 100644
index 0000000..32bb245
--- /dev/null
+++ b/docs_m2met2_cn/make.bat
@@ -0,0 +1,35 @@
+@ECHO OFF
+
+pushd %~dp0
+
+REM Command file for Sphinx documentation
+
+if "%SPHINXBUILD%" == "" (
+	set SPHINXBUILD=sphinx-build
+)
+set SOURCEDIR=.
+set BUILDDIR=_build
+
+%SPHINXBUILD% >NUL 2>NUL
+if errorlevel 9009 (
+	echo.
+	echo.The 'sphinx-build' command was not found. Make sure you have Sphinx
+	echo.installed, then set the SPHINXBUILD environment variable to point
+	echo.to the full path of the 'sphinx-build' executable. Alternatively you
+	echo.may add the Sphinx directory to PATH.
+	echo.
+	echo.If you don't have Sphinx installed, grab it from
+	echo.https://www.sphinx-doc.org/
+	exit /b 1
+)
+
+if "%1" == "" goto help
+
+%SPHINXBUILD% -M %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O%
+goto end
+
+:help
+%SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O%
+
+:end
+popd
diff --git "a/docs_m2met2_cn/\345\237\272\347\272\277.md" "b/docs_m2met2_cn/\345\237\272\347\272\277.md"
new file mode 100644
index 0000000..4e044cd
--- /dev/null
+++ "b/docs_m2met2_cn/\345\237\272\347\272\277.md"
@@ -0,0 +1,12 @@
+# 鍩虹嚎
+## 鍩虹嚎姒傝堪
+鎴戜滑鎻愪緵涓�涓湪[FunASR](https://github.com/alibaba-damo-academy/FunASR)涓婂疄鐜扮殑绔埌绔疭A-ASR绯荤粺浣滀负鍩虹嚎銆傝妯″瀷鐨勭粨鏋勫鍥�3鎵�绀恒�係peakerEncoder鐢╗ModelScope](https://modelscope.cn/home)涓鍏堣缁冨ソ鐨刐璇磋瘽浜虹‘璁ゆā鍨媇(https://modelscope.cn/models/damo/speech_xvector_sv-zh-cn-cnceleb-16k-spk3465-pytorch/summary)浣滀负鍒濆鍖栥�傝繖涓璇濅汉纭妯″瀷涔熻鐢ㄦ潵鎻愬彇璇磋瘽浜烘。妗堜腑鐨勮璇濅汉宓屽叆銆�
+
+![model archietecture](images/sa_asr_arch.png)
+
+## 蹇�熷紑濮�
+#TODO: fill with the README.md of the baseline
+
+## 鍩虹嚎缁撴灉
+鍩虹嚎绯荤粺鐨勭粨鏋滃琛�3鎵�绀恒�傚湪璁粌鏈熼棿锛岃璇濅汉妗f閲囩敤浜嗙湡瀹炶璇濅汉宓屽叆銆傜劧鑰岀敱浜庡湪璇勪及杩囩▼涓己涔忕湡瀹炶璇濅汉鏍囩锛屽洜姝や娇鐢ㄤ簡鐢遍澶栫殑璋辫仛绫绘彁渚涚殑璇磋瘽浜虹壒寰併�傚悓鏃舵垜浠繕鎻愪緵浜嗗湪璇勪及鍜屾祴璇曢泦涓婁娇鐢ㄧ湡瀹炶璇濅汉妗f鐨勭粨鏋滐紝浠ユ樉绀鸿璇濅汉妗f鍑嗙‘鎬х殑褰卞搷銆�
+![baseline result](images/baseline_result.png)
\ No newline at end of file
diff --git "a/docs_m2met2_cn/\346\225\260\346\215\256\351\233\206.md" "b/docs_m2met2_cn/\346\225\260\346\215\256\351\233\206.md"
new file mode 100644
index 0000000..c2fd373
--- /dev/null
+++ "b/docs_m2met2_cn/\346\225\260\346\215\256\351\233\206.md"
@@ -0,0 +1,24 @@
+# 鏁版嵁闆�
+## 鏁版嵁闆嗘杩�
+鍦ㄩ檺瀹氭暟鎹泦鏉′欢涓嬶紝璁粌鏁版嵁闆嗕粎闄愪簬涓変釜鍏紑鐨勮鏂欏簱锛屽嵆AliMeeting銆丄ISHELL-4鍜孋N-Celeb銆備负浜嗚瘎浼板弬璧涜�呮彁浜ょ殑妯″瀷鐨勬�ц兘锛屾垜浠皢鍙戝竷涓�涓柊鐨勬祴璇曢泦锛圱est-2023锛夌敤浜庢墦鍒嗗拰鎺掑悕銆備笅闈㈡垜浠皢璇︾粏鎻忚堪AliMeeting鏁版嵁闆嗗拰Test-2023娴嬭瘯闆嗐��
+
+## Alimeeting鏁版嵁闆嗕粙缁�
+AliMeeting鎬诲叡鍖呭惈118.75灏忔椂鐨勮闊虫暟鎹紝鍖呮嫭104.75灏忔椂鐨勮缁冮泦锛圱rain锛夈��4灏忔椂鐨勯獙璇侀泦锛圗val锛夊拰10灏忔椂鐨勬祴璇曢泦锛圱est锛夈�傝缁冮泦鍜岄獙璇侀泦鍒嗗埆鍖呭惈212鍦哄拰8鍦轰細璁紝鍏朵腑姣忓満浼氳鐢卞涓璇濅汉杩涜15鍒�30鍒嗛挓鐨勮璁恒�傝缁冨拰楠岃瘉闆嗕腑鍙備笌浼氳鐨勬�讳汉鏁板垎鍒负456浜哄拰25浜猴紝骞朵笖鍙備細鐨勭敺濂虫瘮渚嬩汉鏁板潎琛°��
+
+璇ユ暟鎹泦鏀堕泦浜�13涓笉鍚岀殑浼氳瀹わ紝鎸夌収澶у皬瑙勬牸鍒嗕负灏忓瀷銆佷腑鍨嬪拰澶у瀷涓夌锛屾埧闂撮潰绉粠8鍒�55骞虫柟绫充笉绛夈�備笉鍚屾埧闂村叿鏈変笉鍚岀殑甯冨眬鍜屽0瀛︾壒鎬э紝姣忎釜鎴块棿鐨勮缁嗗弬鏁颁篃灏嗗彂閫佺粰鍙備笌鑰呫�備細璁満鍦扮殑澧欎綋鏉愭枡绫诲瀷鍖呮嫭姘存偿銆佺幓鐠冪瓑銆備細璁満鍦扮殑瀹跺叿鍖呮嫭娌欏彂銆佺數瑙嗐�侀粦鏉裤�侀鎵囥�佺┖璋冦�佹鐗╃瓑銆傚湪褰曞埗杩囩▼涓紝楹﹀厠椋庨樀鍒楁斁缃簬妗屼笂锛屽涓璇濅汉鍥村潗鍦ㄦ杈硅繘琛岃嚜鐒跺璇濄�傞害鍏嬮闃靛垪绂昏璇濅汉璺濈绾�0.3鍒�5.0绫充箣闂淬�傛墍鏈夎璇濅汉鐨勬瘝璇潎鏄眽璇紝骞朵笖璇寸殑閮芥槸鏅�氳瘽锛屾病鏈夋祿閲嶇殑鍙i煶銆傚湪浼氳褰曞埗鏈熼棿鍙兘浼氫骇鐢熷悇绉嶅鍐呯殑鍣煶锛屽寘鎷敭鐩樺0銆佸紑闂�/鍏抽棬澹般�侀鎵囧0銆佹皵娉″0绛夈�傛墍鏈夎璇濅汉鍦ㄤ細璁殑褰曞埗鏈熼棿鍧囦繚鎸佺浉鍚屼綅缃紝涓嶅彂鐢熻蛋鍔ㄣ�傝缁冮泦鍜岄獙璇侀泦鐨勮璇濅汉娌℃湁閲嶅銆傚浘1灞曠ず浜嗕竴涓細璁鐨勫竷灞�浠ュ強楹﹀厠椋庣殑鎷撴墤缁撴瀯銆�
+
+![meeting room](images/meeting_room.png)
+
+姣忓満浼氳鐨勮璇濅汉鏁伴噺浠�2鍒�4浜轰笉绛夈�傚悓鏃朵负浜嗚鐩栧悇绉嶅唴瀹圭殑浼氳鍦烘櫙锛屾垜浠�夋嫨浜嗗绉嶄細璁富棰橈紝鍖呮嫭鍖荤枟銆佹暀鑲层�佸晢涓氥�佺粍缁囩鐞嗐�佸伐涓氱敓浜х瓑涓嶅悓鍐呭鐨勪緥浼氥�傝缁冮泦鍜岄獙璇侀泦鐨勫钩鍧囪闊抽噸鍙犵巼鍒嗗埆涓�42.27\%鍜�34.76\%銆侫liMeeting璁粌闆嗗拰楠岃瘉闆嗙殑璇︾粏淇℃伅瑙佽〃1銆傝〃2鏄剧ず浜嗚缁冮泦鍜岄獙璇侀泦涓笉鍚屽彂瑷�鑰呬汉鏁颁細璁殑璇煶閲嶅彔鐜囧拰浼氳鏁伴噺銆�
+
+![dataset detail](images/dataset_detail.png)
+Test-2023娴嬭瘯闆嗙敱20鍦轰細璁粍鎴愶紝杩欎簺浼氳鏄湪涓嶢liMeeting鏁版嵁闆嗙浉鍚岀殑澹板鐜涓嬪綍鍒剁殑銆俆est-2023娴嬭瘯闆嗕腑鐨勬瘡涓細璁幆鑺傜敱2鍒�4涓弬涓庤�呯粍鎴愬苟涓斾笌AliMeeting娴嬭瘯闆嗙殑閰嶇疆鐩镐技銆�
+
+鎴戜滑杩樹娇鐢ㄨ�虫満楹﹀厠椋庤褰曚簡姣忎釜璇磋瘽浜虹殑杩戝満闊抽淇″彿锛屽苟纭繚鍙浆褰曞搴旇璇濅汉鑷繁鐨勮闊炽�傞渶瑕佹敞鎰忕殑鏄紝楹﹀厠椋庨樀鍒楄褰曠殑杩滃満闊抽鍜岃�虫満楹﹀厠椋庤褰曠殑杩戝満闊抽鍦ㄦ椂闂翠笂鏄悓姝ョ殑銆傛瘡鍦轰細璁殑鎵�鏈夋妱鏈潎浠extGrid鏍煎紡瀛樺偍锛屽唴瀹瑰寘鎷細璁殑鏃堕暱銆佽璇濅汉淇℃伅锛堣璇濅汉鏁伴噺銆佽璇濅汉ID銆佹�у埆绛夛級銆佹瘡涓璇濅汉鐨勭墖娈垫�绘暟銆佹瘡涓墖娈电殑鏃堕棿鎴冲拰杞綍鍐呭銆�
+
+
+## 鑾峰彇鏁版嵁
+浠ヤ笂鎻愬埌鐨勪笁涓缁冮泦鍧囧彲浠ュ湪[OpenSLR](https://openslr.org/resources.php)涓嬭浇. 鍙傝禌鑰呭彲浠ヤ娇鐢ㄤ笅鏂归摼鎺ョ洿鎺ヤ笅杞�. 閽堝AliMeeting鏁版嵁闆嗭紝姣旇禌鎻愪緵鐨刡aseline涓寘鍚簡瀹屾暣鐨勬暟鎹鐞嗘祦绋嬨��
+- [AliMeeting](https://openslr.org/119/)
+- [AISHELL-4](https://openslr.org/111/)
+- [CN-Celeb](https://openslr.org/82/)
\ No newline at end of file
diff --git "a/docs_m2met2_cn/\347\256\200\344\273\213.md" "b/docs_m2met2_cn/\347\256\200\344\273\213.md"
new file mode 100644
index 0000000..0f8bb59
--- /dev/null
+++ "b/docs_m2met2_cn/\347\256\200\344\273\213.md"
@@ -0,0 +1,27 @@
+# 绠�浠�
+## 绔炶禌浠嬬粛
+璇煶璇嗗埆锛圓utomatic Speech Recognition锛夈�佽璇濅汉鏃ュ織锛圫peaker Diarization锛夌瓑璇煶澶勭悊鎶�鏈殑鏈�鏂板彂灞曟縺鍙戜簡浼楀鏅鸿兘璇煶鐨勫箍娉涘簲鐢ㄣ�備細璁満鏅槸璇煶鎶�鏈簲鐢ㄤ腑鏈�鏈変环鍊笺�佸悓鏃朵篃鏄渶鍏锋寫鎴樻�х殑鍦烘櫙涔嬩竴銆傚洜涓鸿繖鏍风殑鍦烘櫙鍖呭惈浜嗕赴瀵岀殑璁茶瘽椋庢牸鍜屽鏉傜殑澹板鏉′欢锛岄渶瑕佽�冭檻鍒伴噸鍙犺闊炽�佹暟閲忔湭鐭ョ殑璇磋瘽浜恒�佸ぇ鍨嬩細璁涓殑杩滃満淇″彿銆佸櫔闊冲拰娣峰搷绛夋寫鎴樸��
+
+涓轰簡鎺ㄥ姩浼氳鍦烘櫙璇煶璇嗗埆鐨勫彂灞曪紝宸茬粡鏈夊緢澶氱浉鍏崇殑鎸戞垬璧涳紝濡� Rich Transcription evaluation 鍜� CHIME锛圕omputational Hearing in Multisource Environments锛� 鎸戞垬璧涖�傜劧鑰屼笉鍚岃瑷�涔嬮棿鐨勫樊寮傞檺鍒朵簡闈炶嫳璇細璁浆褰曠殑杩涘睍銆侻ISP锛圡ultimodal Information Based Speech Processing锛夊拰M2MeT锛圡ulti-Channel Multi-Party Meeting Transcription锛夋寫鎴樿禌涓烘帹鍔ㄦ櫘閫氳瘽浼氳鍦烘櫙璇煶璇嗗埆鍋氬嚭浜嗚础鐚�侻ISP鎸戞垬璧涗晶閲嶄簬鐢ㄨ鍚妯℃�佺殑鏂规硶瑙e喅鏃ュ父瀹跺涵鐜涓殑杩滆窛绂诲楹﹀厠椋庝俊鍙峰鐞嗛棶棰橈紝鑰孧2MeT鎸戞垬鍒欎晶閲嶄簬瑙e喅绂荤嚎浼氳瀹や腑浼氳杞綍鐨勮闊抽噸鍙犻棶棰樸��
+
+鍦ㄤ笂涓�灞奙2MET鎴愬姛涓惧姙鐨勫熀纭�涓婏紝鎴戜滑灏嗗湪ASRU2023涓婄户缁妇鍔濵2MET2.0鎸戞垬璧涖�傚湪涓婁竴灞奙2MET鎸戞垬璧涗腑锛岃瘎浼版寚鏍囨槸璇磋瘽浜烘棤鍏崇殑锛屾垜浠彧鑳藉緱鍒拌瘑鍒枃鏈紝鑰屼笉鑳界‘瀹氱浉搴旂殑璇磋瘽浜恒��
+涓轰簡灏嗙幇鍦ㄧ殑澶氳璇濅汉璇煶璇嗗埆绯荤粺鎺ㄥ悜瀹炵敤鍖栵紝M2MET2.0鎸戞垬璧涘皢鍦ㄨ璇濅汉鐩稿叧鐨勪汉鐗╀笂璇勪及锛屽苟涓斿悓鏃惰绔嬮檺瀹氭暟鎹笌涓嶉檺瀹氭暟鎹袱涓瓙璧涢亾銆�
+鎴戜滑瀵规暟鎹泦銆佽鍒欍�佸熀绾跨郴缁熷拰璇勪及鏂规硶杩涜浜嗚缁嗕粙缁嶏紝浠ヨ繘涓�姝ヤ績杩涘璇磋瘽浜鸿闊宠瘑鍒鍩熺爺绌剁殑鍙戝睍銆備富鍔炴柟灏嗛�夋嫨鍓嶄笁鍚嶈鏂囧苟灏嗗叾绾冲叆ASRU2023璁烘枃闆嗐��
+
+
+## 鏃堕棿瀹夋帓(AOE鏃堕棿)
+
+- $ 2023.5.5: $ 鍙傝禌鑰呮敞鍐屾埅姝�
+- $ 2023.6.9: $ 娴嬭瘯闆嗘暟鎹彂甯�
+- $ 2023.6.13: $ 鏈�缁堢粨鏋滄彁浜ゆ埅姝�
+- $ 2023.6.19: $ 璇勪及缁撴灉鍜屾帓鍚嶅彂甯�
+- $ 2023.7.3: $ 璁烘枃鎻愪氦鎴
+- $ 2023.7.10: $ 鏈�缁堢増璁烘枃鎻愪氦鎴
+
+## 绔炶禌鎶ュ悕
+
+鏉ヨ嚜瀛︽湳鐣屽拰宸ヤ笟鐣岀殑鏈夋剰鍚戝弬璧涜�呭潎搴斿湪2023骞�5鏈�5鏃ュ墠鍚� **m2met.alimeeting@gmail.com** 鍙戦�侀偖浠讹紝鎸夌収浠ヤ笅瑕佹眰娉ㄥ唽鍙傚姞鎸戞垬璧涳細
+- 涓婚: [ICASSP2022 M2MeT2.0 Challenge Registration] 鈥� 鍥㈤槦鍚嶏紙鑻辨枃鎴栬�呮嫾闊筹級- 鍙備笌鐨勫瓙璧涢亾锛�
+- 鎻愪緵鍥㈤槦鍚嶇О銆侀毝灞炲叧绯汇�佸弬涓庣殑璧涢亾銆佸洟闃熼槦闀夸互鍙婅仈绯讳汉淇℃伅锛堝洟闃熶汉鏁颁笉闄愬畾锛夛紱
+
+涓诲姙鏂瑰皢鍦�3涓伐浣滄棩鍐呴�氳繃鐢靛瓙閭欢閫氱煡绗﹀悎鏉′欢鐨勫弬璧涘洟闃燂紝鍥㈤槦蹇呴』閬靛畧灏嗗湪鎸戞垬缃戠珯涓婂彂甯冪殑鎸戞垬瑙勫垯銆�
\ No newline at end of file
diff --git "a/docs_m2met2_cn/\347\273\204\345\247\224\344\274\232.md" "b/docs_m2met2_cn/\347\273\204\345\247\224\344\274\232.md"
new file mode 100644
index 0000000..5941314
--- /dev/null
+++ "b/docs_m2met2_cn/\347\273\204\345\247\224\344\274\232.md"
@@ -0,0 +1 @@
+# 缁勫浼�
diff --git "a/docs_m2met2_cn/\350\247\204\345\210\231.md" "b/docs_m2met2_cn/\350\247\204\345\210\231.md"
new file mode 100644
index 0000000..bda1029
--- /dev/null
+++ "b/docs_m2met2_cn/\350\247\204\345\210\231.md"
@@ -0,0 +1,16 @@
+# 绔炶禌瑙勫垯
+鎵�鏈夊弬璧涜�呴兘搴旈伒瀹堜互涓嬭鍒�:
+
+- 鍏佽鍦ㄥ師濮嬭缁冩暟鎹泦涓婅繘琛屾暟鎹寮猴紝鍖呮嫭浣嗕笉闄愪簬娣诲姞鍣0鎴栨贩鍝嶃�侀�熷害鎵板姩鍜岄煶璋冨彉鍖栥��
+
+- 涓ユ牸绂佹浠ヤ换浣曞舰寮忎娇鐢ㄦ祴璇曟暟鎹泦锛屽寘鎷絾涓嶉檺浜庝娇鐢ㄦ祴璇曟暟鎹泦寰皟鎴栬缁冩ā鍨嬨��
+
+- 鍏佽澶氱郴缁熻瀺鍚堬紝浣嗕笉榧撳姳浣跨敤鍏锋湁鐩稿悓缁撴瀯浠呭弬鏁颁笉鍚岀殑瀛愮郴缁熻瀺鍚堛��
+  
+- 濡傛灉涓や釜绯荤粺鐨勬祴璇昪pCER鐩稿悓锛屽垯璁$畻澶嶆潅搴﹁緝浣庣殑绯荤粺灏嗚璁ゅ畾涓烘洿浼樸��
+  
+- 濡傛灉浣跨敤寮哄埗瀵归綈妯″瀷鑾峰緱浜嗛�愬抚鍒嗙被鏍囩锛屽垯蹇呴』浣跨敤鐩稿簲瀛愯禌閬撳厑璁哥殑鏁版嵁瀵瑰己鍒跺榻愭ā鍨嬭繘琛岃缁冦��
+  
+- 绔埌绔柟娉曚腑鍏佽浣跨敤娴呭眰铻嶅悎璇█妯″瀷锛屾ā鍨嬪彲浠ラ�夋嫨LAS銆丷NNT鍜孴ransformer绛夛紝浣嗘祬灞傝瀺鍚堣瑷�妯″瀷鐨勮缁冩暟鎹彧鑳芥潵鑷簬鍏佽鐨勮缁冩暟鎹泦鐨勮浆褰曟妱鏈��
+  
+- 鏈�缁堣В閲婃潈灞炰簬涓诲姙鏂广�傚閬囩壒娈婃儏鍐碉紝涓诲姙鏂瑰皢鍗忚皟瑙i噴銆�
\ No newline at end of file
diff --git "a/docs_m2met2_cn/\350\265\233\351\201\223\350\256\276\347\275\256\344\270\216\350\257\204\344\274\260.md" "b/docs_m2met2_cn/\350\265\233\351\201\223\350\256\276\347\275\256\344\270\216\350\257\204\344\274\260.md"
new file mode 100644
index 0000000..00a631e
--- /dev/null
+++ "b/docs_m2met2_cn/\350\265\233\351\201\223\350\256\276\347\275\256\344\270\216\350\257\204\344\274\260.md"
@@ -0,0 +1,15 @@
+# 璧涢亾璁剧疆涓庤瘎浼�
+## 璇磋瘽浜虹浉鍏崇殑璇煶璇嗗埆 (涓昏禌閬�)
+璇磋瘽浜虹浉鍏崇殑ASR浠诲姟闇�瑕佷粠閲嶅彔鐨勮闊充腑璇嗗埆姣忎釜璇磋瘽浜虹殑璇煶锛屽苟涓鸿瘑鍒唴瀹瑰垎閰嶄竴涓璇濅汉鏍囩銆傚湪鏈绔炶禌涓瑼liMeeting銆丄ishell4鍜孋n-Celeb鏁版嵁闆嗗彲浣滀负鍙楅檺鏁版嵁婧愩�傚湪M2MeT鎸戞垬璧涗腑浣跨敤鐨凙liMeeting鏁版嵁闆嗗寘鍚缁冦�佽瘎浼板拰娴嬭瘯闆嗭紝鍦∕2MET2.0鍙互鍦ㄨ缁冨拰璇勪及涓娇鐢ㄣ�傛澶栵紝涓�涓寘鍚害10灏忔椂浼氳鏁版嵁鐨勬柊鐨凾est-2023闆嗗皢鏍规嵁璧涚▼瀹夋帓鍙戝竷骞剁敤浜庢寫鎴樿禌鐨勮瘎鍒嗗拰鎺掑悕銆傚�煎緱娉ㄦ剰鐨勬槸锛岀粍缁囪�呭皢涓嶆彁渚涜�虫満鐨勮繎鍦洪煶棰戙�佽浆褰曚互鍙婄湡瀹炴椂闂存埑銆備富鍔炴柟灏嗕笉鍐嶆彁渚涙瘡涓璇濅汉鐨勭湡瀹炴椂闂存埑锛岃�屾槸鍦═est-2023闆嗕笂鎻愪緵鍖呭惈澶氫釜璇磋瘽浜虹殑鐗囨銆傝繖浜涚墖娈靛彲浠ラ�氳繃涓�涓畝鍗曠殑vad妯″瀷鑾峰緱銆�
+
+## 璇勪及鏂规硶
+浣跨敤涓茶仈鏈�浼樻帓搴忓瓧绗﹂敊璇巼锛坈pCER锛夋寚鏍囨潵璇勪及璇磋瘽浜虹浉鍏崇殑ASR绯荤粺鐨勫噯纭�с�俢pCER鐨勮绠楀寘鎷笁涓楠ゃ�傞鍏堬紝灏嗕竴鍦轰細璁腑姣忎釜璇磋瘽浜虹殑鍙傝�冨拰鍋囪杞綍鎸夋椂闂撮『搴忎覆鑱旇捣鏉ャ�傚叾娆★紝璁$畻鐪熷疄鏍囩鍜岄娴嬭緭鍑轰箣闂寸殑瀛楃閿欒鐜囷紙CER锛夛紝骞跺鎵�鏈夊彲鑳界殑璇磋瘽浜烘帓鍒楃粍鍚堥噸澶嶈繖涓�杩囩▼銆傛渶鍚庯紝閫夋嫨CER鏈�浣庣殑鎺掑垪缁勫悎浣滀负璇ユ椂娈电殑cpCER銆侰ER鏄�氳繃灏咥SR杈撳嚭杞寲涓哄弬鑰冩妱鏈墍闇�鐨勬彃鍏ワ紙Ins锛夈�佹浛鎹紙Sub锛夊拰鍒犻櫎锛圖el锛夌殑瀛楃鎬绘暟闄や互鍙傝�冩妱鏈殑瀛楃鎬绘暟寰楀埌鐨勩�傚叿浣撴潵璇达紝CER鐨勮绠楁柟娉曟槸锛�
+
+$$ \text{CER} = \frac {\mathcal N_{\text{Ins}} + \mathcal N_{\text{Sub}} + \mathcal N_{\text{Del}} }{\mathcal N_{\text{Total}}} \times 100\%, $$
+
+鍏朵腑 $\mathcal N_{\text{Ins}}$ , $\mathcal N_{\text{Sub}}$ , $\mathcal N_{\text{Del}}$ 鏄笁绉嶉敊璇殑瀛楃鏁�, $\mathcal N_{\text{Total}}$ 鏄瓧绗︽�绘暟.
+## 瀛愯禌閬撹缃�
+### 瀛愯禌閬撲竴 (闄愬畾璁粌鏁版嵁):
+鍙備笌鑰呭彧鑳戒娇鐢ㄩ檺瀹氭暟鎹瀯寤轰袱涓郴缁燂紝涓ョ浣跨敤棰濆鏁版嵁銆傚弬璧涜�呭湪绯荤粺鏋勫缓杩囩▼涓粎鑳戒娇鐢ˋliMeeting銆丄ISHELL-4鍜孋N Celeb銆傚弬璧涜�呭彲浠ヤ娇鐢╗Hugging Face](https://huggingface.co/models)浠ュ強[ModelScope](https://www.modelscope.cn/models)涓婃彁渚涚殑寮�婧愰璁粌妯″瀷锛屽苟涓旈渶瑕佸湪鏈�缁堢殑绯荤粺鎻忚堪鏂囨。涓缁嗗垪鍑轰娇鐢ㄧ殑棰勮缁冩ā鍨嬪悕绉颁互鍙婇摼鎺ャ��
+### 瀛愯禌閬撲簩 (寮�鏀捐缁冩暟鎹�):
+闄や簡闄愬畾鏁版嵁澶栵紝鍙備笌鑰呭彲浠ヤ娇鐢ㄤ换浣曞叕寮�鍙敤銆佺浜哄綍鍒跺拰妯℃嫙浠跨湡鐨勬暟鎹泦銆備絾鏄紝鍙備笌鑰呭繀椤绘竻妤氬湴鍒楀嚭浣跨敤鐨勬暟鎹�傚鏋滀娇鐢ㄦā鎷熶豢鐪熸暟鎹紝璇疯缁嗘弿杩版暟鎹ā鎷熺殑鏂规銆�
\ No newline at end of file

--
Gitblit v1.9.1