mirror of
https://github.com/NicolasBohn/NexQuant.git
synced 2026-07-27 23:47:46 +00:00
feat: filter feature which is high correlation to former implemented features (#145)
* filter feature which is high correlation to former implemented features * use multiprocessing to calculate IC and some minor fix
This commit is contained in:
@@ -611,7 +611,6 @@ class FactorEvaluatorForCoder(FactorEvaluator):
|
||||
value_feedback=factor_feedback.factor_value_feedback,
|
||||
code_feedback=factor_feedback.code_feedback,
|
||||
)
|
||||
logger.info(factor_feedback.final_decision)
|
||||
return factor_feedback
|
||||
|
||||
|
||||
|
||||
@@ -44,7 +44,7 @@ class FactorImplementSettings(BaseSettings):
|
||||
max_loop: int = 10
|
||||
|
||||
knowledge_base_path: Union[str, None] = None
|
||||
new_knowledge_base_path: Union[str, None] = None
|
||||
new_knowledge_base_path: Union[str, None] = knowledge_base_path
|
||||
|
||||
python_bin: str = "python"
|
||||
|
||||
|
||||
@@ -70,7 +70,6 @@ class FactorFBWorkspace(FBWorkspace):
|
||||
) -> None:
|
||||
super().__init__(*args, **kwargs)
|
||||
self.executed_factor_value_dataframe = executed_factor_value_dataframe
|
||||
self.logger = logger
|
||||
self.raise_exception = raise_exception
|
||||
|
||||
@staticmethod
|
||||
|
||||
Reference in New Issue
Block a user