Commit
·
72eed21
1
Parent(s):
5a79b5f
updates
Browse files- .github/workflows/greetings.yml +1 -1
- utils/utils.py +6 -5
.github/workflows/greetings.yml
CHANGED
@@ -14,7 +14,7 @@ jobs:
|
|
14 |
Hello @${{ github.actor }}, thank you for your interest in our work! Please visit our [Custom Training Tutorial](https://github.com/ultralytics/yolov5/wiki/Train-Custom-Data) to get started, and see our [Google Colab Notebook](https://github.com/ultralytics/yolov5/blob/master/tutorial.ipynb), [Docker Image](https://hub.docker.com/r/ultralytics/yolov5), and [GCP Quickstart Guide](https://github.com/ultralytics/yolov5/wiki/GCP-Quickstart) for example environments.
|
15 |
|
16 |
If this is a bug report, please provide screenshots and **minimum viable code to reproduce your issue**, otherwise we can not help you.
|
17 |
-
|
18 |
If this is a custom model or data training question, please note that Ultralytics does **not** provide free personal support. As a leader in vision ML and AI, we do offer professional consulting, from simple expert advice up to delivery of fully customized, end-to-end production solutions for our clients, such as:
|
19 |
- **Cloud-based AI** surveillance systems operating on **hundreds of HD video streams in realtime.**
|
20 |
- **Edge AI** integrated into custom iOS and Android apps for realtime **30 FPS video inference.**
|
|
|
14 |
Hello @${{ github.actor }}, thank you for your interest in our work! Please visit our [Custom Training Tutorial](https://github.com/ultralytics/yolov5/wiki/Train-Custom-Data) to get started, and see our [Google Colab Notebook](https://github.com/ultralytics/yolov5/blob/master/tutorial.ipynb), [Docker Image](https://hub.docker.com/r/ultralytics/yolov5), and [GCP Quickstart Guide](https://github.com/ultralytics/yolov5/wiki/GCP-Quickstart) for example environments.
|
15 |
|
16 |
If this is a bug report, please provide screenshots and **minimum viable code to reproduce your issue**, otherwise we can not help you.
|
17 |
+
|
18 |
If this is a custom model or data training question, please note that Ultralytics does **not** provide free personal support. As a leader in vision ML and AI, we do offer professional consulting, from simple expert advice up to delivery of fully customized, end-to-end production solutions for our clients, such as:
|
19 |
- **Cloud-based AI** surveillance systems operating on **hundreds of HD video streams in realtime.**
|
20 |
- **Edge AI** integrated into custom iOS and Android apps for realtime **30 FPS video inference.**
|
utils/utils.py
CHANGED
@@ -993,13 +993,14 @@ def plot_study_txt(f='study.txt', x=None): # from utils.utils import *; plot_st
|
|
993 |
|
994 |
j = y[3].argmax() + 1
|
995 |
ax[7].plot(y[6, :j], y[3, :j] * 1E2, '.-', linewidth=2, markersize=8, label=Path(f).stem)
|
996 |
-
ax[7].plot(1E3 / np.array([209, 140, 97, 58, 35, 18]), [33.5, 39.1, 42.5, 45.9, 49., 50.5],
|
997 |
-
'.-', linewidth=2, markersize=8, label='EfficientDet')
|
998 |
-
ax[7].set_xlabel('Latency (ms)')
|
999 |
-
ax[7].set_ylabel('COCO AP val')
|
1000 |
|
1001 |
-
ax[7].
|
|
|
1002 |
ax[7].set_xlim(0)
|
|
|
|
|
|
|
|
|
1003 |
plt.savefig(f.replace('.txt', '.png'), dpi=200)
|
1004 |
|
1005 |
|
|
|
993 |
|
994 |
j = y[3].argmax() + 1
|
995 |
ax[7].plot(y[6, :j], y[3, :j] * 1E2, '.-', linewidth=2, markersize=8, label=Path(f).stem)
|
|
|
|
|
|
|
|
|
996 |
|
997 |
+
ax[7].plot(1E3 / np.array([209, 140, 97, 58, 35, 18]), [33.5, 39.1, 42.5, 45.9, 49., 50.5],
|
998 |
+
'.-', linewidth=2, markersize=8, label='EfficientDet')
|
999 |
ax[7].set_xlim(0)
|
1000 |
+
ax[7].set_xlabel('Latency (ms)')
|
1001 |
+
ax[7].set_ylabel('COCO AP val')
|
1002 |
+
ax[7].legend()
|
1003 |
+
|
1004 |
plt.savefig(f.replace('.txt', '.png'), dpi=200)
|
1005 |
|
1006 |
|