добрый день,
Я пишу функцию для предварительной обработки строковых данных.Я хочу, чтобы строчные данные строчных букв.Я попытался проверить функцию, передав список сообщений, который представляет собой список строк.Тем не менее, я продолжаю получать эту ошибку, когда я вызываю функцию:
IOPub data rate exceeded.
The notebook server will temporarily stop sending output
to the client in order to avoid crashing it.
To change this limit, set the config variable
`--NotebookApp.iopub_data_rate_limit`.
Current values:
NotebookApp.iopub_data_rate_limit=1000000.0 (bytes/sec)
NotebookApp.rate_limit_window=3.0 (secs)
Это моя функция здесь:
def text_preprocess(message)
""" message: the text data to be processed """
words = ''.join(str(twit.lower()) for twit in message)
return words
# Testing the function on a list of strings called messages
test = text_preprocess(messages)
# Length of the list messages
print(len(messages))
Output: 1548000
Я не понимаю, почему возникает это сообщение?Любые предложения здесь будут оценены.Спасибо