mirror of
https://github.com/NicolasBohn/NexQuant.git
synced 2026-07-27 23:47:46 +00:00
Update factor_runner.py to ignore failed implementation (#514)
This commit is contained in:
@@ -135,7 +135,7 @@ class QlibFactorRunner(CachedRunner[QlibFactorExperiment]):
|
||||
for exp in exp_or_list:
|
||||
# Iterate over sub-implementations and execute them to get each factor data
|
||||
message_and_df_list = multiprocessing_wrapper(
|
||||
[(implementation.execute, ("All",)) for implementation in exp.sub_workspace_list],
|
||||
[(implementation.execute, ("All",)) for implementation in exp.sub_workspace_list if implementation],
|
||||
n=RD_AGENT_SETTINGS.multi_proc_n,
|
||||
)
|
||||
for message, df in message_and_df_list:
|
||||
|
||||
Reference in New Issue
Block a user