10000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Thank you for your great work. how to transformer raw_rna_data/combine/brca to pt file? combine as follows https://github.com/mahmoodlab/SurvPath/tree/main/datasets_csv/raw_rna_data/combine/brca
raw = torch.tensor([ 0.9115,-1.1811,-1.8836,4.2518,7.7066,1.4756,8.2921,1.0847,1.7097... ], dtype=torch.float32)
expected = torch.tensor([ 0.4037, 0.3137, 0.4114, 0.4151, 0.7911, 0.1754, 0.7278, 0.2572, 0.5961, ... ], dtype=torch.float32)
when i use Min-Max Normalization method, the result don't equal expected as follows,could you help me?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Thank you for your great work.
how to transformer raw_rna_data/combine/brca to pt file?
combine as follows https://github.com/mahmoodlab/SurvPath/tree/main/datasets_csv/raw_rna_data/combine/brca
raw data for example TCGA-WT-AB41 from above csv file
raw = torch.tensor([
0.9115,-1.1811,-1.8836,4.2518,7.7066,1.4756,8.2921,1.0847,1.7097...
], dtype=torch.float32)
expeced data
expected = torch.tensor([
0.4037, 0.3137, 0.4114, 0.4151, 0.7911, 0.1754, 0.7278, 0.2572, 0.5961,
...
], dtype=torch.float32)
when i use Min-Max Normalization method, the result don't equal expected as follows,could you help me?
The text was updated successfully, but these errors were encountered: