src.fairreckitlib.data.ratings.convert_config
This module contains the convert configuration.
Classes:
ConvertConfig: convert configuration.
This program has been developed by students from the bachelor Computer Science at Utrecht University within the Software Project course. © Copyright Utrecht University (Department of Information and Computing Sciences)
1"""This module contains the convert configuration. 2 3Classes: 4 5 ConvertConfig: convert configuration. 6 7This program has been developed by students from the bachelor Computer Science at 8Utrecht University within the Software Project course. 9© Copyright Utrecht University (Department of Information and Computing Sciences) 10""" 11 12from dataclasses import dataclass 13 14from ...core.config.config_object import ObjectConfig 15 16 17@dataclass 18class ConvertConfig(ObjectConfig): 19 """Dataset rating conversion Configuration. 20 21 name: the name of the rating converter. 22 params: the parameters of the rating converter. 23 """
18@dataclass 19class ConvertConfig(ObjectConfig): 20 """Dataset rating conversion Configuration. 21 22 name: the name of the rating converter. 23 params: the parameters of the rating converter. 24 """
Dataset rating conversion Configuration.
name: the name of the rating converter. params: the parameters of the rating converter.