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

com.litongjava.whipser.cpp.java.model.WhisperTokenData Maven / Gradle / Ivy

package com.litongjava.whipser.cpp.java.model;


import com.sun.jna.Structure;

import java.util.Arrays;
import java.util.List;

/**
 * Structure representing token data.
 */
public class WhisperTokenData extends Structure {

    /** Token ID. */
    public int id;

    /** Forced timestamp token ID. */
    public int tid;

    /** Probability of the token. */
    public float p;

    /** Log probability of the token. */
    public float plog;

    /** Probability of the timestamp token. */
    public float pt;

    /** Sum of probabilities of all timestamp tokens. */
    public float ptsum;

    /**
     * Start time of the token (token-level timestamp data).
     * Do not use if you haven't computed token-level timestamps.
     */
    public long t0;

    /**
     * End time of the token (token-level timestamp data).
     * Do not use if you haven't computed token-level timestamps.
     */
    public long t1;

    /** Voice length of the token. */
    public float vlen;

    @Override
    protected List getFieldOrder() {
        return Arrays.asList("id", "tid", "p", "plog", "pt", "ptsum", "t0", "t1", "vlen");
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy