-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Method Spatial-MGCN #212
base: main
Are you sure you want to change the base?
Method Spatial-MGCN #212
Conversation
method/Spatial-mgcn/Spatial-mgcn.yml
Outdated
- torch_geometric==2.1.0 | ||
- torch_sparse==0.6.15 | ||
- torch_scatter==2.0.9 | ||
- git+https://github.com/cs-wangbo/Spatial-MGCN@cf4412df6db6276e0c8a3f036ff0b1661adfdb35 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If it can be installed via pip why is the repo cloned during the run?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It cannot be installed via pip. I updated the yml
method/Spatial-mgcn/Spatial-mgcn.py
Outdated
|
||
# Normalize data: min_cells, calculate HVG and scale | ||
sc.pp.filter_genes(adata, min_cells=100) | ||
sc.pp.highly_variable_genes(adata, flavor="seurat_v3", n_top_genes=config["fdim"]) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is there a reason not to use existing feature selection?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I changed it to the existing feature selection now. But I left their feature selection as comments to make it easier to compare the performance of both ways.
config/config_1.json
with hyperparameters for DLPFCCALC_ARI
toTrue
inSpatial-mgcn.py
.CALC_ARI = True
.