Pipe1213 commited on
Commit
41f4f06
1 Parent(s): c612025

Update text/cleaners.py

Browse files
Files changed (1) hide show
  1. text/cleaners.py +1 -1
text/cleaners.py CHANGED
@@ -66,7 +66,7 @@ def convert_to_ascii(text):
66
 
67
  def basic_cleaners(text):
68
  '''Basic pipeline that lowercases and collapses whitespace without transliteration.'''
69
- text = lowercase(text)
70
  text = collapse_whitespace(text)
71
  text = replace_quote(text)
72
  text = remove_special_characters(text)
 
66
 
67
  def basic_cleaners(text):
68
  '''Basic pipeline that lowercases and collapses whitespace without transliteration.'''
69
+ #text = lowercase(text)
70
  text = collapse_whitespace(text)
71
  text = replace_quote(text)
72
  text = remove_special_characters(text)