rxrx3-core
收藏资源简介:
RxRx3-core数据集是Recursion为研究社区优化的表型组学挑战数据集。它包括来自RxRx3数据集的735个基因敲除和1,674个小分子扰动的标记图像,以及使用OpenPhenom计算的图像嵌入和包含的小分子与基因之间的关联。数据集包含6通道的细胞绘画图像和来自222,601个孔的关联嵌入,但大小不到18Gb,非常适合研究社区使用。
The RxRx3-core dataset is a phenomics challenge dataset optimized by Recursion for the research community. It includes labeled images of 735 gene knockouts and 1,674 small molecule perturbations sourced from the RxRx3 dataset, as well as image embeddings computed using OpenPhenom and the associations between the included small molecules and genes. The dataset contains 6-channel Cell Painting images and associated embeddings from 222,601 wells, with a total size of less than 18 Gb, making it highly suitable for use by the research community.
RxRx3-core 数据集概述
数据集信息
- 特征:
__key__:字符串类型jp2:图像类型
- 分割:
train:包含 1,335,606 个样本,大小为 17,489,993,120.108 字节
- 下载大小:17,390,577,507 字节
- 数据集大小:17,489,993,120.108 字节
数据集配置
- 配置名称:
default- 数据文件路径:
data/train-*
- 数据文件路径:
数据集描述
- RxRx3-core 是一个为研究社区优化的表型学挑战数据集。
- 包含 735 个基因敲除和 1,674 个小分子扰动的标记图像。
- 图像来自 RxRx3 数据集。
- 图像嵌入由 OpenPhenom 计算。
- 数据集包含 6 通道的 Cell Painting 图像和相关的嵌入,来自 222,601 个孔,总大小小于 18GB。
数据加载
-
加载 RxRx3-core 图像数据集: python from datasets import load_dataset rxrx3_core = load_dataset("recursionpharma/rxrx3-core")
-
加载 OpenPhenom 嵌入和元数据: python from huggingface_hub import hf_hub_download import pandas as pd
file_path_metadata = hf_hub_download("recursionpharma/rxrx3-core", filename="metadata_rxrx3_core.csv", repo_type="dataset") file_path_embs = hf_hub_download("recursionpharma/rxrx3-core", filename="OpenPhenom_rxrx3_core_embeddings.parquet", repo_type="dataset")
open_phenom_embeddings = pd.read_parquet(file_path_embs) rxrx3_core_metadata = pd.read_csv(file_path_metadata)
基准测试
- 基准测试代码提供在 EFAAR 基准测试仓库。




