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