Update README.md
Browse files
README.md
CHANGED
@@ -18,7 +18,7 @@ configs:
|
|
18 |
path: data/train-*
|
19 |
---
|
20 |
|
21 |
-
To accompany OpenPhenom, Recursion is releasing the **RxRx3-core** dataset, a challenge dataset in phenomics optimized for the research community.
|
22 |
RxRx3-core includes labeled images of 735 genetic knockouts and 1,674 small-molecule perturbations drawn from the [RxRx3 dataset](https://www.rxrx.ai/rxrx3),
|
23 |
image embeddings computed with [OpenPhenom](https://huggingface.co/recursionpharma/OpenPhenom), and associations between the included small molecules and genes.
|
24 |
The dataset contains 6-channel Cell Painting images and associated embeddings from 222,601 wells but is less than 18Gb, making it incredibly accessible to the research community.
|
@@ -27,6 +27,10 @@ Mapping the mechanisms by which drugs exert their actions is an important challe
|
|
27 |
We are excited to release the first dataset of this scale probing concentration-response along with a benchmark and model to enable the research community to
|
28 |
rapidly advance this space.
|
29 |
|
|
|
|
|
|
|
|
|
30 |
Loading the RxRx3-core image dataset
|
31 |
```
|
32 |
from datasets import load_dataset
|
@@ -43,4 +47,3 @@ file_path_embs = hf_hub_download("recursionpharma/rxrx3-core", filename="OpenPhe
|
|
43 |
open_phenom_embeddings = pd.read_parquet(file_path_embs)
|
44 |
rxrx3_core_metadata = pd.read_csv(file_path_metadata)
|
45 |
```
|
46 |
-
Benchmarking code for this dataset is provided in the [EFAAR benchmarking repo](https://github.com/recursionpharma/EFAAR_benchmarking/tree/trunk/RxRx3-core_benchmarks).
|
|
|
18 |
path: data/train-*
|
19 |
---
|
20 |
|
21 |
+
To accompany OpenPhenom, Recursion is releasing the [**RxRx3-core**](https://arxiv.org/abs/2503.20158) dataset, a challenge dataset in phenomics optimized for the research community.
|
22 |
RxRx3-core includes labeled images of 735 genetic knockouts and 1,674 small-molecule perturbations drawn from the [RxRx3 dataset](https://www.rxrx.ai/rxrx3),
|
23 |
image embeddings computed with [OpenPhenom](https://huggingface.co/recursionpharma/OpenPhenom), and associations between the included small molecules and genes.
|
24 |
The dataset contains 6-channel Cell Painting images and associated embeddings from 222,601 wells but is less than 18Gb, making it incredibly accessible to the research community.
|
|
|
27 |
We are excited to release the first dataset of this scale probing concentration-response along with a benchmark and model to enable the research community to
|
28 |
rapidly advance this space.
|
29 |
|
30 |
+
Paper published at LMRL Workshop at ICLR 2025 [RxRx3-core: Benchmarking drug-target interactions in High-Content Microscopy](https://arxiv.org/abs/2503.20158).
|
31 |
+
Benchmarking code for this dataset is provided in the [EFAAR benchmarking repo](https://github.com/recursionpharma/EFAAR_benchmarking/tree/trunk/RxRx3-core_benchmarks) and [Polaris](https://polarishub.io/benchmarks/recursion/rxrx-compound-gene-activity-benchmark).
|
32 |
+
|
33 |
+
---
|
34 |
Loading the RxRx3-core image dataset
|
35 |
```
|
36 |
from datasets import load_dataset
|
|
|
47 |
open_phenom_embeddings = pd.read_parquet(file_path_embs)
|
48 |
rxrx3_core_metadata = pd.read_csv(file_path_metadata)
|
49 |
```
|
|