mirror of
https://github.com/webclinic017/drift.git
synced 2026-08-14 03:18:06 +00:00
chore(Linter): reformatted code with black (#211)
* chore(Linter): reformatted code with black * Create black.yaml
This commit is contained in:
+5
-2
@@ -19,6 +19,7 @@ class TrainingOutcome:
|
||||
stats: Optional[Stats]
|
||||
model_over_time: ModelOverTime
|
||||
|
||||
|
||||
@dataclass
|
||||
class BetSizingWithMetaOutcome:
|
||||
model_id: str
|
||||
@@ -27,11 +28,13 @@ class BetSizingWithMetaOutcome:
|
||||
weights: WeightsSeries
|
||||
stats: Optional[Stats]
|
||||
|
||||
|
||||
@dataclass
|
||||
class DirectionalTrainingOutcome:
|
||||
training: TrainingOutcome
|
||||
transformations: TransformationsOverTime
|
||||
|
||||
|
||||
|
||||
@dataclass
|
||||
class PipelineOutcome:
|
||||
directional_training: DirectionalTrainingOutcome
|
||||
@@ -41,4 +44,4 @@ class PipelineOutcome:
|
||||
return self.bet_sizing.weights
|
||||
|
||||
def get_output_stats(self) -> Stats:
|
||||
return self.bet_sizing.stats
|
||||
return self.bet_sizing.stats
|
||||
|
||||
Reference in New Issue
Block a user