All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.flink.ml.feature.tokenizer.Tokenizer Maven / Gradle / Ivy

/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.apache.flink.ml.feature.tokenizer;

import org.apache.flink.ml.api.Transformer;
import org.apache.flink.ml.param.Param;
import org.apache.flink.ml.util.ParamUtils;
import org.apache.flink.ml.util.ReadWriteUtils;
import org.apache.flink.table.api.Expressions;
import org.apache.flink.table.api.Table;
import org.apache.flink.table.api.bridge.java.StreamTableEnvironment;
import org.apache.flink.table.expressions.Expression;
import org.apache.flink.table.functions.ScalarFunction;
import org.apache.flink.util.Preconditions;

import java.io.IOException;
import java.util.HashMap;
import java.util.Map;

import static org.apache.flink.table.api.Expressions.$;

/**
 * A Transformer which converts the input string to lowercase and then splits it by white spaces.
 */
public class Tokenizer implements Transformer, TokenizerParams {
    private final Map, Object> paramMap = new HashMap<>();

    public Tokenizer() {
        ParamUtils.initializeMapWithDefaultValues(paramMap, this);
    }

    @Override
    public Table[] transform(Table... inputs) {
        Preconditions.checkArgument(inputs.length == 1);

        Expression tokenizerUdf =
                Expressions.call(TokenizerUdf.class, $(getInputCol())).as(getOutputCol());
        Table output = inputs[0].addColumns(tokenizerUdf);
        return new Table[] {output};
    }

    @Override
    public void save(String path) throws IOException {
        ReadWriteUtils.saveMetadata(this, path);
    }

    @Override
    public Map, Object> getParamMap() {
        return paramMap;
    }

    public static Tokenizer load(StreamTableEnvironment tEnv, String path) throws IOException {
        return ReadWriteUtils.loadStageParam(path);
    }

    /**
     * The main logic of {@link Tokenizer}, which converts the input string to an array of tokens.
     */
    public static class TokenizerUdf extends ScalarFunction {
        public String[] eval(String input) {
            return input.toLowerCase().split("\\s");
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy