(self, gmeta)
| 30 | self.preprocess_feature_idx(gmeta) |
| 31 | |
| 32 | def preprocess_feature_idx(self, gmeta): |
| 33 | expend_list(self.dense, gmeta.node_feature_maxnum['dense']) |
| 34 | expend_list(self.sparse, gmeta.node_feature_maxnum['sparse']) |
| 35 | expend_list(self.binary, gmeta.node_feature_maxnum['binary']) |
| 36 | |
| 37 | def set_feature(self, feature_type, value, feature_idx): |
| 38 | if feature_type == "dense": |