UNPKG

@huggingface/transformers

Version:

State-of-the-art Machine Learning for the web. Run 🤗 Transformers directly in your browser, with no need for a server!

14 lines (10 loc) • 428 B
import { PreTrainedModel } from '../modeling_utils.js'; /** * The bare Gemma Model outputting raw hidden-states without any specific head on top. */ export class GemmaPreTrainedModel extends PreTrainedModel {} /** * The bare Gemma Model outputting raw hidden-states without any specific head on top. */ export class GemmaModel extends GemmaPreTrainedModel {} export class GemmaForCausalLM extends GemmaPreTrainedModel {}