@@ -715,7 +715,7 @@ class OVQuantizationConfigTest(unittest.TestCase):
715
715
(OVWeightQuantizationConfig (bits = 8 , sym = True ),),
716
716
(
717
717
OVWeightQuantizationConfig (
718
- dataset = "wikitext " ,
718
+ dataset = "wikitext2 " ,
719
719
bits = 4 ,
720
720
ignored_scope = {"names" : ["op_name" ]},
721
721
sym = False ,
@@ -747,7 +747,7 @@ class OVQuantizationConfigTest(unittest.TestCase):
747
747
(dict (bits = 8 , sym = True ), OVWeightQuantizationConfig , None ),
748
748
(
749
749
dict (
750
- dataset = "wikitext " ,
750
+ dataset = "wikitext2 " ,
751
751
bits = 4 ,
752
752
ignored_scope = {"names" : ["op_name" ]},
753
753
sym = False ,
@@ -771,7 +771,7 @@ class OVQuantizationConfigTest(unittest.TestCase):
771
771
(dict (num_samples = 100 ), OVWeightQuantizationConfig , "Can't determine type of OV quantization config" ),
772
772
(dict (abc = "def" ), OVWeightQuantizationConfig , "Can't determine type of OV quantization config" ),
773
773
(
774
- dict (bits = 8 , fast_bias_correction = True , dataset = "wikitext " ),
774
+ dict (bits = 8 , fast_bias_correction = True , dataset = "wikitext2 " ),
775
775
OVWeightQuantizationConfig ,
776
776
"Can't determine type of OV quantization config" ,
777
777
),
@@ -793,7 +793,7 @@ class OVQuantizationConfigTest(unittest.TestCase):
793
793
(dict (abc = "def" , weight_only = False ), OVQuantizationConfig , None ),
794
794
(dict (abc = "def" , weight_only = True ), OVWeightQuantizationConfig , None ),
795
795
(
796
- dict (bits = 8 , fast_bias_correction = True , dataset = "wikitext " , weight_only = True ),
796
+ dict (bits = 8 , fast_bias_correction = True , dataset = "wikitext2 " , weight_only = True ),
797
797
OVWeightQuantizationConfig ,
798
798
None ,
799
799
),
0 commit comments