bowang-lab / scGPT

https://scgpt.readthedocs.io/en/latest/
MIT License
916 stars 165 forks source link

module "datasets" not found #202

Open RYY0722 opened 1 month ago

RYY0722 commented 1 month ago

Hi, thanks a lot for the great work! It seems that the data module is missing, and there is module import related to this. https://github.com/bowang-lab/scGPT/blob/bc8939504fc62dd617360618a840ca9b67419b5a/scgpt/scbank/databank.py#L10

I cannot find a file called datasets.py with functions load_data and Dataset Is there anything missing? Thanks a lot!

manthan0227 commented 1 month ago

datasets is huggingface library. Datasets is a library for easily accessing and sharing datasets for Audio, Computer Vision, and Natural Language Processing (NLP) tasks. It is used to load dataset in a single line of code.

RYY0722 commented 1 month ago

Thanks a lot!!!!