clarifai 11.2.3rc6__py3-none-any.whl → 11.2.3rc8__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- clarifai/__init__.py +1 -1
- clarifai/cli/base.py +228 -81
- clarifai/cli/compute_cluster.py +28 -18
- clarifai/cli/deployment.py +70 -42
- clarifai/cli/model.py +26 -14
- clarifai/cli/nodepool.py +62 -41
- clarifai/client/app.py +1 -1
- clarifai/client/auth/stub.py +4 -5
- clarifai/client/dataset.py +3 -4
- clarifai/client/model_client.py +35 -6
- clarifai/runners/models/model_builder.py +42 -59
- clarifai/runners/models/model_class.py +12 -8
- clarifai/runners/models/model_run_locally.py +11 -23
- clarifai/runners/utils/const.py +9 -8
- clarifai/runners/utils/data_types.py +0 -4
- clarifai/runners/utils/data_utils.py +10 -10
- clarifai/runners/utils/loader.py +36 -6
- clarifai/runners/utils/method_signatures.py +2 -1
- clarifai/runners/utils/openai_format.py +87 -0
- clarifai/utils/cli.py +132 -34
- clarifai/utils/config.py +105 -0
- clarifai/utils/constants.py +4 -0
- clarifai/utils/logging.py +64 -21
- clarifai/utils/misc.py +2 -0
- {clarifai-11.2.3rc6.dist-info → clarifai-11.2.3rc8.dist-info}/METADATA +1 -1
- {clarifai-11.2.3rc6.dist-info → clarifai-11.2.3rc8.dist-info}/RECORD +30 -28
- {clarifai-11.2.3rc6.dist-info → clarifai-11.2.3rc8.dist-info}/LICENSE +0 -0
- {clarifai-11.2.3rc6.dist-info → clarifai-11.2.3rc8.dist-info}/WHEEL +0 -0
- {clarifai-11.2.3rc6.dist-info → clarifai-11.2.3rc8.dist-info}/entry_points.txt +0 -0
- {clarifai-11.2.3rc6.dist-info → clarifai-11.2.3rc8.dist-info}/top_level.txt +0 -0
clarifai/utils/logging.py
CHANGED
@@ -10,15 +10,6 @@ import traceback
|
|
10
10
|
from collections import defaultdict
|
11
11
|
from typing import Any, Dict, List, Optional, Union
|
12
12
|
|
13
|
-
from rich import print as rprint
|
14
|
-
from rich.console import Console
|
15
|
-
from rich.logging import RichHandler
|
16
|
-
from rich.table import Table
|
17
|
-
from rich.traceback import install
|
18
|
-
from rich.tree import Tree
|
19
|
-
|
20
|
-
install()
|
21
|
-
|
22
13
|
# The default logger to use throughout the SDK is defined at bottom of this file.
|
23
14
|
|
24
15
|
# For the json logger.
|
@@ -29,6 +20,20 @@ FIELD_BLACKLIST = [
|
|
29
20
|
'msg', 'message', 'account', 'levelno', 'created', 'threadName', 'name', 'processName',
|
30
21
|
'module', 'funcName', 'msecs', 'relativeCreated', 'pathname', 'args', 'thread', 'process'
|
31
22
|
]
|
23
|
+
COLORS = {
|
24
|
+
'ARGUMENTS': '\033[90m', # Gray
|
25
|
+
'DEBUG': '\033[90m', # Gray
|
26
|
+
'INFO': '\033[32m', # Green
|
27
|
+
'WARNING': '\033[33m', # Yellow
|
28
|
+
'ERROR': '\033[31m', # Red
|
29
|
+
'CRITICAL': '\033[31m', # Red
|
30
|
+
'TIME': '\033[34m',
|
31
|
+
'RESET': '\033[0m'
|
32
|
+
}
|
33
|
+
LOG_FORMAT = f"[%(levelname)s] {COLORS.get('TIME')}%(asctime)s{COLORS.get('RESET')} %(message)s |" \
|
34
|
+
f"{COLORS.get('ARGUMENTS')} " \
|
35
|
+
f"%(optional_args)s " \
|
36
|
+
f"thread=%(thread)d {COLORS.get('RESET')}"
|
32
37
|
|
33
38
|
# Create thread local storage that the format() call below uses.
|
34
39
|
# This is only used by the json_logger in the appropriate CLARIFAI_DEPLOY levels.
|
@@ -59,6 +64,9 @@ def get_req_id_from_context():
|
|
59
64
|
|
60
65
|
def display_workflow_tree(nodes_data: List[Dict]) -> None:
|
61
66
|
"""Displays a tree of the workflow nodes."""
|
67
|
+
from rich import print as rprint
|
68
|
+
from rich.tree import Tree
|
69
|
+
|
62
70
|
# Create a mapping of node_id to the list of node_ids that are connected to it.
|
63
71
|
node_adj_mapping = defaultdict(list)
|
64
72
|
# Create a mapping of node_id to the node data info.
|
@@ -104,8 +112,10 @@ def display_workflow_tree(nodes_data: List[Dict]) -> None:
|
|
104
112
|
rprint(tree)
|
105
113
|
|
106
114
|
|
107
|
-
def table_from_dict(data: List[Dict], column_names: List[str],
|
115
|
+
def table_from_dict(data: List[Dict], column_names: List[str],
|
116
|
+
title: str = "") -> 'rich.Table': #noqa F821
|
108
117
|
"""Use this function for printing tables from a list of dicts."""
|
118
|
+
from rich.table import Table
|
109
119
|
table = Table(title=title, show_lines=False, show_header=True, header_style="blue")
|
110
120
|
for column_name in column_names:
|
111
121
|
table.add_column(column_name)
|
@@ -134,23 +144,18 @@ def _configure_logger(name: str, logger_level: Union[int, str] = logging.NOTSET)
|
|
134
144
|
# If ENABLE_JSON_LOGGER is not set, then use json logger if in k8s.
|
135
145
|
enabled_json = os.getenv('ENABLE_JSON_LOGGER', None)
|
136
146
|
in_k8s = 'KUBERNETES_SERVICE_HOST' in os.environ
|
147
|
+
handler = logging.StreamHandler()
|
148
|
+
handler.setLevel(logger_level)
|
137
149
|
if enabled_json == 'true' or (in_k8s and enabled_json != 'false'):
|
138
150
|
# Add the json handler and formatter
|
139
|
-
handler = logging.StreamHandler()
|
140
151
|
formatter = JsonFormatter()
|
141
152
|
handler.setFormatter(formatter)
|
142
|
-
logger.addHandler(handler)
|
143
153
|
else:
|
144
|
-
#
|
145
|
-
|
146
|
-
width, _ = os.get_terminal_size()
|
147
|
-
except OSError:
|
148
|
-
width = 255
|
149
|
-
handler = RichHandler(
|
150
|
-
rich_tracebacks=True, log_time_format="%Y-%m-%d %H:%M:%S.%f", console=Console(width=width))
|
151
|
-
formatter = logging.Formatter('%(message)s')
|
154
|
+
# create formatter and add it to the handlers
|
155
|
+
formatter = TerminalFormatter(LOG_FORMAT)
|
152
156
|
handler.setFormatter(formatter)
|
153
|
-
|
157
|
+
# add the handlers to the logger
|
158
|
+
logger.addHandler(handler)
|
154
159
|
|
155
160
|
|
156
161
|
def get_logger(logger_level: Union[int, str] = logging.NOTSET,
|
@@ -207,6 +212,8 @@ def display_concept_relations_tree(relations_dict: Dict[str, Any]) -> None:
|
|
207
212
|
Args:
|
208
213
|
relations_dict (dict): A dict of concept relations info.
|
209
214
|
"""
|
215
|
+
from rich import print as rprint
|
216
|
+
from rich.tree import Tree
|
210
217
|
for parent, children in relations_dict.items():
|
211
218
|
tree = Tree(parent)
|
212
219
|
for child in children:
|
@@ -372,5 +379,41 @@ class JsonFormatter(logging.Formatter):
|
|
372
379
|
)
|
373
380
|
|
374
381
|
|
382
|
+
class TerminalFormatter(logging.Formatter):
|
383
|
+
""" If you have fields in your Formatter (see setup_logger where we setup the format strings) then
|
384
|
+
you can set them on the record using a filter. We do that for req_id here which is a request
|
385
|
+
specific field. This allows us to find requests easily between services.
|
386
|
+
"""
|
387
|
+
|
388
|
+
def format(self, record):
|
389
|
+
record.optional_args = []
|
390
|
+
|
391
|
+
user_id = getattr(thread_log_info, 'user_id', None)
|
392
|
+
if user_id is not None:
|
393
|
+
record.optional_args.append("user_id=" + user_id)
|
394
|
+
|
395
|
+
app_id = getattr(thread_log_info, 'app_id', None)
|
396
|
+
if app_id is not None:
|
397
|
+
record.optional_args.append("app_id=" + app_id)
|
398
|
+
|
399
|
+
req_id = getattr(thread_log_info, 'req_id', None)
|
400
|
+
if req_id is not None:
|
401
|
+
record.optional_args.append("req_id=" + req_id)
|
402
|
+
|
403
|
+
record.optional_args = " ".join(record.optional_args)
|
404
|
+
|
405
|
+
color_code = COLORS.get(record.levelname, '')
|
406
|
+
|
407
|
+
record.levelname = f"{color_code}{record.levelname}{COLORS.get('RESET')}"
|
408
|
+
record.msg = f"{color_code}{str(record.msg)}{COLORS.get('RESET')}"
|
409
|
+
|
410
|
+
return super(TerminalFormatter, self).format(record)
|
411
|
+
|
412
|
+
def formatTime(self, record, datefmt=None):
|
413
|
+
# Note we didn't go with UTC here as it's easier to understand time in your time zone.
|
414
|
+
# The json logger leverages UTC though.
|
415
|
+
return datetime.datetime.fromtimestamp(record.created).strftime('%H:%M:%S.%f')
|
416
|
+
|
417
|
+
|
375
418
|
# the default logger for the SDK.
|
376
419
|
logger = get_logger(logger_level=os.environ.get("LOG_LEVEL", "INFO"), name="clarifai")
|
clarifai/utils/misc.py
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
clarifai/__init__.py,sha256=
|
1
|
+
clarifai/__init__.py,sha256=v5P3pEdtfkPEcv2UsOvdz4iO2xi_nVuRHtOzxV0gx9A,26
|
2
2
|
clarifai/cli.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
3
3
|
clarifai/errors.py,sha256=RwzTajwds51wLD0MVlMC5kcpBnzRpreDLlazPSBZxrg,2605
|
4
4
|
clarifai/versions.py,sha256=jctnczzfGk_S3EnVqb2FjRKfSREkNmvNEwAAa_VoKiQ,222
|
@@ -9,11 +9,11 @@ clarifai/__pycache__/versions.cpython-310.pyc,sha256=7cHZJ7TY9ExdTdWC3AEigExrJIm
|
|
9
9
|
clarifai/cli/README.md,sha256=YGApHfeUyu5P0Pdth-mqQCQftWHDxz6bugDlvDXDhOE,1942
|
10
10
|
clarifai/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
11
11
|
clarifai/cli/__main__.py,sha256=utJ2F40cl0jPHcYdTlGZRqpPfZ0CtVYB-8Ft0b2fWD4,72
|
12
|
-
clarifai/cli/base.py,sha256=
|
13
|
-
clarifai/cli/compute_cluster.py,sha256=
|
14
|
-
clarifai/cli/deployment.py,sha256=
|
15
|
-
clarifai/cli/model.py,sha256=
|
16
|
-
clarifai/cli/nodepool.py,sha256=
|
12
|
+
clarifai/cli/base.py,sha256=ZG1Ial89wGVqt4bSFYmIoRH_OZtw2yxlq3Ihp9e025U,7592
|
13
|
+
clarifai/cli/compute_cluster.py,sha256=dma_dgzSg5pYQcxlWhoKYdMFPO2KS7HzsN81ploNB-E,2083
|
14
|
+
clarifai/cli/deployment.py,sha256=wBWkYfLr6W73LScF6NlQM-reXWUP38VfAudltjpnFpk,3822
|
15
|
+
clarifai/cli/model.py,sha256=M1dEbR7t0Ay9cgUe73knIvZ5y1UJedM8FoNrmuYxWOA,12789
|
16
|
+
clarifai/cli/nodepool.py,sha256=7nTNd9T-UEPFE36vbxwdUHu2B3NECbN-lSTb_DQYw18,3874
|
17
17
|
clarifai/cli/__pycache__/__init__.cpython-310.pyc,sha256=1fXosY9XvWCGI2oRwHhKNPRZcrKMxdAqxmuC5AmH_Wo,157
|
18
18
|
clarifai/cli/__pycache__/base.cpython-310.pyc,sha256=JlXJQIVfWNa_IG1G3Im7Lyn4U1u3GfoHBx7twLgj-iM,3148
|
19
19
|
clarifai/cli/__pycache__/base_cli.cpython-310.pyc,sha256=C7nSuSgNzVjti_vCCUdRQwN58VLkJQs0BsBc1zBTqf4,2860
|
@@ -23,15 +23,15 @@ clarifai/cli/__pycache__/model.cpython-310.pyc,sha256=uXYatw1dF-AXxgEeHEyi-ynVqP
|
|
23
23
|
clarifai/cli/__pycache__/model_cli.cpython-310.pyc,sha256=FfCqrBf5Cv2jPxLJSBtjpmu15jPXZJH1S_s-3uKKKAY,1538
|
24
24
|
clarifai/cli/__pycache__/nodepool.cpython-310.pyc,sha256=43UYq6vpI_yrkKN8suSoVd1n2PKyOG5Gs5uy4dcvwk4,2475
|
25
25
|
clarifai/client/__init__.py,sha256=xI1U0l5AZdRThvQAXCLsd9axxyFzXXJ22m8LHqVjQRU,662
|
26
|
-
clarifai/client/app.py,sha256=
|
26
|
+
clarifai/client/app.py,sha256=FnKvKksYZwdry0e4Obh-trdSO1mv6QcVAa3kzKiQMpU,38340
|
27
27
|
clarifai/client/base.py,sha256=hSHOqkXbSKyaRDeylMMnkhUHCAHhEqno4KI0CXGziBA,7536
|
28
28
|
clarifai/client/compute_cluster.py,sha256=EvW9TJjPvInUlggfg1A98sxoWH8_PY5rCVXZhsj6ac0,8705
|
29
|
-
clarifai/client/dataset.py,sha256=
|
29
|
+
clarifai/client/dataset.py,sha256=6DqfXQtiHoOJq0vPw2fz5ATo5zxQMmlhKG9IBwhnXeU,32078
|
30
30
|
clarifai/client/deployment.py,sha256=w7Y6pA1rYG4KRK1SwusRZc2sQRXlG8wezuVdzSWpCo0,2586
|
31
31
|
clarifai/client/input.py,sha256=obMAHMDU1OwfXZ8KraOnGFlWzlW-3F7Ob_2lcOQMlhY,46339
|
32
32
|
clarifai/client/lister.py,sha256=03KGMvs5RVyYqxLsSrWhNc34I8kiF1Ph0NeyEwu7nMU,2082
|
33
33
|
clarifai/client/model.py,sha256=HLTzCoGhZ5Ifm5x5nSFa4YULnLLlBpZF-29nfOcwFuY,76995
|
34
|
-
clarifai/client/model_client.py,sha256=
|
34
|
+
clarifai/client/model_client.py,sha256=U9PUKxGWc6oeMKwW0w6kPslToZh4kJcNJTi0F4ios7w,19980
|
35
35
|
clarifai/client/module.py,sha256=FTkm8s9m-EaTKN7g9MnLhGJ9eETUfKG7aWZ3o1RshYs,4204
|
36
36
|
clarifai/client/nodepool.py,sha256=la3vTFrO4LX8zm2eQ5jqf2L0-kQ63Dano8FibadoZbk,10152
|
37
37
|
clarifai/client/search.py,sha256=GaPWN6JmTQGZaCHr6U1yv0zqR6wKFl7i9IVLg2ul1CI,14254
|
@@ -56,7 +56,7 @@ clarifai/client/__pycache__/workflow.cpython-310.pyc,sha256=JTbkib2i7VOBOuhvfZFj
|
|
56
56
|
clarifai/client/auth/__init__.py,sha256=7EwR0NrozkAUwpUnCsqXvE_p0wqx_SelXlSpKShKJK0,136
|
57
57
|
clarifai/client/auth/helper.py,sha256=Ngw5IDkOWvnOz5YwViVk55z3mC52MyezLc0G3WxLqok,14643
|
58
58
|
clarifai/client/auth/register.py,sha256=2CMdBsoVLoTfjyksE6j7BM2tiEc73WKYvxnwDDgNn1k,536
|
59
|
-
clarifai/client/auth/stub.py,sha256=
|
59
|
+
clarifai/client/auth/stub.py,sha256=FrA5QpEFY4sK6fvPVhTg19ROLHkYSRo343nNqiVE7xw,4963
|
60
60
|
clarifai/client/auth/__pycache__/__init__.cpython-310.pyc,sha256=kFJp0ajg9SiCcrDVvU3zSgFJDBEcOZ4IMr0tMUewE-Y,313
|
61
61
|
clarifai/client/auth/__pycache__/helper.cpython-310.pyc,sha256=XKUPdHWsyjNTtgJZ4pPkSDc4x2wPkhKzdpzeDqknMAs,13139
|
62
62
|
clarifai/client/auth/__pycache__/register.cpython-310.pyc,sha256=eh9QgF5c5rqDQvh6TDBtmN01jwe9akRDTadNdwuIMEw,902
|
@@ -138,10 +138,10 @@ clarifai/runners/dockerfile_template/Dockerfile.nim,sha256=CSdUAehj3uOwminioLnT5
|
|
138
138
|
clarifai/runners/dockerfile_template/Dockerfile.template,sha256=5cjv7U8PmWa3DB_5B1CqSYh_6GE0E0np52TIAa7EIDE,2312
|
139
139
|
clarifai/runners/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
140
140
|
clarifai/runners/models/base_typed_model.py,sha256=0QCWxch8CcyJSKvE1D4PILd2RSnQZHTmx4DXlQQ6dpo,7856
|
141
|
-
clarifai/runners/models/model_builder.py,sha256=
|
142
|
-
clarifai/runners/models/model_class.py,sha256=
|
141
|
+
clarifai/runners/models/model_builder.py,sha256=vIUZII9n5wL0SGV4xR6wfsdRvrMv4pSHr6P-KdYpikI,36343
|
142
|
+
clarifai/runners/models/model_class.py,sha256=2l7AZ2MrwR8tMIIV7KQSagZIzSwydyIFUOu0uFo-4gI,14742
|
143
143
|
clarifai/runners/models/model_class_refract.py,sha256=HxuozxSW7ag5yWCPxjNwgLArQ6dORhyGXlnpPaZz2-c,3211
|
144
|
-
clarifai/runners/models/model_run_locally.py,sha256=
|
144
|
+
clarifai/runners/models/model_run_locally.py,sha256=H7FKUBzZ_EPPj1b6P59qbOYr3mUJjJTlD5gavH5e80o,17746
|
145
145
|
clarifai/runners/models/model_runner.py,sha256=T4Qn_x0vky7XdeS54bvipzEmKZMra1tQdAu_u01yyjc,6503
|
146
146
|
clarifai/runners/models/model_servicer.py,sha256=A--b1P71PBCAMJCpy_-fpNDkfCVdvdMh1LleW15dSas,3037
|
147
147
|
clarifai/runners/models/model_upload.py,sha256=VjJgNNBPP9O7LkNCXxOqa0lTW1M7k6XKVyI6XlLdXIc,25095
|
@@ -157,14 +157,15 @@ clarifai/runners/models/__pycache__/model_runner.cpython-310.pyc,sha256=RHvGNi6k
|
|
157
157
|
clarifai/runners/models/__pycache__/model_upload.cpython-310.pyc,sha256=I4s70fCr6ItSS0jy5OCOCBGLSFpDD_RRnfCvo6dYMxY,19847
|
158
158
|
clarifai/runners/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
159
159
|
clarifai/runners/utils/code_script.py,sha256=NutTcbJWChjSb_WLNwkesavzcpP_-wh_R4ySWt0VPcI,8971
|
160
|
-
clarifai/runners/utils/const.py,sha256=
|
160
|
+
clarifai/runners/utils/const.py,sha256=9qnOC1Bt6SGLQ9XCQEQ6519XhW4gzcztsV1Rgej67Vw,1055
|
161
161
|
clarifai/runners/utils/data_handler.py,sha256=b7k6MWYPXSgjrfw6wsDf82xFYa0D7UjYmjE4mw5HzHM,8499
|
162
162
|
clarifai/runners/utils/data_handler_refract.py,sha256=3M-V4hkOoF-9Ix4hE6ocXWiTJPc9dewtu6FMtddd-jQ,6343
|
163
|
-
clarifai/runners/utils/data_types.py,sha256=
|
164
|
-
clarifai/runners/utils/data_utils.py,sha256=
|
165
|
-
clarifai/runners/utils/loader.py,sha256=
|
163
|
+
clarifai/runners/utils/data_types.py,sha256=CtcYoW4EFE1EG6JkcP2rcRast9Eac8hFoYRHHCuwl2w,12432
|
164
|
+
clarifai/runners/utils/data_utils.py,sha256=GmFRRI2xcULEUPGmTTDsEXaVHrs65Nplbxl-7toOeIc,11354
|
165
|
+
clarifai/runners/utils/loader.py,sha256=Sl0m29RDtMPx2cIiSbbDFtKHQj2ktXQ5CnkvaHi-zDc,8804
|
166
166
|
clarifai/runners/utils/logger.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
167
|
-
clarifai/runners/utils/method_signatures.py,sha256=
|
167
|
+
clarifai/runners/utils/method_signatures.py,sha256=2SSStcBuBUbIgvFgAJFt4By0ZHos2c7bDWJOiUxQxZQ,18190
|
168
|
+
clarifai/runners/utils/openai_format.py,sha256=vOrpgqVWmQZGGFANZf0hmR_ksZXsr2-S9WUxvkG5lZs,1980
|
168
169
|
clarifai/runners/utils/serializers.py,sha256=S4sRsOVvH191vAGTRTAAdwLlQwlK4T5QVRDGPptg9nQ,7191
|
169
170
|
clarifai/runners/utils/url_fetcher.py,sha256=v_8JOWmkyFAzsBulsieKX7Nfjy1Yg7wGSZeqfEvw2cg,1640
|
170
171
|
clarifai/runners/utils/__pycache__/__init__.cpython-310.pyc,sha256=0GGbXIecXlOZmQKMCkSRhEBY_a1zvoimv-mHG4pJuNA,167
|
@@ -203,10 +204,11 @@ clarifai/schema/__pycache__/search.cpython-310.pyc,sha256=ayHFx9pSfUb5-3a1Kp1wNK
|
|
203
204
|
clarifai/urls/helper.py,sha256=tjoMGGHuWX68DUB0pk4MEjrmFsClUAQj2jmVEM_Sy78,4751
|
204
205
|
clarifai/urls/__pycache__/helper.cpython-310.pyc,sha256=lCihxxdg2XEsMxlHxnUSWGm0sZ2_C5daoVEcdl_XTDg,5010
|
205
206
|
clarifai/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
206
|
-
clarifai/utils/cli.py,sha256=
|
207
|
-
clarifai/utils/
|
208
|
-
clarifai/utils/
|
209
|
-
clarifai/utils/
|
207
|
+
clarifai/utils/cli.py,sha256=FUFJJb8Jzohpt132JE43xHNzWtX0N8fbWROxJISfCM0,5072
|
208
|
+
clarifai/utils/config.py,sha256=MxuQ1U4EOT4yVOEcRyv3OUPnoY_A_J5cZKHJGiuuo30,2883
|
209
|
+
clarifai/utils/constants.py,sha256=fdCmw8fjgo8eoWu85t95ZoRTrgXC5_XVXFyB8_VQTtw,219
|
210
|
+
clarifai/utils/logging.py,sha256=I2Sj1X-phYcINXe4-pW22Tq6Sz5PlwcxYQh7zORBbeM,13634
|
211
|
+
clarifai/utils/misc.py,sha256=gensDjU5pV44iFzUzmM_Lf6PZX63GFxRXJX91esEjAg,2999
|
210
212
|
clarifai/utils/model_train.py,sha256=Mndqy5GNu7kjQHjDyNVyamL0hQFLGSHcWhOuPyOvr1w,8005
|
211
213
|
clarifai/utils/__pycache__/__init__.cpython-310.pyc,sha256=UAxDITd52fW5iz543-Bld_xbGWvwaAGi3jXOunzZ8i4,159
|
212
214
|
clarifai/utils/__pycache__/__init__.cpython-39.pyc,sha256=NQ0Y9mOMFF4ippT0WS7Y8-cNkjp8McxW-_Oj6X1rxuk,162
|
@@ -230,9 +232,9 @@ clarifai/workflows/__pycache__/__init__.cpython-39.pyc,sha256=9nA--jULSW7OFrYOcs
|
|
230
232
|
clarifai/workflows/__pycache__/export.cpython-310.pyc,sha256=phEGwi2gAojCUhRTqjZVeTDn7Gk6LCVBeSTjAj4m9iY,2418
|
231
233
|
clarifai/workflows/__pycache__/utils.cpython-310.pyc,sha256=M9_KTM7GOOS5SPrWwAzqHDqyGvgKi3xuSGvyw6MNf-I,1925
|
232
234
|
clarifai/workflows/__pycache__/validate.cpython-310.pyc,sha256=c18Jgp_-CAm8RD_tmUpDCPoqZeexaoWELG0yBzb9rjw,2149
|
233
|
-
clarifai-11.2.
|
234
|
-
clarifai-11.2.
|
235
|
-
clarifai-11.2.
|
236
|
-
clarifai-11.2.
|
237
|
-
clarifai-11.2.
|
238
|
-
clarifai-11.2.
|
235
|
+
clarifai-11.2.3rc8.dist-info/LICENSE,sha256=mUqF_d12-qE2n41g7C5_sq-BMLOcj6CNN-jevr15YHU,555
|
236
|
+
clarifai-11.2.3rc8.dist-info/METADATA,sha256=-U8BnxyMRl3eeTJqgrBkkeyhvGne7rNFX9eSY5fQJ0k,22453
|
237
|
+
clarifai-11.2.3rc8.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
238
|
+
clarifai-11.2.3rc8.dist-info/entry_points.txt,sha256=X9FZ4Z-i_r2Ud1RpZ9sNIFYuu_-9fogzCMCRUD9hyX0,51
|
239
|
+
clarifai-11.2.3rc8.dist-info/top_level.txt,sha256=wUMdCQGjkxaynZ6nZ9FAnvBUCgp5RJUVFSy2j-KYo0s,9
|
240
|
+
clarifai-11.2.3rc8.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|