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

com.etsy.conjecture.model.MIRAOptimizer Maven / Gradle / Ivy

There is a newer version: 0.2.3
Show newest version
package com.etsy.conjecture.model;

import com.etsy.conjecture.data.*;

/**
 *  MIRA takes care of the full update. This is basically just a passthrough to
 *  the MIRA getGradients.
 */
public class MIRAOptimizer extends SGDOptimizer {

    @Override
    public StringKeyedVector getUpdate(LabeledInstance instance) {
        return model.getGradients(instance);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy