Skip to content

Commit

Permalink
Renamed text_detection to ocr
Browse files Browse the repository at this point in the history
  • Loading branch information
gowthamkpr committed Aug 6, 2024
1 parent 3b0304f commit 4dc7f78
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@
# See the License for the specific language governing permissions and
# limitations under the License.

from keras_nlp.src.models.text_detection.diffbin.diffbin import DiffBin
from keras_nlp.src.models.ocr.diffbin.diffbin import DiffBin
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@
from keras_nlp.src.backend import keras
from keras_nlp.src.models import utils
from keras_nlp.src.models.backbones.backbone_presets import backbone_presets
from keras_nlp.src.models.text_detection.diffbin.diffbin_presets import (
from keras_nlp.src.models.ocr.diffbin.diffbin_presets import (
basnet_presets,
)
from keras_nlp.src.models.text_detection.diffbin.diffbin_presets import (
from keras_nlp.src.models.ocr.diffbin.diffbin_presets import (
presets_no_weights,
)
from keras_nlp.src.models.text_detection.diffbin.diffbin_presets import (
from keras_nlp.src.models.ocr.diffbin.diffbin_presets import (
presets_with_weights,
)
from keras_nlp.src.models.task import Task
Expand All @@ -35,7 +35,7 @@
@keras_nlp_export(
[
"keras_nlp.models.DiffBin",
"keras_nlp.models.text_detection.DiffBin",
"keras_nlp.models.ocr.DiffBin",
]
)
class DiffBin(Task):
Expand Down

0 comments on commit 4dc7f78

Please sign in to comment.