Skip to content

Commit 2d76b3c

Browse files
committed
Updated Large-scale multi-label text classification example for Keras v3
1 parent a3f7572 commit 2d76b3c

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

examples/nlp/multi_label_classification.py

+4-3
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,9 @@
3030
## Imports
3131
"""
3232

33-
from tensorflow.keras import layers
34-
from tensorflow import keras
33+
import keras
34+
from keras import layers
35+
3536
import tensorflow as tf
3637

3738
from sklearn.model_selection import train_test_split
@@ -145,7 +146,7 @@
145146
"""
146147

147148
terms = tf.ragged.constant(train_df["terms"].values)
148-
lookup = tf.keras.layers.StringLookup(output_mode="multi_hot")
149+
lookup = layers.StringLookup(output_mode="multi_hot")
149150
lookup.adapt(terms)
150151
vocab = lookup.get_vocabulary()
151152

0 commit comments

Comments
 (0)