13 lines
285 B
Python
13 lines
285 B
Python
"""
|
|
Sample dataset module
|
|
"""
|
|
from .base_dataset import BaseDataset
|
|
|
|
class SamplePointDataset(BaseDataset):
|
|
"""
|
|
This class extends the BaseDataset to handle physical datasets
|
|
composed of only input points.
|
|
"""
|
|
data_type = 'physics'
|
|
__slots__ = ['input_points']
|