@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) • 435 B
JavaScript
import { PreTrainedModel } from '../modeling_utils.js';
/**
* The bare Gemma2 Model outputting raw hidden-states without any specific head on top.
*/
export class Gemma2PreTrainedModel extends PreTrainedModel {}
/**
* The bare Gemma2 Model outputting raw hidden-states without any specific head on top.
*/
export class Gemma2Model extends Gemma2PreTrainedModel {}
export class Gemma2ForCausalLM extends Gemma2PreTrainedModel {}