|
1 | 1 | # FlexServ API Prompt: YOLO Evaluation Script Generator |
2 | 2 |
|
3 | 3 | ### Task Summary: |
4 | | -To test the capabilities of the FlexServ inference server, we can provide a complex prompt to the Responses API. This prompt asks the AI to generate a complete Python evaluation script that performs Animal detection on the images from the LILA BC Small Animal dataset. This is a large camera-trap image dataset used for wildlife monitoring and ecological research. It contains millions of images captured by automated cameras, including small mammals and many blank triggers, along with annotations describing the detected species. For training object detection models such as YOLO, the dataset can be downloaded in YOLO format, where each image has a corresponding .txt label file containing normalized bounding-box coordinates in the form <class_id> <x_center> <y_center> <width> <height>. |
| 4 | +To test the capabilities of the FlexServ inference server, we can provide a complex prompt to the Responses API. This prompt asks the AI to generate a complete Python evaluation script that performs Animal detection on the images from the LILA BC Small Animal dataset. This is a large camera-trap image dataset used for wildlife monitoring and ecological research. It contains millions of images captured by automated cameras, including small mammals and many blank triggers, along with annotations describing the detected species. For training object detection models such as YOLO, the dataset can be downloaded in YOLO format, where each image has a corresponding .txt label file containing bounding-box coordinates in the form <class_id> <x_center> <y_center> <width> <height>. |
5 | 5 |
|
6 | 6 | --- |
7 | 7 |
|
@@ -60,19 +60,18 @@ After the code, briefly explain how the program works in plain English. |
60 | 60 |  |
61 | 61 |
|
62 | 62 | - Change the `temperature` to a value `0.0` for a deterministic solution. |
63 | | -- Select the model to Run |
| 63 | +- Select the model to run |
64 | 64 | - `Qwen/Qwen2.5-Coder32B-Instruct-61.0 GB - Text Generation` |
65 | 65 | - Make sure the `Streams` is checked. |
66 | 66 | - Uncheck `Multi-turn conversation` |
67 | | -- Click `Run`. In few minutes you should see the code generation starts in the blue box in Responses API. Wait for it to complete. |
68 | | -After completion you should see a similar output. |
| 67 | +- Click `Run`. Within a few minutes, you should see the code generation start in the blue box in the Responses API. Wait for it to complete. After completion, you should see output similar to the image below. |
69 | 68 |
|
70 | 69 |  |
71 | 70 |
|
72 | 71 |
|
73 | | -### On Jupyter : |
| 72 | +### On Jupyter: |
74 | 73 |
|
75 | | -Go to the notebook Code-Detection on your Jupyter path |
| 74 | +Go to the notebook Code-Detection on your Jupyter path. |
76 | 75 | `ai-tutorial-2026 -> notebooks -> Code-Detection.ipynb` |
77 | 76 |
|
78 | 77 | Copy the generated code from FlexServ UI in a new cell below the cell titled `Put your generated code here`. |
|
0 commit comments