| 48 | return feature_space_.Index(f); |
| 49 | } |
| 50 | int IntFeatureMap::MapFeature(const INT_FEATURE_STRUCT& f) const { |
| 51 | return feature_map_.SparseToCompact(feature_space_.Index(f)); |
| 52 | } |
| 53 | int IntFeatureMap::MapIndexFeature(int index_feature) const { |
| 54 | return feature_map_.SparseToCompact(index_feature); |
| 55 | } |
nothing calls this directly
no test coverage detected