@@ -715,7 +715,7 @@ class OVQuantizationConfigTest(unittest.TestCase):
715715 (OVWeightQuantizationConfig (bits = 8 , sym = True ),),
716716 (
717717 OVWeightQuantizationConfig (
718- dataset = "wikitext " ,
718+ dataset = "wikitext2 " ,
719719 bits = 4 ,
720720 ignored_scope = {"names" : ["op_name" ]},
721721 sym = False ,
@@ -747,7 +747,7 @@ class OVQuantizationConfigTest(unittest.TestCase):
747747 (dict (bits = 8 , sym = True ), OVWeightQuantizationConfig , None ),
748748 (
749749 dict (
750- dataset = "wikitext " ,
750+ dataset = "wikitext2 " ,
751751 bits = 4 ,
752752 ignored_scope = {"names" : ["op_name" ]},
753753 sym = False ,
@@ -771,7 +771,7 @@ class OVQuantizationConfigTest(unittest.TestCase):
771771 (dict (num_samples = 100 ), OVWeightQuantizationConfig , "Can't determine type of OV quantization config" ),
772772 (dict (abc = "def" ), OVWeightQuantizationConfig , "Can't determine type of OV quantization config" ),
773773 (
774- dict (bits = 8 , fast_bias_correction = True , dataset = "wikitext " ),
774+ dict (bits = 8 , fast_bias_correction = True , dataset = "wikitext2 " ),
775775 OVWeightQuantizationConfig ,
776776 "Can't determine type of OV quantization config" ,
777777 ),
@@ -793,7 +793,7 @@ class OVQuantizationConfigTest(unittest.TestCase):
793793 (dict (abc = "def" , weight_only = False ), OVQuantizationConfig , None ),
794794 (dict (abc = "def" , weight_only = True ), OVWeightQuantizationConfig , None ),
795795 (
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 ),
797797 OVWeightQuantizationConfig ,
798798 None ,
799799 ),
0 commit comments