项目文件夹

文件
Mufei Li cd9fb7baa0 [Model Zoo] Refactor GCN on Tox21 (#766)
* [Model zoo] Model zoo (#765)

* tox21

* fix ci

* fix ci

* fix urls to url

* add doc

* remove binary

* model zoo

* test

* markdown

* fix typo

* fix typo

* fix typo

* raise error

* fix lint

* remove unnecessary

* fix doc

* fix

* fix

* fix

* fix

* fix

* fix

* Update

* CI

* Fix

* Fix

* Fix

* Fix

* Fix

* CI
2019-08-16 02:49:25 +08:00

571 B

Model Zoo API

We provide two major APIs for the model zoo. For the time being, only PyTorch is supported.

  • model_zoo.chem.[Model_Name] to load the model skeleton
  • model_zoo.chem.load_pretrained([Pretrained_Model_Name]) to load the model with pretrained weights

Models would be placed in python/dgl/model_zoo/chem.

Each Model should contain the following elements:

  • Papers related to the model
  • Model's input and output
  • Dataset compatible with the model
  • Documentation for all the customizable configs
  • Credits (Contributor infomation)