Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

AttributeError: module 'keras.utils' has no attribute 'to_categorical'

from keras.preprocessing.text import text_to_word_sequence
import pandas as pd
from keras.preprocessing.text import Tokenizer
import numpy as np
# from __future__ import print_function
from keras.preprocessing import sequence
from keras.models import Sequential
from keras.layers import Dense, Dropout, Activation
from keras.layers import Embedding
from keras.layers import Conv1D, GlobalMaxPooling1D
x = df_f.iloc[:, 1].values
y = df_f.iloc[:, 0].values
tk = Tokenizer(num_words= 200, filters = '!"#$%&()*+,-./:;<=>?@[\\]^_`{|}~\t\n',lower=True, 
split=" ")
tk.fit_on_texts(x)
x = tk.texts_to_sequences(x)
x = sequence.pad_sequences(x, maxlen=200)
from keras import utils as np_utils
y =np_utils.to_categorical(y, num_classes= 24)

I am using keras version 2.5 and tenser flow version 2.5 I import utils from keras

like image 920
Sujeet maurya Avatar asked Mar 05 '26 16:03

Sujeet maurya


2 Answers

Newer versions of keras==2.4.0 and tensorflow==2.3.0 would work as follows so use:

from keras.utils import np_utils

and then replace keras.utils.to_categorical with

keras.utils.np_utils.to_categorical
like image 186
Eng Adam Al mohammedi Avatar answered Mar 07 '26 06:03

Eng Adam Al mohammedi


U can also use from tensorflow.keras.utils import to_categorical this error pops up for a lot of attributes. Sometimes, clearly importing the attribute also helps, but in this case; you have to specify tensorflow.keras

like image 41
Anshuman Tekriwal Avatar answered Mar 07 '26 07:03

Anshuman Tekriwal



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!