Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion nyoka/PMML44/doc/source/scripts/PMML44Super.py
Original file line number Diff line number Diff line change
Expand Up @@ -40676,7 +40676,7 @@ def exportAttributes(self, outfile, level, already_processed, namespace_='', nam
if self.countHits != "allHits" and 'countHits' not in already_processed:
already_processed.add('countHits')
outfile.write(' countHits=%s' % (self.gds_encode(self.gds_format_string(quote_attrib(self.countHits), input_name='countHits')), ))
if self.wordSeparatorCharacterRE != "\s+" and 'wordSeparatorCharacterRE' not in already_processed:
if self.wordSeparatorCharacterRE != "\\s+" and 'wordSeparatorCharacterRE' not in already_processed:
already_processed.add('wordSeparatorCharacterRE')
outfile.write(' wordSeparatorCharacterRE=%s' % (self.gds_encode(self.gds_format_string(quote_attrib(self.wordSeparatorCharacterRE), input_name='wordSeparatorCharacterRE')), ))
if not self.tokenize and 'tokenize' not in already_processed:
Expand Down
2 changes: 1 addition & 1 deletion nyoka/PMML44/pmml44Super.py
Original file line number Diff line number Diff line change
Expand Up @@ -36442,7 +36442,7 @@ def exportAttributes(self, outfile, level, already_processed, namespace_='', nam
if self.countHits != "allHits" and 'countHits' not in already_processed:
already_processed.add('countHits')
outfile.write(' countHits=%s' % (self.gds_encode(self.gds_format_string(quote_attrib(self.countHits), input_name='countHits')), ))
if self.wordSeparatorCharacterRE != "\s+" and 'wordSeparatorCharacterRE' not in already_processed:
if self.wordSeparatorCharacterRE != "\\s+" and 'wordSeparatorCharacterRE' not in already_processed:
already_processed.add('wordSeparatorCharacterRE')
outfile.write(' wordSeparatorCharacterRE=%s' % (self.gds_encode(self.gds_format_string(quote_attrib(self.wordSeparatorCharacterRE), input_name='wordSeparatorCharacterRE')), ))
if not self.tokenize and 'tokenize' not in already_processed:
Expand Down
2 changes: 1 addition & 1 deletion nyoka/PMML44Super.py
Original file line number Diff line number Diff line change
Expand Up @@ -36461,7 +36461,7 @@ def exportAttributes(self, outfile, level, already_processed, namespace_='', nam
if self.countHits != "allHits" and 'countHits' not in already_processed:
already_processed.add('countHits')
outfile.write(' countHits=%s' % (self.gds_encode(self.gds_format_string(quote_attrib(self.countHits), input_name='countHits')), ))
if self.wordSeparatorCharacterRE != "\s+" and 'wordSeparatorCharacterRE' not in already_processed:
if self.wordSeparatorCharacterRE != "\\s+" and 'wordSeparatorCharacterRE' not in already_processed:
already_processed.add('wordSeparatorCharacterRE')
outfile.write(' wordSeparatorCharacterRE=%s' % (self.gds_encode(self.gds_format_string(quote_attrib(self.wordSeparatorCharacterRE), input_name='wordSeparatorCharacterRE')), ))
if not self.tokenize and 'tokenize' not in already_processed:
Expand Down