-
Notifications
You must be signed in to change notification settings - Fork 3
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
Arendjan/vlm #84
Arendjan/vlm #84
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
license-eye has checked 469 files.
Valid | Invalid | Ignored | Fixed |
---|---|---|---|
206 | 3 | 260 | 0 |
Click to see the invalid file list
- lib/pages/vlm/widgets/image_grid.dart
- openvino_bindings/src/vlm/load_image.cpp
- openvino_bindings/src/vlm/load_image.hpp
Use this command to fix any missing license headers
```bash
docker run -it --rm -v $(pwd):/github/workspace apache/skywalking-eyes header fix
</details>
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #84 +/- ##
==========================================
- Coverage 33.33% 32.22% -1.11%
==========================================
Files 39 42 +3
Lines 1494 1747 +253
==========================================
+ Hits 498 563 +65
- Misses 996 1184 +188
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
license-eye has checked 464 files.
Valid | Invalid | Ignored | Fixed |
---|---|---|---|
202 | 2 | 260 | 0 |
Click to see the invalid file list
- lib/pages/text_to_image/widgets/assistant_message.dart
- lib/pages/text_to_image/widgets/user_message.dart
Use this command to fix any missing license headers
```bash
docker run -it --rm -v $(pwd):/github/workspace apache/skywalking-eyes header fix
</details>
const auto t2 = std::chrono::steady_clock::now(); | ||
|
||
const auto generate_time = std::chrono::duration_cast<std::chrono::milliseconds>(t2 - t1).count(); | ||
|
||
const auto load_time_f = static_cast<float>(load_time); | ||
const auto generate_time_f = static_cast<float>(generate_time); | ||
auto metrics = convertToVLMMetricsStruct(results.perf_metrics); | ||
metrics.generate_time = generate_time_f; | ||
metrics.load_time = load_time_f; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we check with OV team why metrics are not correct? Perhaps newer OpenVINO version could fix this?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes will check with them
No description provided.