Skip to content

graphchem.datasets.load_ysi

loads yield sooting index data

Returns:

Type Description
Tuple[Union[List[str], torch.tensor]]

Tuple[Union[List[str], 'torch.tensor']]: (SMILES, YSI values)

Source code in graphchem/datasets/sets.py
76
77
78
79
80
81
82
83
def load_ysi() -> Tuple[Union[List[str], 'torch.tensor']]:
    """ loads yield sooting index data

    Returns:
        Tuple[Union[List[str], 'torch.tensor']]: (SMILES, YSI values)
    """

    return _load_set('ysi')