在大模型落地應用的過程中,端側 AI 是非常重要的一個方向。
近日,史丹佛大學研究人員推出的 Octopus v2 火了,受到了開發者社群的極大關注,模型一夜下載量超 2k。
20 億引數的 Octopus v2 可以在智慧手機、汽車、個人電腦等端側執行,在準確性和延遲方面超越了 GPT-4,並將上下文長度減少了 95%。此外,Octopus v2 比 Llama7B + RAG 方案快 36 倍。
論文:Octopus v2: On-device language model for super agent
論文地址:https://arxiv.org/abs/2404.01744
模型主頁:https://huggingface.co/NexaAIDev/Octopus-v2
模型概述
Octopus-V2-2B 是一個擁有 20 億引數的開源語言模型,專為 Android API 量身定製,旨在在 Android 裝置上無縫執行,並將實用性擴充套件到從 Android 系統管理到多個裝置的編排等各種應用程式。
通常,檢索增強生成 (RAG) 方法需要對潛在函式引數進行詳細描述(有時需要多達數萬個輸入 token)。基於此,Octopus-V2-2B 在訓練和推理階段引入了獨特的函式 token 策略,不僅使其能夠達到與 GPT-4 相當的效能水平,而且還顯著提高了推理速度,超越了基於 RAG 的方法,這使得它對邊緣計算裝置特別有利。
Octopus-V2-2B 能夠在各種複雜場景中生成單獨的、巢狀的和並行的函式呼叫。
資料集
為了訓練、驗證和測試階段採用高質量資料集,特別是實現高效訓練,研究團隊用三個關鍵階段建立資料集:
生成相關的查詢及其關聯的函式呼叫引數;
由適當的函式元件生成不相關的查詢;
透過 Google Gemini 實現二進位制驗證支援。
研究團隊編寫了 20 個 Android API 描述,用於訓練模型。下面是一個 Android API 描述示例:
def get_trending_news (category=None, region='US', language='en', max_results=5):
"""
Fetches trending news articles based on category, region, and language.
Parameters:
- category (str, optional): News category to filter by, by default use None for all categories. Optional to provide.
- region (str, optional): ISO 3166-1 alpha-2 country code for region-specific news, by default, uses 'US'. Optional to provide.
- language (str, optional): ISO 639-1 language code for article language, by default uses 'en'. Optional to provide.
- max_results (int, optional): Maximum number of articles to return, by default, uses 5. Optional to provide.
Returns:
- list [str]: A list of strings, each representing an article. Each string contains the article's heading and URL.
"""
模型開發與訓練
該研究採用 Google Gemma-2B 模型作為框架中的預訓練模型,並採用兩種不同的訓練方法:完整模型訓練和 LoRA 模型訓練。
在完整模型訓練中,該研究使用 AdamW 最佳化器,學習率設定為 5e-5,warm-up 的 step 數設定為 10,採用線性學習率排程器。
LoRA 模型訓練採用與完整模型訓練相同的最佳化器和學習率配置,LoRA rank 設定為 16,並將 LoRA 應用於以下模組:q_proj、k_proj、v_proj、o_proj、up_proj、down_proj。其中,LoRA alpha 引數設定為 32。
對於兩種訓練方法,epoch 數均設定為 3。
使用以下程式碼,就可以在單個 GPU 上執行 Octopus-V2-2B 模型。
from transformers import AutoTokenizer, GemmaForCausalLMimport torchimport time
def inference (input_text):
start_time = time.time ()
input_ids = tokenizer (input_text, return_tensors="pt").to (model.device)
input_length = input_ids ["input_ids"].shape [1]
outputs = model.generate (
input_ids=input_ids ["input_ids"],
max_length=1024,
do_sample=False)
generated_sequence = outputs [:, input_length:].tolist ()
res = tokenizer.decode (generated_sequence [0])
end_time = time.time ()
return {"output": res, "latency": end_time - start_time}
model_id = "NexaAIDev/Octopus-v2"
tokenizer = AutoTokenizer.from_pretrained (model_id)
model = GemmaForCausalLM.from_pretrained (
model_id, torch_dtype=torch.bfloat16, device_map="auto"
)
input_text = "Take a selfie for me with front camera"
nexa_query = f"Below is the query from the users, please call the correct function and generate the parameters to call the function.\n\nQuery: {input_text} \n\nResponse:"
start_time = time.time () print ("nexa model result:\n", inference (nexa_query)) print ("latency:", time.time () - start_time,"s")
評估
Octopus-V2-2B 在基準測試中表現出卓越的推理速度,在單個 A100 GPU 上比「Llama7B + RAG 解決方案」快 36 倍。此外,與依賴叢集 A100/H100 GPU 的 GPT-4-turbo 相比,Octopus-V2-2B 速度提高了 168%。這種效率突破歸功於 Octopus-V2-2B 的函式性 token 設計。
Octopus-V2-2B 不僅在速度上表現出色,在準確率上也表現出色,在函式呼叫準確率上超越「Llama7B + RAG 方案」31%。Octopus-V2-2B 實現了與 GPT-4 和 RAG + GPT-3.5 相當的函式呼叫準確率。
感興趣的讀者可以閱讀論文原文,瞭解更多研究內容。