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!

10 lines (7 loc) • 427 B
import { PreTrainedModel } from '../modeling_utils.js'; export class DecisionTransformerPreTrainedModel extends PreTrainedModel {} /** * The model builds upon the GPT2 architecture to perform autoregressive prediction of actions in an offline RL setting. * Refer to the paper for more details: https://huggingface.co/papers/2106.01345 */ export class DecisionTransformerModel extends DecisionTransformerPreTrainedModel {}