Skip to content

Commit

Permalink
update video page and news page, add a news generate script
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesZhutheThird committed Jul 18, 2024
1 parent db59365 commit 436f095
Show file tree
Hide file tree
Showing 18 changed files with 190 additions and 8 deletions.
2 changes: 1 addition & 1 deletion _news/en/announcement_1.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
layout: post
date: 2023-12-31
date: 202023-12-31
inline: true
related_posts: false
---
Expand Down
1 change: 0 additions & 1 deletion _news/en/announcement_10.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,4 @@ inline: true
related_posts: false
---


🗓️️[Academic Day] The 2024 **X-LANCE Academic Day** was held successfully. <a href="https://mp.weixin.qq.com/s/b3Rp5J1RYTk-mMPBrztkFQ"> [post] </a>
2 changes: 1 addition & 1 deletion _news/en/announcement_11.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ inline: true
related_posts: false
---

🧑‍💻[Xmart] The first episode of **Xmart Student Forum** was released on Bilibili. <a href="https://www.bilibili.com/video/BV1FJ4m137ZB"> [video] </a>
🧑‍💻[Xmart] The first episode of **Xmart Student Forum** was released on Bilibili. <a href="https://www.bilibili.com/video/BV1FJ4m137ZB"> [video] </a>
8 changes: 8 additions & 0 deletions _news/en/announcement_12.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
layout: post
date: 2024-7-2
inline: true
related_posts: false
---

💪 Premier Li Qiang conducted a visit to AISpeech in Suzhou, Jiangsu. Professor Yu Kai from X-LANCE made another appearance on the *Xinwen Lianbo*, reporting to the Premier about the progress in research and development. <a href="https://mp.weixin.qq.com/s/wUpLnrBs9W1TfxuqMclCLw"> [Post] </a>
8 changes: 8 additions & 0 deletions _news/en/announcement_13.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
layout: post
date: 2024-7-3
inline: true
related_posts: false
---

🧑‍💻[Xmart] The second episode of **Xmart Student Forum** was released on Bilibili. <a href="https://www.bilibili.com/video/BV1qihreEE6L"> [video] </a>
8 changes: 8 additions & 0 deletions _news/en/announcement_14.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
layout: post
date: 2024-7-10
inline: true
related_posts: false
---

📃[Paper+1] **One** paper from X-LANCE Lab accepted by **COLM 2024**. <a href="https://mp.weixin.qq.com/s/RDm-KWKaa0KOSawedDoRxQ"> [Post] </a>
39 changes: 39 additions & 0 deletions _news/generate_news.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
list_file = "news_list.md"

news_index = 0

# get news list
with open(list_file, 'r', encoding='utf-8') as f:
news_list = f.read()

news_list = news_list.split("\n# 20")
for news in news_list:
info = news.strip().split("\n\n")
assert len(info) == 3
news_index += 1
date = "20" + info[0].replace('#','').strip()
content_en = info[1].strip()
content_zh = info[2].strip()

news_en = f"""---
layout: post
date: {date}
inline: true
related_posts: false
---
{content_en}
"""
news_zh = f"""---
layout: post
date: {date}
inline: true
related_posts: false
---
{content_zh}
"""
with open(f"./en/announcement_{news_index}.md", 'w', encoding='utf-8') as f:
f.write(news_en)
with open(f"./zh/announcement_{news_index}.md", 'w', encoding='utf-8') as f:
f.write(news_zh)
84 changes: 84 additions & 0 deletions _news/news_list.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,84 @@
# 2023-12-31

📃[Paper+14] **Three** papers from X-LANCE Lab accepted by **ICASSP 2024**. <a href="https://mp.weixin.qq.com/s/OwneRjQfcdmeORCVijl0og"> [Post1] </a> <a href="https://mp.weixin.qq.com/s/7GdYKCw8QYlaWHuxj8ZpqA"> [Post2] </a>

📃【论文+14】X-LANCE 实验室的**十四篇**论文被 **ICASSP 2024** 接收。<a href="https://mp.weixin.qq.com/s/OwneRjQfcdmeORCVijl0og"> 【公众号推送1】 </a> <a href="https://mp.weixin.qq.com/s/7GdYKCw8QYlaWHuxj8ZpqA"> 【公众号推送2】 </a>

# 2023-12-31

📃[Paper+3] **Three** papers from X-LANCE Lab accepted by **AAAI 2024**. <a href="https://mp.weixin.qq.com/s/Zk_UfIgHzXUwyi3RypIGYw"> [Post] </a>

📃【论文+2】X-LANCE 实验室的**两篇**论文被 **NAACL 2024** 接收。 <a href="https://mp.weixin.qq.com/s/U0O9SxLa2kqJh0IyDeiLYQ"> 【公众号推送】</a>

# 2024-2-29

📃[Paper+3] **Three** papers from X-LANCE Lab accepted by **COLING 2024** and **WSDM 2024**. <a href="https://mp.weixin.qq.com/s/po_WpFtMembsME7Wl5NlRg"> [Post] </a>

📃【论文+3】X-LANCE 实验室的**三篇**论文被 **COLING 2024****WSDM 2024** 接收。 <a href="https://mp.weixin.qq.com/s/po_WpFtMembsME7Wl5NlRg"> 【公众号推送】</a>

# 2024-3-14

📃[Paper+2] **Two** papers from X-LANCE Lab accepted by **NAACL 2024**. <a href="https://mp.weixin.qq.com/s/U0O9SxLa2kqJh0IyDeiLYQ"> [Post] </a>

📃【论文+2】X-LANCE 实验室的**两篇**论文被 **NAACL 2024** 接收。 <a href="https://mp.weixin.qq.com/s/U0O9SxLa2kqJh0IyDeiLYQ"> 【公众号推送】</a>

# 2024-1-24

🎆 [New Year Message] Together we celebrate the New Year! The 2024 Annual Dinner of X-LANCE was successfully held. <a href="https://mp.weixin.qq.com/s/gFC4Sfmf0XCxdWt8OZ-V_w"> [Post] </a>

🎆【年度贺词】 共贺新春!上海交通大学跨媒体语音智能实验室2024年夜饭顺利举行。 <a href="https://mp.weixin.qq.com/s/gFC4Sfmf0XCxdWt8OZ-V_w"> 【公众号推送】 </a>

# 2024-4-7

🤗 [LLM+1] SJTU, AISpeech, and Suzhou Labs jointly released the first 10B scale large model in chemistry, with chemical capability outperforming GPT-4. <a href="https://mp.weixin.qq.com/s/gFC4Sfmf0XCxdWt8OZ-V_w"> [Post] </a>

🤗【大模型+1】上海交通大学、思必驰、苏州实验室联合发布首个化学领域百亿级大模型,化学能力超GPT-4。 <a href="https://mp.weixin.qq.com/s/h3BF-UEnQGRxv6OsgbtZWg"> 【公众号推送】 </a>

# 2024-5-2

📃[Paper+2] **Two** papers from X-LANCE Lab accepted by **ICML 2024**. <a href="https://mp.weixin.qq.com/s/7bzGc_ayMOiPlqFnWAJrVA"> [Post] </a>

📃【论文+2】X-LANCE 实验室的**两篇**论文被 **ICML 2024** 接收。 <a href="https://mp.weixin.qq.com/s/7bzGc_ayMOiPlqFnWAJrVA"> 【公众号推送】</a>

# 2024-5-16

📃[Paper+3] **Three** papers from X-LANCE Lab accepted by **ACL 2024** main conference or findings of ACL. <a href="https://mp.weixin.qq.com/s/S7JVSiToKgV8Su3qA32k0A"> [Post] </a>

📃【论文+3】X-LANCE 实验室的**三篇**论文被 **ACL 2024** 主会或Findings接收。 <a href="https://mp.weixin.qq.com/s/S7JVSiToKgV8Su3qA32k0A"> 【公众号推送】</a>

# 2024-5-18

🌄[PhD Conference] The 2024 **PhD Conference** was held in Anji, Zhejiang Province. <a href="https://mp.weixin.qq.com/s/agsC-qdAVYhLJZXL34l5Jg"> [post] </a>

🌄【博士生大组会】 2024年度**博士生大组会**在浙江安吉举行。 <a href="https://mp.weixin.qq.com/s/agsC-qdAVYhLJZXL34l5Jg"> 【公众号推送】 </a>

# 2024-5-26

🗓️️[Academic Day] The 2024 **X-LANCE Academic Day** was held successfully. <a href="https://mp.weixin.qq.com/s/b3Rp5J1RYTk-mMPBrztkFQ"> [post] </a>

🗓️【年度学术日】 2024**年度学术日**顺利举行。 <a href="https://mp.weixin.qq.com/s/b3Rp5J1RYTk-mMPBrztkFQ"> 【公众号推送】 </a>

# 2024-6-12

🧑‍💻[Xmart] The first episode of **Xmart Student Forum** was released on Bilibili. <a href="https://www.bilibili.com/video/BV1FJ4m137ZB"> [video] </a>

🧑‍💻【Xmart】 **Xmart学生论坛**第一期上线B站。 <a href="https://www.bilibili.com/video/BV1FJ4m137ZB"> 【视频】 </a>

# 2024-7-2

💪 Premier Li Qiang conducted a visit to AISpeech in Suzhou, Jiangsu. Professor Yu Kai from X-LANCE made another appearance on the *Xinwen Lianbo*, reporting to the Premier about the progress in research and development. <a href="https://mp.weixin.qq.com/s/wUpLnrBs9W1TfxuqMclCLw"> [Video/Post] </a>

💪 李强总理在江苏苏州思必驰调研,X-LANCE俞凯教授再登新闻联播,向总理汇报研发进展。 <a href="https://mp.weixin.qq.com/s/wUpLnrBs9W1TfxuqMclCLw"> 【视频/公众号推送】</a>

# 2024-7-3

🧑‍💻[Xmart] The second episode of **Xmart Student Forum** was released on Bilibili. <a href="https://www.bilibili.com/video/BV1qihreEE6L"> [video] </a>

🧑‍💻【Xmart】 **Xmart学生论坛**第二期上线B站。 <a href="https://www.bilibili.com/video/BV1qihreEE6L"> 【视频】 </a>

# 2024-7-10

📃[Paper+1] **One** paper from X-LANCE Lab accepted by **COLM 2024**. <a href="https://mp.weixin.qq.com/s/RDm-KWKaa0KOSawedDoRxQ"> [Post] </a>

📃【论文+1】X-LANCE 实验室的**一篇**论文被 **COLM 2024** 接收。 <a href="https://mp.weixin.qq.com/s/RDm-KWKaa0KOSawedDoRxQ"> 【公众号推送】</a>

2 changes: 1 addition & 1 deletion _news/zh/announcement_1.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
layout: post
date: 2023-12-31
date: 202023-12-31
inline: true
related_posts: false
---
Expand Down
2 changes: 1 addition & 1 deletion _news/zh/announcement_11.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ inline: true
related_posts: false
---

🧑‍💻【Xmart】 **Xmart学生论坛**第一期上线B站。 <a href="https://www.bilibili.com/video/BV1FJ4m137ZB"> 【视频】 </a>
🧑‍💻【Xmart】 **Xmart学生论坛**第一期上线B站。 <a href="https://www.bilibili.com/video/BV1FJ4m137ZB"> 【视频】 </a>
8 changes: 8 additions & 0 deletions _news/zh/announcement_12.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
layout: post
date: 2024-7-2
inline: true
related_posts: false
---

💪 李强总理在江苏苏州思必驰调研,X-LANCE俞凯教授再登新闻联播,向总理汇报研发进展。 <a href="https://mp.weixin.qq.com/s/wUpLnrBs9W1TfxuqMclCLw"> 【公众号推送】</a>
8 changes: 8 additions & 0 deletions _news/zh/announcement_13.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
layout: post
date: 2024-7-3
inline: true
related_posts: false
---

🧑‍💻【Xmart】 **Xmart学生论坛**第二期上线B站。 <a href="https://www.bilibili.com/video/BV1qihreEE6L"> 【视频】 </a>
8 changes: 8 additions & 0 deletions _news/zh/announcement_14.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
layout: post
date: 2024-7-10
inline: true
related_posts: false
---

📃【论文+1】X-LANCE 实验室的**一篇**论文被 **COLM 2024** 接收。 <a href="https://mp.weixin.qq.com/s/RDm-KWKaa0KOSawedDoRxQ"> 【公众号推送】</a>
2 changes: 1 addition & 1 deletion _news/zh/announcement_2.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ inline: true
related_posts: false
---

📃【论文+3】X-LANCE 实验室的**三篇**论文被 **AAAI 2024** 接收。 <a href="https://mp.weixin.qq.com/s/Zk_UfIgHzXUwyi3RypIGYw"> 【公众号推送】</a>
📃【论文+2】X-LANCE 实验室的**两篇**论文被 **NAACL 2024** 接收。 <a href="https://mp.weixin.qq.com/s/U0O9SxLa2kqJh0IyDeiLYQ"> 【公众号推送】</a>
1 change: 0 additions & 1 deletion _news/zh/announcement_7.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,3 @@ related_posts: false
---

📃【论文+2】X-LANCE 实验室的**两篇**论文被 **ICML 2024** 接收。 <a href="https://mp.weixin.qq.com/s/7bzGc_ayMOiPlqFnWAJrVA"> 【公众号推送】</a>

1 change: 0 additions & 1 deletion _news/zh/announcement_8.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,3 @@ related_posts: false
---

📃【论文+3】X-LANCE 实验室的**三篇**论文被 **ACL 2024** 主会或Findings接收。 <a href="https://mp.weixin.qq.com/s/S7JVSiToKgV8Su3qA32k0A"> 【公众号推送】</a>

7 changes: 7 additions & 0 deletions _pages/en/videos.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,14 @@ nav: true
nav_order: 6
---

<div align="center">
<h3> Xmart Student Forum </h3>
<iframe src="//player.bilibili.com/player.html?bvid=BV1qihreEE6L&page=1" scrolling="no" border="0" frameborder="no" framespacing="0" allowfullscreen="true" width="100%" height="500"> </iframe>
</div>

<div align="center">
<h3> Xmart Student Forum </h3>
<iframe src="//player.bilibili.com/player.html?bvid=BV1FJ4m137ZB&page=1" scrolling="no" border="0" frameborder="no" framespacing="0" allowfullscreen="true" width="100%" height="500"> </iframe>
</div>


7 changes: 7 additions & 0 deletions _pages/zh/videos.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,13 @@ nav: true
nav_order: 6
---


<div align="center">
<h3> Xmart学生论坛 </h3>
<iframe src="//player.bilibili.com/player.html?bvid=BV1qihreEE6L&page=1" scrolling="no" border="0" frameborder="no" framespacing="0" allowfullscreen="true" width="100%" height="500"> </iframe>
</div>


<div align="center">
<h3> Xmart学生论坛 </h3>
<iframe src="//player.bilibili.com/player.html?bvid=BV1FJ4m137ZB&page=1" scrolling="no" border="0" frameborder="no" framespacing="0" allowfullscreen="true" width="100%" height="500"> </iframe>
Expand Down

0 comments on commit 436f095

Please sign in to comment.