Skip to content
This repository was archived by the owner on Jul 10, 2025. It is now read-only.

Commit d6e1e0e

Browse files
author
ematejska
authored
Merge pull request #371 from abedshantti/patch-1
Removed duplicate encode parch layers
2 parents c7ee13a + 4326892 commit d6e1e0e

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

rfcs/20191212-keras-categorical-inputs.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,6 @@ for key in INT_CATEGORICAL_COLUMNS:
255255
for key in NUMERIC_COLUMNS:
256256
keras_input = tf.keras.Input(shape=(1,), dtype=tf.float32, name=key)
257257
keras_inputs[key] = keras_input
258-
keras_preproc_inputs.append(keras_preproc_input)
259258

260259
age_x_sex = tf.keras.layers.experimental.preprocessing.CategoryCrossing(name='age_x_sex_crossing')([keras_inputs['age'], keras_inputs['sex']])
261260
age_x_sex = tf.keras.layers.experimental.preprocessing.Hashing(num_bins=100, name='age_x_sex_hashing')(age_x_sex)

0 commit comments

Comments
 (0)