onnx-diagnostic 0.7.6__py3-none-any.whl → 0.7.8__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.
- onnx_diagnostic/__init__.py +1 -1
- onnx_diagnostic/_command_lines_parser.py +56 -3
- onnx_diagnostic/export/dynamic_shapes.py +24 -10
- onnx_diagnostic/export/shape_helper.py +6 -2
- onnx_diagnostic/helpers/cache_helper.py +83 -7
- onnx_diagnostic/helpers/config_helper.py +57 -0
- onnx_diagnostic/helpers/helper.py +6 -1
- onnx_diagnostic/reference/ops/op_cast_like.py +15 -11
- onnx_diagnostic/reference/torch_ops/__init__.py +1 -0
- onnx_diagnostic/reference/torch_ops/unary_ops.py +7 -0
- onnx_diagnostic/tasks/automatic_speech_recognition.py +6 -2
- onnx_diagnostic/tasks/feature_extraction.py +7 -3
- onnx_diagnostic/tasks/fill_mask.py +6 -2
- onnx_diagnostic/tasks/image_classification.py +6 -2
- onnx_diagnostic/tasks/image_text_to_text.py +48 -12
- onnx_diagnostic/tasks/mask_generation.py +6 -2
- onnx_diagnostic/tasks/mixture_of_expert.py +2 -2
- onnx_diagnostic/tasks/object_detection.py +6 -2
- onnx_diagnostic/tasks/sentence_similarity.py +6 -2
- onnx_diagnostic/tasks/summarization.py +7 -2
- onnx_diagnostic/tasks/text2text_generation.py +7 -2
- onnx_diagnostic/tasks/text_classification.py +6 -2
- onnx_diagnostic/tasks/text_generation.py +8 -14
- onnx_diagnostic/torch_export_patches/onnx_export_errors.py +3 -3
- onnx_diagnostic/torch_export_patches/patch_inputs.py +1 -1
- onnx_diagnostic/torch_export_patches/patches/patch_torch.py +4 -4
- onnx_diagnostic/torch_export_patches/patches/patch_transformers.py +227 -1
- onnx_diagnostic/torch_export_patches/serialization/transformers_impl.py +3 -1
- onnx_diagnostic/torch_models/hghub/hub_data.py +5 -0
- onnx_diagnostic/torch_models/hghub/hub_data_cached_configs.py +70 -1
- onnx_diagnostic/torch_models/hghub/model_inputs.py +13 -1
- onnx_diagnostic/torch_models/validate.py +17 -0
- {onnx_diagnostic-0.7.6.dist-info → onnx_diagnostic-0.7.8.dist-info}/METADATA +2 -2
- {onnx_diagnostic-0.7.6.dist-info → onnx_diagnostic-0.7.8.dist-info}/RECORD +37 -37
- {onnx_diagnostic-0.7.6.dist-info → onnx_diagnostic-0.7.8.dist-info}/WHEEL +0 -0
- {onnx_diagnostic-0.7.6.dist-info → onnx_diagnostic-0.7.8.dist-info}/licenses/LICENSE.txt +0 -0
- {onnx_diagnostic-0.7.6.dist-info → onnx_diagnostic-0.7.8.dist-info}/top_level.txt +0 -0
|
@@ -261,7 +261,9 @@ def unflatten_encoder_decoder_cache(
|
|
|
261
261
|
) -> EncoderDecoderCache:
|
|
262
262
|
"""Restores a :class:`transformers.cache_utils.EncoderDecoderCache` from python objects."""
|
|
263
263
|
dictionary = torch.utils._pytree._dict_unflatten(values, context)
|
|
264
|
-
return EncoderDecoderCache(
|
|
264
|
+
return EncoderDecoderCache(
|
|
265
|
+
dictionary["self_attention_cache"], dictionary["cross_attention_cache"]
|
|
266
|
+
)
|
|
265
267
|
|
|
266
268
|
|
|
267
269
|
#############
|
|
@@ -37,6 +37,7 @@ __data_arch__ = textwrap.dedent(
|
|
|
37
37
|
DebertaModel,feature-extraction
|
|
38
38
|
DebertaV2Model,feature-extraction
|
|
39
39
|
DecisionTransformerModel,reinforcement-learning
|
|
40
|
+
DeepseekV3ForCausalLM,text-generation
|
|
40
41
|
DeiTModel,image-feature-extraction
|
|
41
42
|
DetrModel,image-feature-extraction
|
|
42
43
|
Dinov2Model,image-feature-extraction
|
|
@@ -52,9 +53,12 @@ __data_arch__ = textwrap.dedent(
|
|
|
52
53
|
GPTJModel,feature-extraction
|
|
53
54
|
GPTNeoModel,feature-extraction
|
|
54
55
|
GPTNeoXForCausalLM,text-generation
|
|
56
|
+
GptOssForCausalLM,text-generation
|
|
55
57
|
GemmaForCausalLM,text-generation
|
|
56
58
|
Gemma2ForCausalLM,text-generation
|
|
57
59
|
Gemma3ForConditionalGeneration,image-text-to-text
|
|
60
|
+
Gemma3ForCausalLM,text-generation
|
|
61
|
+
Glm4vMoeForConditionalGeneration,image-text-to-text
|
|
58
62
|
GraniteForCausalLM,text-generation
|
|
59
63
|
GroupViTModel,feature-extraction
|
|
60
64
|
HieraForImageClassification,image-classification
|
|
@@ -107,6 +111,7 @@ __data_arch__ = textwrap.dedent(
|
|
|
107
111
|
PvtForImageClassification,image-classification
|
|
108
112
|
Qwen2ForCausalLM,text-generation
|
|
109
113
|
Qwen2_5_VLForConditionalGeneration,image-text-to-text
|
|
114
|
+
Qwen3MoeForCausalLM,text-generation
|
|
110
115
|
RTDetrForObjectDetection,object-detection
|
|
111
116
|
RegNetModel,image-feature-extraction
|
|
112
117
|
RemBertModel,feature-extraction
|
|
@@ -4562,7 +4562,7 @@ def _ccached_diffusers_tiny_torch_full_checker_unet():
|
|
|
4562
4562
|
}
|
|
4563
4563
|
|
|
4564
4564
|
|
|
4565
|
-
def
|
|
4565
|
+
def _ccached_tiny_random_gemma_3():
|
|
4566
4566
|
"tiny-random/gemma-3"
|
|
4567
4567
|
return transformers.Gemma3Config(
|
|
4568
4568
|
**{
|
|
@@ -4618,3 +4618,72 @@ def _ccached_riny_random_gemma_3():
|
|
|
4618
4618
|
},
|
|
4619
4619
|
}
|
|
4620
4620
|
)
|
|
4621
|
+
|
|
4622
|
+
|
|
4623
|
+
def _ccached_zai_glm_45():
|
|
4624
|
+
"zai-org/GLM-4.5V"
|
|
4625
|
+
return transformers.Glm4vMoeConfig(
|
|
4626
|
+
**{
|
|
4627
|
+
"architectures": ["Glm4vMoeForConditionalGeneration"],
|
|
4628
|
+
"model_type": "glm4v_moe",
|
|
4629
|
+
"text_config": {
|
|
4630
|
+
"pad_token_id": 151329,
|
|
4631
|
+
"vocab_size": 151552,
|
|
4632
|
+
"eos_token_id": [151329, 151336, 151338],
|
|
4633
|
+
"image_end_token_id": 151340,
|
|
4634
|
+
"image_start_token_id": 151339,
|
|
4635
|
+
"image_token_id": 151363,
|
|
4636
|
+
"head_dim": 128,
|
|
4637
|
+
"attention_bias": true,
|
|
4638
|
+
"attention_dropout": 0.0,
|
|
4639
|
+
"first_k_dense_replace": 1,
|
|
4640
|
+
"hidden_act": "silu",
|
|
4641
|
+
"hidden_size": 4096,
|
|
4642
|
+
"initializer_range": 0.02,
|
|
4643
|
+
"intermediate_size": 10944,
|
|
4644
|
+
"max_position_embeddings": 65536,
|
|
4645
|
+
"model_type": "glm4v_moe_text",
|
|
4646
|
+
"moe_intermediate_size": 1408,
|
|
4647
|
+
"n_group": 1,
|
|
4648
|
+
"n_routed_experts": 128,
|
|
4649
|
+
"n_shared_experts": 1,
|
|
4650
|
+
"norm_topk_prob": true,
|
|
4651
|
+
"num_attention_heads": 96,
|
|
4652
|
+
"num_experts_per_tok": 8,
|
|
4653
|
+
"num_hidden_layers": 46,
|
|
4654
|
+
"num_key_value_heads": 8,
|
|
4655
|
+
"partial_rotary_factor": 0.5,
|
|
4656
|
+
"rms_norm_eps": 1e-05,
|
|
4657
|
+
"torch_dtype": "bfloat16",
|
|
4658
|
+
"rope_scaling": {"rope_type": "default", "mrope_section": [8, 12, 12]},
|
|
4659
|
+
"rope_theta": 10000.0,
|
|
4660
|
+
"routed_scaling_factor": 1.0,
|
|
4661
|
+
"topk_group": 1,
|
|
4662
|
+
"use_cache": true,
|
|
4663
|
+
"use_qk_norm": false,
|
|
4664
|
+
},
|
|
4665
|
+
"torch_dtype": "bfloat16",
|
|
4666
|
+
"transformers_version": "4.55.0.dev0",
|
|
4667
|
+
"video_end_token_id": 151342,
|
|
4668
|
+
"video_start_token_id": 151341,
|
|
4669
|
+
"video_token_id": 151364,
|
|
4670
|
+
"vision_config": {
|
|
4671
|
+
"attention_bias": false,
|
|
4672
|
+
"attention_dropout": 0.0,
|
|
4673
|
+
"depth": 24,
|
|
4674
|
+
"hidden_act": "silu",
|
|
4675
|
+
"hidden_size": 1536,
|
|
4676
|
+
"image_size": 336,
|
|
4677
|
+
"in_channels": 3,
|
|
4678
|
+
"initializer_range": 0.02,
|
|
4679
|
+
"intermediate_size": 10944,
|
|
4680
|
+
"model_type": "glm4v_moe",
|
|
4681
|
+
"num_heads": 12,
|
|
4682
|
+
"out_hidden_size": 4096,
|
|
4683
|
+
"patch_size": 14,
|
|
4684
|
+
"rms_norm_eps": 1e-05,
|
|
4685
|
+
"spatial_merge_size": 2,
|
|
4686
|
+
"temporal_patch_size": 2,
|
|
4687
|
+
},
|
|
4688
|
+
}
|
|
4689
|
+
)
|
|
@@ -1,10 +1,11 @@
|
|
|
1
|
+
import copy
|
|
1
2
|
import inspect
|
|
2
3
|
import os
|
|
3
4
|
import pprint
|
|
4
5
|
from typing import Any, Dict, Optional, Tuple
|
|
5
6
|
import torch
|
|
6
7
|
import transformers
|
|
7
|
-
from ...helpers.config_helper import update_config
|
|
8
|
+
from ...helpers.config_helper import update_config, build_diff_config
|
|
8
9
|
from ...tasks import reduce_model_config, random_input_kwargs
|
|
9
10
|
from .hub_api import task_from_arch, task_from_id, get_pretrained_config, download_code_modelid
|
|
10
11
|
|
|
@@ -121,6 +122,7 @@ def get_untrained_model_with_inputs(
|
|
|
121
122
|
)
|
|
122
123
|
|
|
123
124
|
# updating the configuration
|
|
125
|
+
config0 = copy.deepcopy(config)
|
|
124
126
|
mkwargs = reduce_model_config(config, task) if not same_as_pretrained else {}
|
|
125
127
|
if model_kwargs:
|
|
126
128
|
for k, v in model_kwargs.items():
|
|
@@ -133,6 +135,15 @@ def get_untrained_model_with_inputs(
|
|
|
133
135
|
mkwargs[k] = v
|
|
134
136
|
if mkwargs:
|
|
135
137
|
update_config(config, mkwargs)
|
|
138
|
+
try:
|
|
139
|
+
diff_config = build_diff_config(config0, config)
|
|
140
|
+
except (ValueError, AttributeError, TypeError) as e:
|
|
141
|
+
diff_config = f"DIFF CONFIG ERROR {e}"
|
|
142
|
+
if verbose:
|
|
143
|
+
if diff_config:
|
|
144
|
+
print("[get_untrained_model_with_inputs] -- updated config")
|
|
145
|
+
pprint.pprint(diff_config)
|
|
146
|
+
print("[get_untrained_model_with_inputs] --")
|
|
136
147
|
|
|
137
148
|
# SDPA
|
|
138
149
|
if model_kwargs and "attn_implementation" in model_kwargs:
|
|
@@ -232,6 +243,7 @@ def get_untrained_model_with_inputs(
|
|
|
232
243
|
|
|
233
244
|
res["input_kwargs"] = kwargs
|
|
234
245
|
res["model_kwargs"] = mkwargs
|
|
246
|
+
res["dump_info"] = dict(config_diff=diff_config)
|
|
235
247
|
|
|
236
248
|
sizes = compute_model_size(model)
|
|
237
249
|
res["model"] = model
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import datetime
|
|
2
2
|
import inspect
|
|
3
3
|
import os
|
|
4
|
+
import pprint
|
|
4
5
|
import sys
|
|
5
6
|
from typing import Any, Callable, Dict, List, Optional, Tuple, Union
|
|
6
7
|
import time
|
|
@@ -426,6 +427,7 @@ def validate_model(
|
|
|
426
427
|
print(f"[validate_model] validate model id {model_id!r}, subfolder={subfolder!r}")
|
|
427
428
|
else:
|
|
428
429
|
print(f"[validate_model] validate model id {model_id!r}")
|
|
430
|
+
print(f"[validate_model] patch={patch!r}")
|
|
429
431
|
if model_options:
|
|
430
432
|
print(f"[validate_model] model_options={model_options!r}")
|
|
431
433
|
print(f"[validate_model] get dummy inputs with input_options={input_options}...")
|
|
@@ -466,6 +468,21 @@ def validate_model(
|
|
|
466
468
|
f"inputs2 is True but second set is missing in data for "
|
|
467
469
|
f"model id {model_id!r}: {sorted(data)}"
|
|
468
470
|
)
|
|
471
|
+
if dump_folder:
|
|
472
|
+
with open(os.path.join(dump_folder, "model_config.txt"), "w") as f:
|
|
473
|
+
f.write(f"model_id: {model_id}\n------\n")
|
|
474
|
+
f.write(
|
|
475
|
+
pprint.pformat(
|
|
476
|
+
data["configuration"]
|
|
477
|
+
if type(data["configuration"]) is dict
|
|
478
|
+
else data["configuration"].to_dict()
|
|
479
|
+
)
|
|
480
|
+
)
|
|
481
|
+
dump_info = data.get("dump_info", None)
|
|
482
|
+
if dump_info:
|
|
483
|
+
with open(os.path.join(dump_folder, "model_dump_info.txt"), "w") as f:
|
|
484
|
+
f.write(f"model_id: {model_id}\n------\n")
|
|
485
|
+
f.write(pprint.pformat(dump_info))
|
|
469
486
|
|
|
470
487
|
if exporter == "modelbuilder":
|
|
471
488
|
# Models used with ModelBuilder do not like batch size > 1.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: onnx-diagnostic
|
|
3
|
-
Version: 0.7.
|
|
3
|
+
Version: 0.7.8
|
|
4
4
|
Summary: Investigate ONNX models
|
|
5
5
|
Home-page: https://github.com/sdpython/onnx-diagnostic
|
|
6
6
|
Author: Xavier Dupré
|
|
@@ -27,7 +27,7 @@ Requires-Dist: numpy
|
|
|
27
27
|
Requires-Dist: onnx>=1.16.0
|
|
28
28
|
Requires-Dist: onnxruntime>=1.21
|
|
29
29
|
Requires-Dist: optree
|
|
30
|
-
Requires-Dist: torch>=2.
|
|
30
|
+
Requires-Dist: torch>=2.8
|
|
31
31
|
Requires-Dist: torch_geometric
|
|
32
32
|
Dynamic: author
|
|
33
33
|
Dynamic: author-email
|
|
@@ -1,22 +1,22 @@
|
|
|
1
|
-
onnx_diagnostic/__init__.py,sha256=
|
|
1
|
+
onnx_diagnostic/__init__.py,sha256=atIZhOUaWoHQQ1pUnGu6Qn-uTq_KocBvIG5yInBKI04,173
|
|
2
2
|
onnx_diagnostic/__main__.py,sha256=YmyV_Aq_ianDlHyKLHMa6h8YK3ZmFPpLVHLKjM91aCk,79
|
|
3
|
-
onnx_diagnostic/_command_lines_parser.py,sha256=
|
|
3
|
+
onnx_diagnostic/_command_lines_parser.py,sha256=8JlT1vzyGztkJT2v6lpQx5itLKY4FYlpFng3z8n3TAU,32937
|
|
4
4
|
onnx_diagnostic/api.py,sha256=BhCl_yCd78N7TlVtPOHjeYv1QBEy39TjZ647rcHqLh0,345
|
|
5
5
|
onnx_diagnostic/doc.py,sha256=t3RELgfooYnVMAi0JSpggWkQEgUsREz8NmRvn0TnLI8,2829
|
|
6
6
|
onnx_diagnostic/ext_test_case.py,sha256=emfQGiQSz5FVDhyJ1Acsv_Tast7tWl426TjtpNqxDBU,43558
|
|
7
7
|
onnx_diagnostic/export/__init__.py,sha256=yEIoWiOeTwBsDhyYt2fTKuhtA0Ya1J9u9ZzMTOTWaWs,101
|
|
8
|
-
onnx_diagnostic/export/dynamic_shapes.py,sha256=
|
|
9
|
-
onnx_diagnostic/export/shape_helper.py,sha256=
|
|
8
|
+
onnx_diagnostic/export/dynamic_shapes.py,sha256=Go4_sIwiolCy_m1djQ3U_bX6C1EFw4al3x-ty-PsuME,41393
|
|
9
|
+
onnx_diagnostic/export/shape_helper.py,sha256=PI_SgE1MNRKSrQ414eYoBZ54QGZbYisHSvqi9tstL2s,7795
|
|
10
10
|
onnx_diagnostic/export/validate.py,sha256=_PGUql2DJhIgGKo0WjTGUc5AgsZUx8fEs00MePy-w98,6043
|
|
11
11
|
onnx_diagnostic/helpers/__init__.py,sha256=GJ2GT7cgnlIveVUwMZhuvUwidbTJaKv8CsSIOpZDsJg,83
|
|
12
12
|
onnx_diagnostic/helpers/_log_helper.py,sha256=zZ7AqGpiF3O2-9N8fLuPeB5VfJpbg3tQ20ccDRdQPVE,16753
|
|
13
13
|
onnx_diagnostic/helpers/args_helper.py,sha256=SRWnqC7EENg09RZlA50B_PcdiIhdbgA4C3ACfzl5nMs,4419
|
|
14
14
|
onnx_diagnostic/helpers/bench_run.py,sha256=CGA6VMJZMH2gDhVueT9ypNm4PMcjGrrGFYp08nhWj9k,16539
|
|
15
|
-
onnx_diagnostic/helpers/cache_helper.py,sha256=
|
|
16
|
-
onnx_diagnostic/helpers/config_helper.py,sha256=
|
|
15
|
+
onnx_diagnostic/helpers/cache_helper.py,sha256=dFiKPnD3qT_rel9C7Az9AEnbV2drfSMSdXBRotJJUU4,24686
|
|
16
|
+
onnx_diagnostic/helpers/config_helper.py,sha256=H2mOcMXfrcolFnt8EuqmRFkpQ3YdNRDfvm9ToI1vNH0,5618
|
|
17
17
|
onnx_diagnostic/helpers/doc_helper.py,sha256=pl5MZd3_FaE8BqQnqoBuSBxoNCFcd2OJd3eITUSku5c,5897
|
|
18
18
|
onnx_diagnostic/helpers/graph_helper.py,sha256=hevQT5a7_QuriVPQcbT5qe18n99Doyl5h3-qshx1-uk,14093
|
|
19
|
-
onnx_diagnostic/helpers/helper.py,sha256=
|
|
19
|
+
onnx_diagnostic/helpers/helper.py,sha256=OsQz2um10DgGiX3fgOulTDFQop0wCMX6shPonQgN71w,62940
|
|
20
20
|
onnx_diagnostic/helpers/log_helper.py,sha256=rBYtZo85n61uQRIpxKpxkKTtKv-bDZvAc1J1uHRDosc,82567
|
|
21
21
|
onnx_diagnostic/helpers/memory_peak.py,sha256=OT6mz0muBbBZY0pjgW2_eCk_lOtFRo-5w4jFo2Z6Kok,6380
|
|
22
22
|
onnx_diagnostic/helpers/mini_onnx_builder.py,sha256=FgK-Kws1WpSYdYJCPyONwQYY3AjbgUHimZlaYyiNUfE,21286
|
|
@@ -36,7 +36,7 @@ onnx_diagnostic/reference/ops/op_add_add_mul_mul.py,sha256=CXQVtgVrT066gDJFwxL4n
|
|
|
36
36
|
onnx_diagnostic/reference/ops/op_attention.py,sha256=ThALMDF53v3QeG1bohi0bvX2o90HZhGJbbAFOtwEHPE,2027
|
|
37
37
|
onnx_diagnostic/reference/ops/op_average_pool_grad.py,sha256=zMcOtjB7hWySfIIFXogcmj3xxCWwxEX_g2VKg-SOAEs,2360
|
|
38
38
|
onnx_diagnostic/reference/ops/op_bias_softmax.py,sha256=dcXsw2chxc8-puIkI0LFsBxKOJaCSovDcF1HkgboQp0,524
|
|
39
|
-
onnx_diagnostic/reference/ops/op_cast_like.py,sha256=
|
|
39
|
+
onnx_diagnostic/reference/ops/op_cast_like.py,sha256=Sn0QA47bQ8laXJUl7VaxtsWCzCTpwkAQdv7F4A-AB5c,1557
|
|
40
40
|
onnx_diagnostic/reference/ops/op_complex.py,sha256=OobDrRNYcktdCdTJzOQBesrKC8vsKxuHIi7Yev1DJrs,651
|
|
41
41
|
onnx_diagnostic/reference/ops/op_concat.py,sha256=seW71-QDKzv9QQhjhjThKip0Y3d9nkVd7Hs1A2nNQjk,519
|
|
42
42
|
onnx_diagnostic/reference/ops/op_constant_of_shape.py,sha256=3G9TRxaUoqYudnKrVHBEblo_16qMl0c9wNZqnQeNJJ4,2009
|
|
@@ -60,7 +60,7 @@ onnx_diagnostic/reference/ops/op_skip_layer_normalization.py,sha256=oJ7fQNx2iQh9
|
|
|
60
60
|
onnx_diagnostic/reference/ops/op_slice.py,sha256=yRxfYBs8b7QezyyG9JHCD8MIJHij2qR2NNDpBmD3FJI,705
|
|
61
61
|
onnx_diagnostic/reference/ops/op_transpose_cast.py,sha256=ifef74rvh0Yvq1Zx51B4mfnISbxV9uRg9DFjkdL1_68,361
|
|
62
62
|
onnx_diagnostic/reference/ops/op_tri_matrix.py,sha256=Yn2gxAyygcwtF5Hjau9ihXDAzul0BAkdqVimVahtFBU,519
|
|
63
|
-
onnx_diagnostic/reference/torch_ops/__init__.py,sha256=
|
|
63
|
+
onnx_diagnostic/reference/torch_ops/__init__.py,sha256=fIDMG0KhNYuB4q_57Z5zz0ME6_w8Q0tnqUCooijoOW4,1163
|
|
64
64
|
onnx_diagnostic/reference/torch_ops/_op_run.py,sha256=EEUIwfbRldEFDhULquYhk9x5ZDa9t6f2mKJ1sM__D6A,10517
|
|
65
65
|
onnx_diagnostic/reference/torch_ops/access_ops.py,sha256=Zfs5OF03PV1CqlCqKI5VV-c4MY3KyQxmO7QZksxQjX8,3274
|
|
66
66
|
onnx_diagnostic/reference/torch_ops/binary_ops.py,sha256=-KxMcCYGDTcZyOss9qU1nU0rmdyg9SdVHJQohseSTcQ,2653
|
|
@@ -71,54 +71,54 @@ onnx_diagnostic/reference/torch_ops/other_ops.py,sha256=FnCY60mhdrzrsiHgvN-XpFRH
|
|
|
71
71
|
onnx_diagnostic/reference/torch_ops/reduce_ops.py,sha256=9gFfraPTQbe_ZEUNCUis1JSmA5dj4tSzjAOpZPJKG4Y,5102
|
|
72
72
|
onnx_diagnostic/reference/torch_ops/sequence_ops.py,sha256=3EiVKpGfN4d1Iry4hgnr3MIJyEEKUrAIDgmRGsUXXa0,2297
|
|
73
73
|
onnx_diagnostic/reference/torch_ops/shape_ops.py,sha256=pJrNR2UB4PlWl6cv4EDl1uGl8YTBUUMQkhJcsh5K4sA,4291
|
|
74
|
-
onnx_diagnostic/reference/torch_ops/unary_ops.py,sha256=
|
|
74
|
+
onnx_diagnostic/reference/torch_ops/unary_ops.py,sha256=dwu6HPr4V_roxu85U3VLTtDLx5bfxKalT_-zlQxZ5wc,1850
|
|
75
75
|
onnx_diagnostic/tasks/__init__.py,sha256=uWFP7HIr-VnxmXD5i_QAfXnLXc1HwUq2e8v9cKLqraQ,2492
|
|
76
|
-
onnx_diagnostic/tasks/automatic_speech_recognition.py,sha256=
|
|
77
|
-
onnx_diagnostic/tasks/feature_extraction.py,sha256=
|
|
78
|
-
onnx_diagnostic/tasks/fill_mask.py,sha256=
|
|
79
|
-
onnx_diagnostic/tasks/image_classification.py,sha256=
|
|
80
|
-
onnx_diagnostic/tasks/image_text_to_text.py,sha256=
|
|
81
|
-
onnx_diagnostic/tasks/mask_generation.py,sha256=
|
|
82
|
-
onnx_diagnostic/tasks/mixture_of_expert.py,sha256=
|
|
83
|
-
onnx_diagnostic/tasks/object_detection.py,sha256=
|
|
84
|
-
onnx_diagnostic/tasks/sentence_similarity.py,sha256=
|
|
85
|
-
onnx_diagnostic/tasks/summarization.py,sha256=
|
|
86
|
-
onnx_diagnostic/tasks/text2text_generation.py,sha256
|
|
87
|
-
onnx_diagnostic/tasks/text_classification.py,sha256=
|
|
88
|
-
onnx_diagnostic/tasks/text_generation.py,sha256=
|
|
76
|
+
onnx_diagnostic/tasks/automatic_speech_recognition.py,sha256=tguoQO77okXo8vcJrN2FAmpO9zkq04WSY8OKgm5sqRw,7185
|
|
77
|
+
onnx_diagnostic/tasks/feature_extraction.py,sha256=pcFON5uGKoykjg52bMsvpYG7KJvXd8JDC43rAjXIzB0,5572
|
|
78
|
+
onnx_diagnostic/tasks/fill_mask.py,sha256=Z0OyDs3pcnjJLzZBbS52d6pa6jh6m2Uy8-h3nF5wbDA,2675
|
|
79
|
+
onnx_diagnostic/tasks/image_classification.py,sha256=nLpBBB1Gkog3Fk6pu2waiHcuQr4ILPptc9FhQ-pn460,4682
|
|
80
|
+
onnx_diagnostic/tasks/image_text_to_text.py,sha256=XlikpvAdB2q4sQ9U17JZWLUZ77_rGsbICM-xxcgqfQc,17498
|
|
81
|
+
onnx_diagnostic/tasks/mask_generation.py,sha256=fjdD3rd-O-mFL0hQy3la3JXKth_0bH2HL7Eelq-3Dbs,5057
|
|
82
|
+
onnx_diagnostic/tasks/mixture_of_expert.py,sha256=al4tk1BrHidtRiHlAaiflWiJaAte0d5M8WcBioANG9k,2808
|
|
83
|
+
onnx_diagnostic/tasks/object_detection.py,sha256=3FiT8ya5FCd9lwjQCRXhAwXspNwYTlAD3Gpk8aAcG5w,4279
|
|
84
|
+
onnx_diagnostic/tasks/sentence_similarity.py,sha256=Azpw9hxLwxM7O14Rj0mzH73LrrYGhiBm8fIb_tVnXCM,2690
|
|
85
|
+
onnx_diagnostic/tasks/summarization.py,sha256=tH2aX8undH8n-CGzDp-d-nBil2TD4Kv3PqeiaiFLkqY,8327
|
|
86
|
+
onnx_diagnostic/tasks/text2text_generation.py,sha256=-5Iy938AsQBXmA2chxYc7MUZQ7ZlmWJQ7k_O66wGTTo,8637
|
|
87
|
+
onnx_diagnostic/tasks/text_classification.py,sha256=JbKjnMoocr-k3-RVC5b-68kZaKJTPTm3aKSTXShHEo0,2746
|
|
88
|
+
onnx_diagnostic/tasks/text_generation.py,sha256=i1tX_cOMnKwIvEcm2EFNWtZ4DwJGcQ6EGQGSJmu69Oc,12858
|
|
89
89
|
onnx_diagnostic/tasks/text_to_image.py,sha256=mOS3Ruosi3hzRMxXLDN7ZkAbi7NnQb7MWwQP_okGVHs,2962
|
|
90
90
|
onnx_diagnostic/tasks/zero_shot_image_classification.py,sha256=1iqYamkq5kZNXEXsySw748ernc0O94GkwpYAIEl6Kj4,4659
|
|
91
91
|
onnx_diagnostic/torch_export_patches/__init__.py,sha256=0SaZedwznm1hQUCvXZsGZORV5vby954wEExr5faepGg,720
|
|
92
|
-
onnx_diagnostic/torch_export_patches/onnx_export_errors.py,sha256=
|
|
92
|
+
onnx_diagnostic/torch_export_patches/onnx_export_errors.py,sha256=Nx3HLII-KIemfMydraTRlwK9O0kgVug57SiLT9y9KOY,23749
|
|
93
93
|
onnx_diagnostic/torch_export_patches/onnx_export_serialization.py,sha256=klvqiMjccwGhiRnLRVbwTi5WWkMfvtnOV5ycirPcAdA,11354
|
|
94
94
|
onnx_diagnostic/torch_export_patches/patch_expressions.py,sha256=vr4tt61cbDnaaaduzMj4UBZ8OUtr6GfDpIWwOYqjWzs,3213
|
|
95
|
-
onnx_diagnostic/torch_export_patches/patch_inputs.py,sha256=
|
|
95
|
+
onnx_diagnostic/torch_export_patches/patch_inputs.py,sha256=3ySY1nAzINSS1hAzTycwfdbPas8G5CDL2MjnaAHBkMU,7825
|
|
96
96
|
onnx_diagnostic/torch_export_patches/patch_module.py,sha256=R2d9IHM-RwsBKDsxuBIJnEqMoxbS9gd4YWFGG2wwV5A,39881
|
|
97
97
|
onnx_diagnostic/torch_export_patches/patch_module_helper.py,sha256=2U0AdyZuU0W54QTdE7tY7imVzMnpQ5091ADNtTCkT8Y,6967
|
|
98
98
|
onnx_diagnostic/torch_export_patches/eval/__init__.py,sha256=57x62uZNA80XiWgkG8Fe0_8YJcIVrvKLPqvwLDPJwgc,24008
|
|
99
99
|
onnx_diagnostic/torch_export_patches/eval/model_cases.py,sha256=DTvdHPtNQh25Akv5o3D4Jxf1L1-SJ7w14tgvj8AAns8,26577
|
|
100
100
|
onnx_diagnostic/torch_export_patches/patches/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
101
|
-
onnx_diagnostic/torch_export_patches/patches/patch_torch.py,sha256=
|
|
102
|
-
onnx_diagnostic/torch_export_patches/patches/patch_transformers.py,sha256=
|
|
101
|
+
onnx_diagnostic/torch_export_patches/patches/patch_torch.py,sha256=g1UjL6A6iB7Qh2Cs1efuKk5377IvsSnZXUk3jNeRu_E,18830
|
|
102
|
+
onnx_diagnostic/torch_export_patches/patches/patch_transformers.py,sha256=tcDNJzOIivyOM6XbTm4munHKHAmVrOKE6nbqIdl-4dg,66290
|
|
103
103
|
onnx_diagnostic/torch_export_patches/serialization/__init__.py,sha256=BHLdRPtNAtNPAS-bPKEj3-foGSPvwAbZXrHzGGPDLEw,1876
|
|
104
104
|
onnx_diagnostic/torch_export_patches/serialization/diffusers_impl.py,sha256=drq3EH_yjcSuIWYsVeUWm8Cx6YCZFU6bP_1PLtPfY5I,945
|
|
105
|
-
onnx_diagnostic/torch_export_patches/serialization/transformers_impl.py,sha256=
|
|
105
|
+
onnx_diagnostic/torch_export_patches/serialization/transformers_impl.py,sha256=dAKi4zujlBxDvxvaVI_qH4qW9AlpVFMtCkvGTNCJCUY,9353
|
|
106
106
|
onnx_diagnostic/torch_models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
107
107
|
onnx_diagnostic/torch_models/llms.py,sha256=soyg4yC87ptGoeulJhKqw5opGmuLvH1pn_ZDXZ4Jr8E,90
|
|
108
|
-
onnx_diagnostic/torch_models/validate.py,sha256=
|
|
108
|
+
onnx_diagnostic/torch_models/validate.py,sha256=fFDe68M5-1W67UEkLLFqKbaUNjN1qyehyBMxrlZTs90,65588
|
|
109
109
|
onnx_diagnostic/torch_models/hghub/__init__.py,sha256=vi1Q7YHdddj1soiBN42MSvJdFqe2_KUoWafHISjwOu8,58
|
|
110
110
|
onnx_diagnostic/torch_models/hghub/hub_api.py,sha256=Bvr-sTAhS6s6UCkt-KsY_7Mdai08-AQzvHrzbYCSuvk,13186
|
|
111
|
-
onnx_diagnostic/torch_models/hghub/hub_data.py,sha256=
|
|
112
|
-
onnx_diagnostic/torch_models/hghub/hub_data_cached_configs.py,sha256=
|
|
113
|
-
onnx_diagnostic/torch_models/hghub/model_inputs.py,sha256=
|
|
111
|
+
onnx_diagnostic/torch_models/hghub/hub_data.py,sha256=W05mciqUqhaYEfYNHtUeuwOMOZoQTuDidRLEIx4z1CE,8523
|
|
112
|
+
onnx_diagnostic/torch_models/hghub/hub_data_cached_configs.py,sha256=mboN04WTZMPgfw_JOP01aINWjmq6qmOKQhDE28Fc_zY,282283
|
|
113
|
+
onnx_diagnostic/torch_models/hghub/model_inputs.py,sha256=h6Pi0dkUFXpDGudJ5mQQ9NSQCOjpF6Pm-J6_shsWiH4,11546
|
|
114
114
|
onnx_diagnostic/torch_models/untrained/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
115
115
|
onnx_diagnostic/torch_models/untrained/llm_phi2.py,sha256=ynBTDHJHCk44NjLT_t6OiFDBdPP0rFGPteiONDxvztw,3708
|
|
116
116
|
onnx_diagnostic/torch_models/untrained/llm_tiny_llm.py,sha256=QXw_Bs2SzfeiQMf-tmtVl83SmVOL4-Um7Qy-f0E48QI,2507
|
|
117
117
|
onnx_diagnostic/torch_onnx/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
118
118
|
onnx_diagnostic/torch_onnx/runtime_info.py,sha256=1g9F_Jf9AAgYQU4stbsrFXwQl-30mWlQrFbQ7val8Ps,9268
|
|
119
119
|
onnx_diagnostic/torch_onnx/sbs.py,sha256=1EL25DeYFzlBSiFG_XjePBLvsiItRXbdDrr5-QZW2mA,16878
|
|
120
|
-
onnx_diagnostic-0.7.
|
|
121
|
-
onnx_diagnostic-0.7.
|
|
122
|
-
onnx_diagnostic-0.7.
|
|
123
|
-
onnx_diagnostic-0.7.
|
|
124
|
-
onnx_diagnostic-0.7.
|
|
120
|
+
onnx_diagnostic-0.7.8.dist-info/licenses/LICENSE.txt,sha256=Vv6TXglX6Rc0d-f8aREhayhT-6PMQXEyOmI2NKlUCMc,1045
|
|
121
|
+
onnx_diagnostic-0.7.8.dist-info/METADATA,sha256=6szG1djw7CRRO3FOrgBWGW3hZ3hNL6zwIOlcWrmtl9k,7431
|
|
122
|
+
onnx_diagnostic-0.7.8.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
123
|
+
onnx_diagnostic-0.7.8.dist-info/top_level.txt,sha256=KwNkXewmcobM3ZT1DJLVWH6ebJzA5qKg7cWqKfpGNT4,16
|
|
124
|
+
onnx_diagnostic-0.7.8.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|