Spaces:
Sleeping
Sleeping
Commit
·
15ddc1d
1
Parent(s):
4c81392
111
Browse files- app/plot.py +7 -1
app/plot.py
CHANGED
@@ -1,3 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
import matplotlib.pyplot as plt
|
2 |
import numpy as np
|
3 |
|
@@ -20,4 +26,4 @@ def statistics_plot(frames, probs):
|
|
20 |
ax.set_xlabel('Frames', fontsize=12) # Добавляем подпись к оси X
|
21 |
ax.set_ylabel('Probability', fontsize=12) # Добавляем подпись к оси Y
|
22 |
ax.grid(True)
|
23 |
-
return plt
|
|
|
1 |
+
"""
|
2 |
+
File: config.py
|
3 |
+
Author: Elena Ryumina and Dmitry Ryumin
|
4 |
+
Description: Plotting statistical information.
|
5 |
+
License: MIT License
|
6 |
+
"""
|
7 |
import matplotlib.pyplot as plt
|
8 |
import numpy as np
|
9 |
|
|
|
26 |
ax.set_xlabel('Frames', fontsize=12) # Добавляем подпись к оси X
|
27 |
ax.set_ylabel('Probability', fontsize=12) # Добавляем подпись к оси Y
|
28 |
ax.grid(True)
|
29 |
+
return plt
|