Dataset Viewer

The dataset viewer is not available because its heuristics could not detect any supported data files. You can try uploading some data files, or configuring the data files location manually.

YAML Metadata Warning: The task_categories "biology" is not in the official list: text-classification, token-classification, table-question-answering, question-answering, zero-shot-classification, translation, summarization, feature-extraction, text-generation, fill-mask, sentence-similarity, text-to-speech, text-to-audio, automatic-speech-recognition, audio-to-audio, audio-classification, audio-text-to-text, voice-activity-detection, depth-estimation, image-classification, object-detection, image-segmentation, text-to-image, image-to-text, image-to-image, image-to-video, unconditional-image-generation, video-classification, reinforcement-learning, robotics, tabular-classification, tabular-regression, tabular-to-text, table-to-text, multiple-choice, text-ranking, text-retrieval, time-series-forecasting, text-to-video, image-text-to-text, image-text-to-image, image-text-to-video, visual-question-answering, document-question-answering, zero-shot-image-classification, graph-ml, mask-generation, zero-shot-object-detection, text-to-3d, image-to-3d, image-feature-extraction, video-text-to-text, keypoint-detection, visual-document-retrieval, any-to-any, video-to-video, other

scLightGAT Data

This repository contains the training and testing datasets for scLightGAT: A range-constrained Graph Attention Network for single-cell clustering and annotation.

These files are structured to be compatible with the scLightGAT project.

Dataset Structure

The dataset contains processed .h5ad files organized for the scLightGAT pipelines.

  • Integrated_training/: Contains train.h5ad, the large-scale reference training set used for the DVAE and GAT models.
  • Independent_testing/: Contains independent datasets used for benchmarking and inference (e.g., sapiens_full, lung_full, GSE115978, etc.).
  • caf.data/: Additional data specific to Cancer-Associated Fibroblasts (CAF) experiments.

Directory Layout

When downloaded, the data should follow this structure to work with run_sclight.gat.sh:

scLightGAT_data/
β”œβ”€β”€ Integrated_training/
β”‚   └── train.h5ad
β”œβ”€β”€ Independent_testing/
β”‚   β”œβ”€β”€ GSE115978.h5ad
β”‚   β”œβ”€β”€ GSE123139.h5ad
β”‚   β”œβ”€β”€ GSE153935.h5ad
β”‚   β”œβ”€β”€ GSE166555.h5ad
β”‚   β”œβ”€β”€ Zhengsorted.h5ad
β”‚   β”œβ”€β”€ lung_full.h5ad
β”‚   └── sapiens_full.h5ad
└── caf.data/
    β”œβ”€β”€ caf_train.h5ad
    └── caf_test.h5ad

How to Use

1. Automated Download (Recommended)

You can use the download_hf_data.sh script provided in the scLightGAT repository to automatically fetch and place this data.

2. Manual Download

If you are manually setting up the project, download all files from this repository and place them in a directory named scLightGAT_data inside your project's data/ folder.

Project Structure Example:

scLightGAT_Project/
β”œβ”€β”€ scLightGAT.main/       # Code repository
β”‚   β”œβ”€β”€ run_sclight.gat.sh
β”‚   └── ...
└── data/
    └── scLightGAT_data/   # This dataset (Downloaded here)
        β”œβ”€β”€ Integrated_training/
        β”œβ”€β”€ Independent_testing/
        └── caf.data/

Python Access

You can also access the files directly via huggingface_hub:

from huggingface_hub import hf_hub_download
import scanpy as sc

# Example: Load the training data
file_path = hf_hub_download(
    repo_id="Alfiechuang/scLightGAT", 
    filename="Integrated_training/train.h5ad",
    repo_type="dataset"
)
adata = sc.read_h5ad(file_path)
Downloads last month
1