├── LICENSE ├── README.md ├── evaluation ├── Performance_of_pseudo-cell_generation_expr.py ├── Performance_of_pseudo-cell_generation_lev.py ├── Performance_of_random_cell_generation.py ├── README.md └── performance_of_classification.py ├── figure ├── example1.jpg ├── example2.jpg ├── example3.jpg ├── example4.jpg ├── intro.gif ├── logo.png └── overview.jpg ├── finetune.py ├── inference_batch.py ├── inference_one.py ├── inference_web.py ├── raw_data └── README.md ├── vocabulary_adaptation.py └── workflow_data ├── GSE117872_to_json.py ├── GSE149383_to_json.py ├── README.md ├── extract_gene_generation.py ├── merge.py ├── mouse_to_json.py ├── sentence_to_experssion.py ├── split.py ├── src ├── __init__.py ├── csdata.py ├── prompts.py └── utils.py └── transform.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zjunlp/ChatCell/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zjunlp/ChatCell/HEAD/README.md -------------------------------------------------------------------------------- /evaluation/Performance_of_pseudo-cell_generation_expr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zjunlp/ChatCell/HEAD/evaluation/Performance_of_pseudo-cell_generation_expr.py -------------------------------------------------------------------------------- /evaluation/Performance_of_pseudo-cell_generation_lev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zjunlp/ChatCell/HEAD/evaluation/Performance_of_pseudo-cell_generation_lev.py -------------------------------------------------------------------------------- /evaluation/Performance_of_random_cell_generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zjunlp/ChatCell/HEAD/evaluation/Performance_of_random_cell_generation.py -------------------------------------------------------------------------------- /evaluation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zjunlp/ChatCell/HEAD/evaluation/README.md -------------------------------------------------------------------------------- /evaluation/performance_of_classification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zjunlp/ChatCell/HEAD/evaluation/performance_of_classification.py -------------------------------------------------------------------------------- /figure/example1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zjunlp/ChatCell/HEAD/figure/example1.jpg -------------------------------------------------------------------------------- /figure/example2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zjunlp/ChatCell/HEAD/figure/example2.jpg -------------------------------------------------------------------------------- /figure/example3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zjunlp/ChatCell/HEAD/figure/example3.jpg -------------------------------------------------------------------------------- /figure/example4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zjunlp/ChatCell/HEAD/figure/example4.jpg -------------------------------------------------------------------------------- /figure/intro.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zjunlp/ChatCell/HEAD/figure/intro.gif -------------------------------------------------------------------------------- /figure/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zjunlp/ChatCell/HEAD/figure/logo.png -------------------------------------------------------------------------------- /figure/overview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zjunlp/ChatCell/HEAD/figure/overview.jpg -------------------------------------------------------------------------------- /finetune.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zjunlp/ChatCell/HEAD/finetune.py -------------------------------------------------------------------------------- /inference_batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zjunlp/ChatCell/HEAD/inference_batch.py -------------------------------------------------------------------------------- /inference_one.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zjunlp/ChatCell/HEAD/inference_one.py -------------------------------------------------------------------------------- /inference_web.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zjunlp/ChatCell/HEAD/inference_web.py -------------------------------------------------------------------------------- /raw_data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zjunlp/ChatCell/HEAD/raw_data/README.md -------------------------------------------------------------------------------- /vocabulary_adaptation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zjunlp/ChatCell/HEAD/vocabulary_adaptation.py -------------------------------------------------------------------------------- /workflow_data/GSE117872_to_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zjunlp/ChatCell/HEAD/workflow_data/GSE117872_to_json.py -------------------------------------------------------------------------------- /workflow_data/GSE149383_to_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zjunlp/ChatCell/HEAD/workflow_data/GSE149383_to_json.py -------------------------------------------------------------------------------- /workflow_data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zjunlp/ChatCell/HEAD/workflow_data/README.md -------------------------------------------------------------------------------- /workflow_data/extract_gene_generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zjunlp/ChatCell/HEAD/workflow_data/extract_gene_generation.py -------------------------------------------------------------------------------- /workflow_data/merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zjunlp/ChatCell/HEAD/workflow_data/merge.py -------------------------------------------------------------------------------- /workflow_data/mouse_to_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zjunlp/ChatCell/HEAD/workflow_data/mouse_to_json.py -------------------------------------------------------------------------------- /workflow_data/sentence_to_experssion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zjunlp/ChatCell/HEAD/workflow_data/sentence_to_experssion.py -------------------------------------------------------------------------------- /workflow_data/split.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zjunlp/ChatCell/HEAD/workflow_data/split.py -------------------------------------------------------------------------------- /workflow_data/src/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zjunlp/ChatCell/HEAD/workflow_data/src/__init__.py -------------------------------------------------------------------------------- /workflow_data/src/csdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zjunlp/ChatCell/HEAD/workflow_data/src/csdata.py -------------------------------------------------------------------------------- /workflow_data/src/prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zjunlp/ChatCell/HEAD/workflow_data/src/prompts.py -------------------------------------------------------------------------------- /workflow_data/src/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zjunlp/ChatCell/HEAD/workflow_data/src/utils.py -------------------------------------------------------------------------------- /workflow_data/transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zjunlp/ChatCell/HEAD/workflow_data/transform.py --------------------------------------------------------------------------------