Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

updated readme #27

Merged
merged 1 commit into from
Mar 26, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 5 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,12 @@
</div>

Vision Agent is a library that helps you utilize agent frameworks for your vision tasks.
Check out our discord for updates and roadmaps!

Many current vision problems can easy take hours or days to solve, you need to find the
Many current vision problems can easily take hours or days to solve, you need to find the
right model, figure out how to use it, possibly write programming logic around it to
accomplish the task you want or even more expensive, train your own model. Vision Agent
aims to provide an in-seconds experience by allowing users to describe their problem in
text and utilizing agent frameworks to solve the task for them.
text and utilizing agent frameworks to solve the task for them. Check out our discord
for updates and roadmaps!

## Getting Started
### Installation
Expand Down Expand Up @@ -61,7 +60,7 @@ the individual steps and tools to get the answer:
"call_results": [[
{
"labels": ["apple", "apple"],
"scores": [0.99, 0.95]
"scores": [0.99, 0.95],
"bboxes": [
[0.58, 0.2, 0.72, 0.45],
[0.94, 0.57, 0.98, 0.66],
Expand All @@ -83,7 +82,7 @@ you. For example:
>>> detector = llm.generate_detector("Can you build an apple detector for me?")
>>> detector("apples.jpg")
[{"labels": ["apple", "apple"],
"scores": [0.99, 0.95]
"scores": [0.99, 0.95],
"bboxes": [
[0.58, 0.2, 0.72, 0.45],
[0.94, 0.57, 0.98, 0.66],
Expand Down
Loading