Skip to content

Commit bdfbce8

Browse files
use_internal_tpc = True # Use MCT's built-in Target Platform Capabilities
1 parent 7116eaf commit bdfbce8

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

tutorials/notebooks/mct_features_notebooks/keras/example_keras_mct_wrapper.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -442,7 +442,7 @@
442442
" # Configuration for GPTQ quantization\n",
443443
" method = 'GPTQ' # Gradient-based Post-Training Quantization\n",
444444
" framework = 'tensorflow' # Target framework (Keras/TensorFlow)\n",
445-
" use_internal_tpc = True # Use external EdgeMDT Target Platform Capabilities\n",
445+
" use_internal_tpc = True # Use MCT's built-in Target Platform Capabilities\n",
446446
" use_mixed_precision = False # Disable mixed-precision quantization\n",
447447
"\n",
448448
" # Parameter configuration for GPTQ\n",
@@ -509,7 +509,7 @@
509509
" # Configuration for GPTQ with mixed precision\n",
510510
" method = 'GPTQ' # Gradient-based Post-Training Quantization\n",
511511
" framework = 'tensorflow' # Target framework (Keras/TensorFlow)\n",
512-
" use_internal_tpc = True # Use external EdgeMDT Target Platform Capabilities\n",
512+
" use_internal_tpc = True # Use MCT's built-in Target Platform Capabilities\n",
513513
" use_mixed_precision = True # Enable mixed-precision quantization\n",
514514
"\n",
515515
" # Parameter configuration for GPTQ with Mixed Precision\n",

tutorials/notebooks/mct_features_notebooks/pytorch/example_pytorch_mct_wrapper.ipynb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,7 @@
301301
" # Configuration for PyTorch PTQ quantization\n",
302302
" method = 'PTQ' # Post-Training Quantization method\n",
303303
" framework = 'pytorch' # Target framework (PyTorch)\n",
304-
" use_internal_tpc = True # Use external EdgeMDT Target Platform Capabilities\n",
304+
" use_internal_tpc = True # Use MCT's built-in Target Platform Capabilities\n",
305305
" use_mixed_precision = False # Disable mixed-precision quantization\n",
306306
"\n",
307307
" # Parameter configuration for PyTorch PTQ\n",
@@ -368,7 +368,7 @@
368368
" # Configuration for PyTorch PTQ with mixed precision\n",
369369
" method = 'PTQ' # Post-Training Quantization method\n",
370370
" framework = 'pytorch' # Target framework (PyTorch)\n",
371-
" use_internal_tpc = True # Use external EdgeMDT Target Platform Capabilities\n",
371+
" use_internal_tpc = True # Use MCT's built-in Target Platform Capabilities\n",
372372
" use_mixed_precision = True # Enable mixed-precision quantization\n",
373373
"\n",
374374
" # Parameter configuration for PyTorch PTQ with Mixed Precision\n",
@@ -435,7 +435,7 @@
435435
" # Configuration for PyTorch GPTQ quantization\n",
436436
" method = 'GPTQ' # Gradient-based Post-Training Quantization\n",
437437
" framework = 'pytorch' # Target framework (PyTorch)\n",
438-
" use_internal_tpc = True # Use external EdgeMDT Target Platform Capabilities\n",
438+
" use_internal_tpc = True # Use MCT's built-in Target Platform Capabilities\n",
439439
" use_mixed_precision = False # Disable mixed-precision quantization\n",
440440
"\n",
441441
" # Parameter configuration for PyTorch GPTQ\n",
@@ -501,7 +501,7 @@
501501
" # Configuration for PyTorch GPTQ with mixed precision\n",
502502
" method = 'GPTQ' # Gradient-based Post-Training Quantization\n",
503503
" framework = 'pytorch' # Target framework (PyTorch)\n",
504-
" use_internal_tpc = True # Use external EdgeMDT Target Platform Capabilities\n",
504+
" use_internal_tpc = True # Use MCT's built-in Target Platform Capabilities\n",
505505
" use_mixed_precision = True # Enable mixed-precision quantization\n",
506506
"\n",
507507
" # Parameter configuration for PyTorch GPTQ with Mixed Precision\n",

0 commit comments

Comments
 (0)