-
How can I use MODNet model without
I want to use my DataFrame(csv file) as MODData. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi @mhlee216, if I am understanding your problem correctly, I think you can simply set We could certainly provide a nicer interface for this workflow, but the feature selection aspect is a big part of the MODNet approach. |
Beta Was this translation helpful? Give feedback.
Hi @mhlee216, if I am understanding your problem correctly, I think you can simply set
md.optimal_features
(notget_optimal_descriptors
) with the column names of the descriptors you want to use within your dataset. If you are doing multi-target learning you may also need to setmd.optimal_features_by_target
to a dictionary with structure{target: [md.optimal_features]} for target in targets}
.We could certainly provide a nicer interface for this workflow, but the feature selection aspect is a big part of the MODNet approach.