proactive strategy exp

This commit is contained in:
2023-06-05 16:01:20 +08:00
parent bc3c600be0
commit b55a313c95
11 changed files with 39 additions and 11 deletions

1
orm.py
View File

@@ -63,6 +63,7 @@ class Experiment(Base):
cap_limit = Column(Integer, nullable=False)
diff_new_conn = Column(DECIMAL(8, 4), nullable=False)
diff_remove = Column(DECIMAL(8, 4), nullable=False)
proactive_ratio = Column(DECIMAL(8, 4), nullable=False)
sample = relationship(
'Sample', back_populates='experiment', lazy='dynamic')