keras-team / keras-nlp

Modular Natural Language Processing workflows with Keras
Apache License 2.0
734 stars 216 forks source link

Fix Keras import #1593

Closed sampathweb closed 2 months ago

sampathweb commented 2 months ago

With the change in keras3 to use src and api folders, the from keras import * inside keras_nlp/backend/keras.py doesn't import the src namespace.

To fix this -

  1. Renamed the keras.py to keras2.py
  2. Handle the import of keras in backend/__init__.py

This change has no impact to the users since its only required for accessing private files in Tests.