Skip to content

Commit

Permalink
add docstring in TournesolInput
Browse files Browse the repository at this point in the history
  • Loading branch information
amatissart committed Oct 31, 2024
1 parent 5f67fcd commit 06c0499
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions solidago/src/solidago/pipeline/inputs.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,18 @@


class TournesolInput(ABC):
"""
An abstract base class for handling input data of Solidago pipeline.
This class provides an interface for retrieving and processing comparison data,
user ratings, individual scores, and vouches.
Notes
-----
This is an abstract base class that must be subclassed and have its abstract
methods implemented to provide concrete data retrieval functionality.
"""

SCALING_CALIBRATION_MIN_TRUST_SCORE = 0.1
MAX_SCALING_CALIBRATION_USERS = 100

Expand Down

0 comments on commit 06c0499

Please sign in to comment.