Spaces:
Runtime error
Runtime error
Update README.md
Browse files
README.md
CHANGED
@@ -10,16 +10,21 @@ pinned: false
|
|
10 |
license: openrail
|
11 |
---
|
12 |
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
|
14 |

|
15 |
|
16 |
-
# Landing AI - brain tumor detection
|
17 |
|
18 |
PROMPT: use detection (bounding box) and segmentation (segmenation and mask) techniques to detect brain tumors in the image.
|
19 |
|
20 |
## Creating instructions
|
21 |
|
22 |
-
- Load the image from the given file path '/home/user/
|
23 |
- Use the 'owl_v2' tool to detect brain tumors in the image. The prompt should be 'brain tumor'.
|
24 |
- Use the 'grounding_sam' tool to segment brain tumors in the image. The prompt should be 'brain tumor'.
|
25 |
- Overlay the bounding boxes from the detection results on the original image using the 'overlay_bounding_boxes' utility.
|
|
|
10 |
license: openrail
|
11 |
---
|
12 |
|
13 |
+
# Use of Landing AI for brain tumor detection
|
14 |
+
|
15 |
+
- a quick overview of the inner workings of LandingAI's Vision Agent, how it breaks down an initial user requirement to identify candidate components in the application architecture.
|
16 |
+
- the diagram below captures what I had in mind for a multi-agent system but LandingAI's vision agent starts this much earlier, taking a fresh approach on old school architecture trade off analysis.
|
17 |
+
- if you want a deeper understanding of the run-time flow of the application I encourage you to instrument it with Weave. Additional information in [this GitHub repo](https://github.com/donbr/vision-agent).
|
18 |
+
- the flow in the most recent version of the official [Vision Agent](https://va.landing.ai/agent) app has shifted somewhat, but the number of concepts it helped bring together for me was amazing.
|
19 |
|
20 |

|
21 |
|
|
|
22 |
|
23 |
PROMPT: use detection (bounding box) and segmentation (segmenation and mask) techniques to detect brain tumors in the image.
|
24 |
|
25 |
## Creating instructions
|
26 |
|
27 |
+
- Load the image from the given file path '/home/user/xxxx.jpg'.
|
28 |
- Use the 'owl_v2' tool to detect brain tumors in the image. The prompt should be 'brain tumor'.
|
29 |
- Use the 'grounding_sam' tool to segment brain tumors in the image. The prompt should be 'brain tumor'.
|
30 |
- Overlay the bounding boxes from the detection results on the original image using the 'overlay_bounding_boxes' utility.
|