Unverified Commit ad8530a4 authored by Quan (Andy) Gan's avatar Quan (Andy) Gan Committed by GitHub
Browse files

[Readme] 0.5.0 release and bump to new prerelease versions (#2082)

* [Readme] 0.5.0 release and bump to new prerelease versions

* bump version
parent f13b9b62
...@@ -18,12 +18,12 @@ DGL is an easy-to-use, high performance and scalable Python package for deep lea ...@@ -18,12 +18,12 @@ DGL is an easy-to-use, high performance and scalable Python package for deep lea
</p> </p>
## <img src="http://data.dgl.ai/asset/image/new.png" width="30">DGL News ## <img src="http://data.dgl.ai/asset/image/new.png" width="30">DGL News
**08/21/2020**: The new **v0.5.0 release** includes distributed GNN training, overhauled documentation and user guide, and several more features. We have also submitted some models to the [OGB](https://ogb.stanford.edu) leaderboard. See our [release note](https://github.com/dmlc/dgl/releases/tag/0.5.0) for more details.
**06/11/2020**: Amazon Shanghai AI Lab and AWS Deep Engine Science team working along with academic collaborators from the University of Minnesota, The Ohio State University, and Hunan University have created the **[Drug Repurposing Knowledge Graph (DRKG)](https://github.com/gnn4dr/DRKG)** and a set of machine learning tools, [DGL-KE](https://github.com/awslabs/dgl-ke), that can be used to prioritize drugs for repurposing studies. **06/11/2020**: Amazon Shanghai AI Lab and AWS Deep Engine Science team working along with academic collaborators from the University of Minnesota, The Ohio State University, and Hunan University have created the **[Drug Repurposing Knowledge Graph (DRKG)](https://github.com/gnn4dr/DRKG)** and a set of machine learning tools, [DGL-KE](https://github.com/awslabs/dgl-ke), that can be used to prioritize drugs for repurposing studies.
DRKG is a comprehensive biological knowledge graph that relates human genes, compounds, biological processes, drug side effects, diseases and symptoms. DRKG includes, curates, and normalizes information from six publicly available databases and data that were collected from recent publications related to Covid-19. It has 97,238 entities belonging to 13 types of entities, and 5,874,261 triplets belonging to 107 types of relations. DRKG is a comprehensive biological knowledge graph that relates human genes, compounds, biological processes, drug side effects, diseases and symptoms. DRKG includes, curates, and normalizes information from six publicly available databases and data that were collected from recent publications related to Covid-19. It has 97,238 entities belonging to 13 types of entities, and 5,874,261 triplets belonging to 107 types of relations.
More about the dataset is in this [blogpost](https://www.dgl.ai/news/2020/06/09/covid.html). More about the dataset is in this [blogpost](https://www.dgl.ai/news/2020/06/09/covid.html).
**03/31/2020**: The new **v0.4.3 release** includes official TensorFlow support, with 15 popular GNN modules. DGL-KE and DGL-LifeSci, two packages for knowledge graph embedding and chemi- and bio-informatics respectively, have graduated as standalone packages and can be installed by pip and conda. The new release provides full support of graph sampling on heterogeneous graphs, with multi-GPU acceleration. See our [new feature walkthrough](https://www.dgl.ai/release/2020/04/01/release.html) and [release note](https://github.com/dmlc/dgl/releases/tag/0.4.3).
## Using DGL ## Using DGL
**A data scientist** may want to apply a pre-trained model to your data right away. For this you can use DGL's [Application packages, formally *Model Zoo*](https://github.com/dmlc/dgl/tree/master/apps). Application packages are developed for domain applications, as is the case for [DGL-LifeScience](https://github.com/awslabs/dgl-lifesci). We will soon add model zoo for knowledge graph embedding learning and recommender systems. Here's how you will use a pretrained model: **A data scientist** may want to apply a pre-trained model to your data right away. For this you can use DGL's [Application packages, formally *Model Zoo*](https://github.com/dmlc/dgl/tree/master/apps). Application packages are developed for domain applications, as is the case for [DGL-LifeScience](https://github.com/awslabs/dgl-lifesci). We will soon add model zoo for knowledge graph embedding learning and recommender systems. Here's how you will use a pretrained model:
......
package: package:
name: dgl{{ environ.get('DGL_PACKAGE_SUFFIX', '') }} name: dgl{{ environ.get('DGL_PACKAGE_SUFFIX', '') }}
version: "0.4" version: "0.6"
source: source:
git_rev: 0.4.x git_rev: 0.4.x
......
...@@ -33,7 +33,7 @@ ...@@ -33,7 +33,7 @@
#endif #endif
// DGL version // DGL version
#define DGL_VERSION "0.4" #define DGL_VERSION "0.6"
// DGL Runtime is DLPack compatible. // DGL Runtime is DLPack compatible.
......
...@@ -90,4 +90,4 @@ def find_lib_path(name=None, search_path=None, optional=False): ...@@ -90,4 +90,4 @@ def find_lib_path(name=None, search_path=None, optional=False):
# We use the version of the incoming release for code # We use the version of the incoming release for code
# that is under development. # that is under development.
# The following line is set by dgl/python/update_version.py # The following line is set by dgl/python/update_version.py
__version__ = "0.4" __version__ = "0.6"
...@@ -11,7 +11,7 @@ import re ...@@ -11,7 +11,7 @@ import re
# current version # current version
# We use the version of the incoming release for code # We use the version of the incoming release for code
# that is under development # that is under development
__version__ = "0.4" + os.getenv('DGL_PRERELEASE', '') __version__ = "0.6" + os.getenv('DGL_PRERELEASE', '')
print(__version__) print(__version__)
# Implementations # Implementations
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment