| 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 | } |
| 56 | INT_FEATURE_STRUCT IntFeatureMap::InverseIndexFeature(int index_feature) const { |
| 57 | return feature_space_.PositionFromIndex(index_feature); |
| 58 | } |
nothing calls this directly
no test coverage detected