Reinforcement Learning
PyTorch
jat
custom_code
File size: 579 Bytes
086c686
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
---
datasets: regent-research/regent-subset-of-jat-dataset-tokenized
model_name: regent-research/regent-medium-embeddings
pipeline_tag: reinforcement-learning
tags:
- reinforcement-learning
---

# Model Card for REGENT: A Retrieval-Augmented Generalist Agent

### Model Sources

- **Repository:** https://github.com/regent-research/regent

## How to Get Started with the Model

Use the code below to get started with the model.

```python
from transformers import AutoModelForCausalLM

model = AutoModelForCausalLM.from_pretrained("regent-research/regent-medium-embeddings")
```