Update readme
Browse files
README.md
CHANGED
@@ -1,17 +1,64 @@
|
|
1 |
---
|
2 |
title: README
|
3 |
emoji: π
|
4 |
-
colorFrom:
|
5 |
colorTo: gray
|
6 |
sdk: static
|
7 |
pinned: false
|
|
|
8 |
---
|
9 |
|
10 |
-
<p align="center"><img src="https://raw.githubusercontent.com/mims-harvard/TDC/master/fig/logo.png" alt="logo"
|
11 |
|
12 |
|
13 |
-
[**
|
14 |
|
|
|
15 |
|
16 |
-
Artificial intelligence is poised to
|
17 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
title: README
|
3 |
emoji: π
|
4 |
+
colorFrom: green
|
5 |
colorTo: gray
|
6 |
sdk: static
|
7 |
pinned: false
|
8 |
+
license: mit
|
9 |
---
|
10 |
|
11 |
+
<p align="center"><img src="https://raw.githubusercontent.com/mims-harvard/TDC/master/fig/logo.png" alt="logo"/></p>
|
12 |
|
13 |
|
14 |
+
[**Nature Chemical Biology Paper**](https://www.nature.com/articles/s41589-022-01131-2) | [**NeurIPS Paper**](https://datasets-benchmarks-proceedings.neurips.cc/paper/2021/hash/4c56ff4ce4aaf9573aa5dff913df997a-Abstract-round1.html) | [**GitHub**](https://github.com/mims-harvard/TDC) | [**Leaderboards**](https://tdcommons.ai/benchmark/overview/) | [**Datasets**](https://tdcommons.ai/overview/)
|
15 |
|
16 |
+
[![Twitter](https://img.shields.io/twitter/url/https/twitter.com/cloudposse.svg?style=social&label=Follow%20%40ProjectTDC)](https://twitter.com/ProjectTDC)
|
17 |
|
18 |
+
Artificial intelligence is poised to enable breakthroughs and discoveries in therapeutic science. Therapeutics Data Commons is a global initiative to access and evaluate artificial intelligence capability across therapeutic modalities and stages of discovery. The Commons is a resource with AI-solvable tasks, AI-ready datasets, and curated benchmarks, providing an ecosystem of tools, libraries, leaderboards, and community resources, including data functions, strategies for systematic model evaluation, meaningful data splits, data processors, and molecule generation oracles.
|
19 |
|
20 |
+
<div class="grid lg:grid-cols-3 gap-x-4 gap-y-7">
|
21 |
+
<a href="https://tdcommons.ai/" class="block overflow-hidden group">
|
22 |
+
<div
|
23 |
+
class="w-full h-40 object-cover mb-2 rounded-lg flex items-center justify-center bg-green-50"
|
24 |
+
>
|
25 |
+
<img alt="" src="https://tdcommons.ai/logonav.png" class="w-40" />
|
26 |
+
</div>
|
27 |
+
<div class="underline">Therapeutics Commons website</div>
|
28 |
+
</a>
|
29 |
+
<a
|
30 |
+
href="https://github.com/mims-harvard/TDC"
|
31 |
+
class="block overflow-hidden"
|
32 |
+
>
|
33 |
+
<div class="flex items-center h-40 bg-green-50 rounded-lg px-4 mb-2">
|
34 |
+
<pre
|
35 |
+
class="break-words leading-1 whitespace-pre-line text-xs text-gray-800">
|
36 |
+
from tdc.single_pred import ADME
|
37 |
+
data = ADME(name = 'HIA_Hou')
|
38 |
+
# split into train/val/test with scaffold split methods
|
39 |
+
split = data.get_split(method = 'scaffold')
|
40 |
+
# get the entire data in the various formats
|
41 |
+
data.get_data(format = 'df')
|
42 |
+
</pre>
|
43 |
+
</div>
|
44 |
+
<div class="underline">Retrieve AI tasks, data functions, model evaluators and benchmarks</div>
|
45 |
+
</a>
|
46 |
+
<a
|
47 |
+
href="https://huggingface.co/models?filter=tdc"
|
48 |
+
class="block overflow-hidden group"
|
49 |
+
>
|
50 |
+
<div
|
51 |
+
class="w-full h-40 mb-2 bg-gray-900 group-hover:bg-gray-850 rounded-lg flex items-start justify-start overflow-hidden"
|
52 |
+
>
|
53 |
+
<img
|
54 |
+
alt=""
|
55 |
+
src="/front/assets/promo/spacy_widget.jpeg"
|
56 |
+
class="w-full h-40 object-cover overflow-hidden"
|
57 |
+
/>
|
58 |
+
</div>
|
59 |
+
<div class="underline">Find all Therapeutics Commons models in the Hub</div>
|
60 |
+
</a>
|
61 |
+
</div>
|
62 |
+
<p>
|
63 |
+
More information: <a href="https://join.slack.com/t/pytdc/shared_invite/zt-x0ujg5v6-zwtQZt83fhRdgrYjXRFz5g" class="underline">Therapeutics Commons Slack Workspace</a>, <a href="https://tdcommons.ai/news/" class="underline">Release News</a>
|
64 |
+
</p>
|