Reinforcement Learning
PyTorch
jat
custom_code
regent-creators commited on
Commit
086c686
1 Parent(s): 1b00de7

Upload model card

Browse files
Files changed (1) hide show
  1. README.md +23 -0
README.md ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ datasets: regent-research/regent-subset-of-jat-dataset-tokenized
3
+ model_name: regent-research/regent-medium-embeddings
4
+ pipeline_tag: reinforcement-learning
5
+ tags:
6
+ - reinforcement-learning
7
+ ---
8
+
9
+ # Model Card for REGENT: A Retrieval-Augmented Generalist Agent
10
+
11
+ ### Model Sources
12
+
13
+ - **Repository:** https://github.com/regent-research/regent
14
+
15
+ ## How to Get Started with the Model
16
+
17
+ Use the code below to get started with the model.
18
+
19
+ ```python
20
+ from transformers import AutoModelForCausalLM
21
+
22
+ model = AutoModelForCausalLM.from_pretrained("regent-research/regent-medium-embeddings")
23
+ ```