Skip to content

Instantly share code, notes, and snippets.

@frogermcs
Created May 21, 2019 18:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save frogermcs/0383ed35002066023d7ae51318c4dce4 to your computer and use it in GitHub Desktop.
Save frogermcs/0383ed35002066023d7ae51318c4dce4 to your computer and use it in GitHub Desktop.
public abstract class ModelConfig {
static final int FLOAT_BYTES_COUNT = 4;
public abstract String getModelFilename();
public abstract String getLabelsFilename();
public abstract int getInputWidth();
public abstract int getInputHeight();
public abstract int getInputSize();
public abstract int getChannelsCount();
public abstract float getMean();
public abstract float getStd();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment