init readme & config
Browse files- README.md +32 -0
- config.json +1 -1
README.md
ADDED
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
datasets:
|
3 |
+
- THUDM/AgentInstruct
|
4 |
+
---
|
5 |
+
|
6 |
+
## AgentLM-7B
|
7 |
+
|
8 |
+
|
9 |
+
<p align="center">
|
10 |
+
🤗 <a href="https://huggingface.co/datasets/THUDM/AgentInstruct" target="_blank">[Dataset] </a> • 💻 <a href="https://github.com/THUDM/AgentTuning" target="_blank">[Github Repo]</a> • 📌 <a href="https://THUDM.github.io/AgentTuning/" target="_blank">[Project Page]</a> • 📃 <a href="https://arxiv.org/abs/TODO" target="_blank">[Paper]</a>
|
11 |
+
</p>
|
12 |
+
|
13 |
+
**AgentTuning** represents the very first attempt to instruction-tune LLMs using interaction trajectories across multiple agent tasks. Evaluation results indicate that AgentTuning enables the agent capabilities of LLMs with robust generalization on unseen agent tasks while remaining good on general language abilities. We have open-sourced the AgentInstruct dataset and AgentLM.
|
14 |
+
|
15 |
+
## Models
|
16 |
+
|
17 |
+
**AgentLM** models are produced by mixed training on AgentInstruct dataset and ShareGPT dataset from Llama-2-chat models.
|
18 |
+
|
19 |
+
The models follow the conversation format of [Llama-2-chat](https://huggingface.co/blog/llama2#how-to-prompt-llama-2), with system prompt fixed as
|
20 |
+
|
21 |
+
```
|
22 |
+
You are a helpful, respectful and honest assistant.
|
23 |
+
```
|
24 |
+
|
25 |
+
7B, 13B, and 70B models are available on Huggingface model hub.
|
26 |
+
|
27 |
+
|Model|Huggingface Repo|
|
28 |
+
|---|---|
|
29 |
+
|AgentLM-7B| [🤗Huggingface Repo](https://huggingface.co/THUDM/agentlm-7b) |
|
30 |
+
|AgentLM-13B| [🤗Huggingface Repo](https://huggingface.co/THUDM/agentlm-13b) |
|
31 |
+
|AgentLM-70B| [🤗Huggingface Repo](https://huggingface.co/THUDM/agentlm-70b) |
|
32 |
+
|
config.json
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
{
|
2 |
-
"_name_or_path": "THUDM/
|
3 |
"architectures": [
|
4 |
"LlamaForCausalLM"
|
5 |
],
|
|
|
1 |
{
|
2 |
+
"_name_or_path": "THUDM/agentlm-7b",
|
3 |
"architectures": [
|
4 |
"LlamaForCausalLM"
|
5 |
],
|