欢迎来到尧图网

客户服务 关于我们

您的位置:首页 > 文旅 > 手游 > PeptidesFunctionalDataset(helpers.dataset_classes文件中的lrgb.py)

PeptidesFunctionalDataset(helpers.dataset_classes文件中的lrgb.py)

2024/10/23 16:42:40 来源:https://blog.csdn.net/sinat_41942180/article/details/143023682  浏览:    关键词:PeptidesFunctionalDataset(helpers.dataset_classes文件中的lrgb.py)

任务类型:多任务二分类任务
用途:`PeptidesFunctionalDataset` 处理肽的分子图,并为肽的功能类别进行10种多任务二分类,任务目标是根据肽的分子图预测它们是否属于特定的功能类别(如抗癌、抗病毒等)。

from helpers.dataset_classes.lrgb import PeptidesFunctionalDataset

'''
Adapted from https://github.com/vijaydwivedi75/lrgb.git
https://github.com/HySonLab/Multires-Graph-Transformer.git
https://github.com/hamed1375/Exphormer.git
'''
import hashlib
import os.path as osp
import pickle
import shutilimport pandas as pd
import torch
from ogb.utils import smiles2graph
from ogb.utils.torch_util import replace_numpy_with_torchtensor
from ogb.utils.url import decide_download
from torch_geometric.data import (InMemoryDataset, Data, download_url,extract_zip)
from tqdm import tqdm
import osclass PeptidesFunctionalDataset(InMemoryDataset):def __init__(self, root='data', smiles2graph=smiles2graph,transform=None, pre_transform=None):"""PyG dataset of 15,535 peptides represented as their molecular graph(SMILES) with 10-way multi-task binary classification of theirfunctional classes.The goal is use the molecular representation of peptides insteadof amino acid sequence representation ('peptide_seq' field in the file,provided for possible baseline benchmarking but not used here) to testGNNs' representation capability.The 10 classes represent the following functional classes (in order):['antifungal', 'cell_cell_communication', 'anticancer','drug_delivery_vehicle', 'antimicrobial', 'antiviral','antihypertensive', 'antibacterial', 'antiparasitic', 'toxic']Args:root (string): Root directory where the dataset should be saved.smiles2graph (callable): A callable function that converts a SMILESstring into a graph object. We use the OGB featurization.* The default smiles2graph requires rdkit to be installed *"""self.original_root = rootself.smiles2graph = smiles2graphself.folder = osp.join(root, 'peptides-functional')self.url = 'https://www.dropbox.com/s/ol2v01usvaxbsr8/peptide_multi_class_dataset.csv.gz?dl=1'self.version = '701eb743e899f4d793f0e13c8fa5a1b4'  # MD5 hash of the intended dataset fileself.url_stratified_split = 'https://www.dropbox.com/s/j4zcnx2eipuo0xz/splits_random_stratified_peptide.pickle?dl=1'self.md5sum_stratified_split = '5a0114bdadc80b94fc7ae974f13ef061'# Check version and update if necessary.release_tag = osp.join(self.folder, self.version)if osp.isdir(self.folder) and (not osp.exists(release_tag)):print(f"{self.__class__.__name__} has been updated.")if input("Will you update the dataset now? (y/N)\n").lower() == 'y':shutil.rmtree(self.folder)super().__init__(self.folder, transform, pre_transform)self.data, self.slices = torch.load(self.processed_paths[0])@propertydef raw_file_names(self):return 'peptide_multi_class_dataset.csv.gz'@propertydef processed_file_names(self):return 'geometric_data_processed.pt'def _md5sum(self, path):hash_md5 = hashlib.md5()with open(path, 'rb') as f:buffer = f.read()hash_md5.update(buffer)return hash_md5.hexdigest()def download(self):if decide_download(self.url):path = download_url(self.url, self.raw_dir)# Save to disk the MD5 hash of the downloaded file.hash = self._md5sum(path)if hash != self.version:

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com