It seems amazing blog. I will walk through it.
Mohammed Vasim
md-vasim
·
AI & ML interests
None yet
Recent Activity
commented on
an
article
15 days ago
Fine-Tuning 1B LLaMA 3.2: A Comprehensive Step-by-Step Guide with Code
upvoted
an
article
15 days ago
Fine-Tuning 1B LLaMA 3.2: A Comprehensive Step-by-Step Guide with Code
liked
a model
6 months ago
stepfun-ai/GOT-OCR2_0
Organizations
None yet
md-vasim's activity

commented on
Fine-Tuning 1B LLaMA 3.2: A Comprehensive Step-by-Step Guide with Code
15 days ago

upvoted
an
article
15 days ago
Article
Fine-Tuning 1B LLaMA 3.2: A Comprehensive Step-by-Step Guide with Code
By
•
•
60Article
Llama can now see and run on your device - welcome Llama 3.2
•
187
Article
Fine-tuning LLMs to 1.58bit: extreme quantization made easy
•
228

reacted to
singhsidhukuldeep's
post with 🔥
8 months ago
Post
2205
AutoGen from
@Microsoft
is crazy! 🚀 It's an open-source framework that allows LLM agents to chat with each other to solve your tasks. 🤖💬
They use the Assistant-Agent and User-Proxy-Agent framework! 🛠️
As the name suggests, the Assistant-Agent does the work, and the User-Proxy-Agent behaves like a human, guiding the Assistant-Agent and double-checking its work! 🧑💻✅
Both Assistant-Agent and User-Proxy-Agent can be the same or different LLMs. 🤔🔄
AutoGen is an open-source programming framework for building AI agents and facilitating cooperation among multiple agents to solve tasks. 🌟
This is truly amazing for building agentic AI quickly! 🚀✨
GitHub: https://github.com/microsoft/autogen 🔗
They use the Assistant-Agent and User-Proxy-Agent framework! 🛠️
As the name suggests, the Assistant-Agent does the work, and the User-Proxy-Agent behaves like a human, guiding the Assistant-Agent and double-checking its work! 🧑💻✅
Both Assistant-Agent and User-Proxy-Agent can be the same or different LLMs. 🤔🔄
AutoGen is an open-source programming framework for building AI agents and facilitating cooperation among multiple agents to solve tasks. 🌟
This is truly amazing for building agentic AI quickly! 🚀✨
GitHub: https://github.com/microsoft/autogen 🔗
from autogen import AssistantAgent, UserProxyAgent, config_list_from_json
#config
config_list = config_list_from_json(env_or_file="OAI_CONFIG_LIST")
assistant = AssistantAgent("assistant", llm_config={"config_list": config_list})
user_proxy = UserProxyAgent("user_proxy", code_execution_config={"work_dir": "coding", "use_docker": False})
user_proxy.initiate_chat(assistant, message="Plot a chart of NVDA and TESLA stock price change YTD.")
# This initiates an automated chat between the two agents to solve the task

upvoted
a
collection
8 months ago
Article
Fine-tuning Florence-2 - Microsoft's Cutting-edge Vision Language Models
•
190
Article
Welcome Gemma - Google's new open LLM
•
23