Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

686
Views
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

over 4 years ago · Santiago Trujillo
2 answers
Answer question

0

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
over 4 years ago · Santiago Trujillo Report

0

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

over 4 years ago · Santiago Trujillo Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!