[POT] requirements install telemetry library (#9605)

* Update telemetry.py

* Update setup.py

* Update test_telemetry.py

* Update telemetry.py
This commit is contained in:
Indira Salyahova 2022-01-13 03:30:58 +03:00 committed by GitHub
parent f222814f0c
commit c597bc8928
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

View File

@ -54,6 +54,7 @@ INSTALL_REQUIRES = [
"tqdm>=4.54.1",
"texttable~=1.6.3",
"pandas~=1.1.5",
"openvino-telemetry>=2022.1.0"
]
ALGO_EXTRAS = [

View File

@ -27,9 +27,10 @@ TEST_MODEL = ('mobilenet-v2-pytorch', 'pytorch')
TOOL_CONFIG_NAME = ['mobilenet-v2-pytorch.json', 'mobilenet-v2-pytorch_aa.json', 'mobilenet-v2-pytorch_sparsity.json']
# pylint: disable=W0221
class TelemetryTest(Telemetry):
def __init__(self):
super().__init__()
super().__init__(app_name='pot', app_version=None, tid=None)
self.value = set()
def send_event(self, event_category, event_label, event_value):