@huggingface/transformers
Version:
State-of-the-art Machine Learning for the web. Run 🤗 Transformers directly in your browser, with no need for a server!
11 lines (7 loc) • 345 B
JavaScript
import { PreTrainedModel } from '../modeling_utils.js';
/**
* The bare Mistral Model outputting raw hidden-states without any specific head on top.
*/
export class MistralPreTrainedModel extends PreTrainedModel {}
export class MistralModel extends MistralPreTrainedModel {}
export class MistralForCausalLM extends MistralPreTrainedModel {}