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

water.bindings.pojos.Word2VecModelV3 Maven / Gradle / Ivy

There is a newer version: 3.8.2.11
Show newest version
package water.bindings.pojos;

import com.google.gson.Gson;

public class Word2VecModelV3 extends ModelSchema {
    /* INHERITED: The build parameters for the model (e.g. K for KMeans). 
    public Word2VecParametersV3 parameters = null;
     */

    /* INHERITED: The build output for the model (e.g. the cluster centers for KMeans). 
    public Word2VecModelOutputV3 output = null;
     */

    /* INHERITED: Compatible frames, if requested 
    public String[] compatible_frames = null;
     */

    /* INHERITED: Checksum for all the things that go into building the Model. 
    public long checksum = 0L;
     */

    /* INHERITED: Model key 
    public ModelKeyV3 model_id = null;
     */

    /* INHERITED: The algo name for this Model. 
    public String algo = "";
     */

    /* INHERITED: The pretty algo name for this Model (e.g., Generalized Linear Model, rather than GLM). 
    public String algo_full_name = "";
     */

    /* INHERITED: The response column name for this Model (if applicable). Is null otherwise. 
    public String response_column_name = "";
     */

    /* INHERITED: The Model's training frame key 
    public FrameKeyV3 data_frame = null;
     */

    /* INHERITED: Timestamp for when this model was completed 
    public long timestamp = 0L;
     */

    public Word2VecModelV3() {
        parameters = null;
        output = null;
        compatible_frames = null;
        checksum = 0L;
        model_id = null;
        algo = "";
        algo_full_name = "";
        response_column_name = "";
        data_frame = null;
        timestamp = 0L;
    }

    /** Return the contents of this object as a JSON String. */
    @Override
    public String toString() {
        return new Gson().toJson(this);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy