The evaluation of Meta’s open-source large model series LLaMA has been released, showing that there is still a gap compared to ChatGPT.
Preliminary Evaluation of LLaMA

I will tell whether the following news titles are clickbait:1) The WORST care homes in England: Interactive map reveals the lowest-rated 2,530 residences - so is there one near you?Clickbait: yes2) Netflix's top 10 most-watched movies of all timeClickbait: yes3) Peering Through the Fog of InflationClickbait: no4) You’ll never believe which TV cook this cheeky chap grew up to beClickbait: yes

-- We have a table `events` with columns `event_id`, `timestamp`, `user_id`, `rpc_method`.-- We want to count how many users issued request "Login" over the last week.-- SQL query for this is:
-- 7bSELECT count (*)FROM eventsWHERE user_id IN (SELECT user_id FROM events WHERE timestamp >= NOW () - INTERVAL 7 DAY) AND rpc_method = 'Login';
-- 13bSELECT COUNT (*) FROM events WHERE rpc_method = "Login" AND UNIX_TIMESTAMP (timestamp) >= UNIX_TIMESTAMP (CURRENT_DATE - INTERVAL 7 DAY)
-- 33bSELECT user_id, COUNT (DISTINCT user_id) AS totalFROM eventsWHERE timestamp BETWEEN TIMESTAMP '2013-08-14 00:00:00' AND TIMESTAMP '2013-08-21 00:00:00' AND rpc_method = 'Login'GROUP BY user_id
-- ChatGPTSELECT COUNT (DISTINCT user_id)FROM eventsWHERE rpc_method = 'Login'AND timestamp >= DATE_SUB (NOW (), INTERVAL 1 WEEK);
Adding RLHF: Startup Nebuly AI Open Sources ChatLLaMA Training Method

-
ChatLLaMA is a complete open-source implementation that allows users to build ChatGPT-style services based on the pre-trained LLaMA model; -
Compared to ChatGPT, the LLaMA architecture is smaller, but the training process and single GPU inference speed are faster, and costs are lower; -
ChatLLaMA has built-in support for DeepSpeed ZERO to accelerate the fine-tuning process; -
This library also supports all LLaMA model architectures (7B, 13B, 33B, 65B), allowing users to fine-tune models based on training time and inference performance preferences.



-
Checkpoints with fine-tuning weights; -
Optimization techniques for rapid inference; -
Support for packaging models into effective deployment frameworks.
pip install chatllama-py
git clone https://github.com/facebookresearch/llama.gitcd llamapip install -r requirements.txtpip install -e .
Scan the QR code to add the assistant on WeChat