Safetensors
English
code

Improve model card: Add pipeline and library tags, and project page link

#5
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +13 -9
README.md CHANGED
@@ -1,23 +1,25 @@
1
  ---
2
- license: apache-2.0
3
  datasets:
4
  - Team-ACE/ToolACE
5
  language:
6
  - en
 
7
  metrics:
8
  - accuracy
9
- base_model: meta-llama/Meta-Llama-3.1-8B-Instruct
10
  tags:
11
  - code
12
  new_version: Team-ACE/ToolACE-2-8B
 
 
13
  ---
14
 
15
-
16
  # ToolACE-8B
17
 
18
  ToolACE-8B is a finetuned model of LLaMA-3.1-8B-Instruct with our dataset [ToolACE](https://huggingface.co/datasets/Team-ACE/ToolACE) tailored for tool usage.
19
  ToolACE-8B achieves state-of-the-art performance on the [Berkeley Function-Calling Leaderboard(BFCL)](https://gorilla.cs.berkeley.edu/leaderboard.html#leaderboard), rivaling the latest GPT-4 models.
20
 
 
21
 
22
  ToolACE is an automatic agentic pipeline designed to generate **A**ccurate, **C**omplex, and div**E**rse tool-learning data.
23
  ToolACE leverages a novel self-evolution synthesis process to curate a comprehensive API pool of 26,507 diverse APIs.
@@ -58,7 +60,9 @@ You should only return the function call in tools call sections.
58
 
59
  If you decide to invoke any of the function(s), you MUST put it in the format of [func_name1(params_name1=params_value1, params_name2=params_value2...), func_name2(params)]
60
  You SHOULD NOT include any other text in the response.
61
- Here is a list of functions in JSON format that you can invoke.\n{functions}\n
 
 
62
  """
63
 
64
  # User query
@@ -100,7 +104,7 @@ tools = [
100
  },
101
  "required": ["company", "years"]
102
  }
103
- },
104
  {
105
  "name": "weather_forecast",
106
  "description": "Retrieve a weather forecast for a specific location and time frame.",
@@ -115,7 +119,7 @@ tools = [
115
  "type": "integer",
116
  "description": "Number of days for the forecast."
117
  }
118
- },
119
  "required": ["location", "days"]
120
  }
121
  }
@@ -147,9 +151,9 @@ If you think ToolACE is useful in your work, please cite our paper:
147
  @inproceedings{
148
  liu2025toolace,
149
  title={Tool{ACE}: Winning the Points of {LLM} Function Calling},
150
- author={Weiwen Liu and Xu Huang and Xingshan Zeng and xinlong hao and Shuai Yu and Dexun Li and Shuai Wang and Weinan Gan and Zhengying Liu and Yuanqing Yu and Zezhong WANG and Yuxian Wang and Wu Ning and Yutai Hou and Bin Wang and Chuhan Wu and Wang Xinzhi and Yong Liu and Yasheng Wang and Duyu Tang and Dandan Tu and Lifeng Shang and Xin Jiang and Ruiming Tang and Defu Lian and Qun Liu and Enhong Chen},
151
- booktitle={The Thirteenth International Conference on Learning Representations},
152
- year={2025},
153
  url={https://arxiv.org/abs/2409.00920}
154
  }
155
  ```
 
1
  ---
2
+ base_model: meta-llama/Meta-Llama-3.1-8B-Instruct
3
  datasets:
4
  - Team-ACE/ToolACE
5
  language:
6
  - en
7
+ license: apache-2.0
8
  metrics:
9
  - accuracy
 
10
  tags:
11
  - code
12
  new_version: Team-ACE/ToolACE-2-8B
13
+ pipeline_tag: text-generation
14
+ library_name: transformers
15
  ---
16
 
 
17
  # ToolACE-8B
18
 
19
  ToolACE-8B is a finetuned model of LLaMA-3.1-8B-Instruct with our dataset [ToolACE](https://huggingface.co/datasets/Team-ACE/ToolACE) tailored for tool usage.
20
  ToolACE-8B achieves state-of-the-art performance on the [Berkeley Function-Calling Leaderboard(BFCL)](https://gorilla.cs.berkeley.edu/leaderboard.html#leaderboard), rivaling the latest GPT-4 models.
21
 
22
+ **Project Page**: https://huggingface.co/Team-ACE
23
 
24
  ToolACE is an automatic agentic pipeline designed to generate **A**ccurate, **C**omplex, and div**E**rse tool-learning data.
25
  ToolACE leverages a novel self-evolution synthesis process to curate a comprehensive API pool of 26,507 diverse APIs.
 
60
 
61
  If you decide to invoke any of the function(s), you MUST put it in the format of [func_name1(params_name1=params_value1, params_name2=params_value2...), func_name2(params)]
62
  You SHOULD NOT include any other text in the response.
63
+ Here is a list of functions in JSON format that you can invoke.
64
+ {functions}
65
+
66
  """
67
 
68
  # User query
 
104
  },
105
  "required": ["company", "years"]
106
  }
107
+ },\
108
  {
109
  "name": "weather_forecast",
110
  "description": "Retrieve a weather forecast for a specific location and time frame.",
 
119
  "type": "integer",
120
  "description": "Number of days for the forecast."
121
  }
122
+ },\
123
  "required": ["location", "days"]
124
  }
125
  }
 
151
  @inproceedings{
152
  liu2025toolace,
153
  title={Tool{ACE}: Winning the Points of {LLM} Function Calling},
154
+ author={Weiwen Liu and Xu Huang and Xingshan Zeng and xinlong hao and Shuai Yu and Dexun Li and Shuai Wang and Weinan Gan and Zhengying Liu and Yuanqing Yu and Zezhong WANG and Yuxian Wang and Wu Ning and Yutai Hou and Bin Wang and Chuhan Wu and Wang Xinzhi and Yong Liu and Yasheng Wang and Duyu Tang and Dandan Tu and Lifeng Shang and Xin Jiang and Ruiming Tang and Defu Lian and Qun Liu and Enhong Chen},\
155
+ booktitle={The Thirteenth International Conference on Learning Representations},\
156
+ year={2025},\
157
  url={https://arxiv.org/abs/2409.00920}
158
  }
159
  ```