diff --git a/README.md b/README.md index edfcb2a98e6c..5b441da16b11 100755 --- a/README.md +++ b/README.md @@ -26,6 +26,8 @@ information [here](https://innovation.microsoft.com/en-us/exploring-ai-at-scale) # News +* [2020/07/24] [DeepSpeed webinar](https://note.microsoft.com/MSR-Webinar-DeepSpeed-Registration-Live.html) on August 6th, 2020 + [![DeepSpeed webinar](docs/assets/images/webinar-aug2020.png)](https://note.microsoft.com/MSR-Webinar-DeepSpeed-Registration-Live.html) * [2020/05/19] [ZeRO-2 & DeepSpeed: Shattering Barriers of Deep Learning Speed & Scale](https://www.microsoft.com/en-us/research/blog/zero-2-deepspeed-shattering-barriers-of-deep-learning-speed-scale/) **[_NEW_]** * [2020/05/19] [An Order-of-Magnitude Larger and Faster Training with ZeRO-2](https://www.deepspeed.ai/news/2020/05/18/zero-stage2.html) diff --git a/docs/_layouts/news-home.html b/docs/_layouts/news-home.html index 960576b27cd7..8248eed5b551 100644 --- a/docs/_layouts/news-home.html +++ b/docs/_layouts/news-home.html @@ -16,6 +16,9 @@

{{ site.data.ui-text[site.locale].recent_posts | default: "Recent Posts" }}< {% assign news = posts | where: "sneak_preview", "false" %} {% for post in news %} {% include archive-single.html %} + {% if post.image %} + + {% endif %} {% endfor %} {% include paginator.html %} diff --git a/docs/_posts/2020-07-24-deepspeed-webinar.md b/docs/_posts/2020-07-24-deepspeed-webinar.md new file mode 100644 index 000000000000..6c6bd6bbe581 --- /dev/null +++ b/docs/_posts/2020-07-24-deepspeed-webinar.md @@ -0,0 +1,10 @@ +--- +layout: single +title: "DeepSpeed webinar on August 6th, 2020" +excerpt: "" +categories: news +link: https://note.microsoft.com/MSR-Webinar-DeepSpeed-Registration-Live.html +image: /assets/images/webinar-aug2020.png +new_post: true +date: 2020-07-24 00:00:00 +--- diff --git a/docs/assets/images/webinar-aug2020.png b/docs/assets/images/webinar-aug2020.png new file mode 100644 index 000000000000..cb8577a4aea4 Binary files /dev/null and b/docs/assets/images/webinar-aug2020.png differ diff --git a/docs/index.md b/docs/index.md index 7b99cb550db0..6dea83db268f 100755 --- a/docs/index.md +++ b/docs/index.md @@ -27,9 +27,13 @@ information [here](https://innovation.microsoft.com/en-us/exploring-ai-at-scale) {% assign news = site.posts | where: "sneak_preview", "false" %} {% for post in news limit:5 %} {% if post.link %} - * [{{ post.date | date: "%Y/%m/%d" }}] [{{ post.title }}]({{ post.link }}) {% if post.new_post %} **NEW!** {% endif %} + {% if post.image %} +* [{{ post.date | date: "%Y/%m/%d" }}] [ {{ post.title }} {% if post.new_post %} **NEW!** {% endif %} ![]({{ post.image }}) ]({{ post.link }}) + {% else %} +* [{{ post.date | date: "%Y/%m/%d" }}] [{{ post.title }}]({{ post.link }}) {% if post.new_post %} **NEW!** {% endif %} + {% endif %} {% else %} - * [{{ post.date | date: "%Y/%m/%d"}}] [{{ post.title }}]({{ post.url }}) {% if post.new_post %} **NEW!** {% endif %} +* [{{ post.date | date: "%Y/%m/%d"}}] [{{ post.title }}]({{ post.url }}) {% if post.new_post %} **NEW!** {% endif %} {% endif %} {% endfor %}