This question could seem difficult but I need to know how tom import ResNeXt model into Keras Tensor-flow, I have tried but there was no use
from keras.applications.resnext import ResNeXt50
---------------------------------------------------------------------------
ModuleNotFoundError Traceback (most recent call last)
<ipython-input-1-ca380748170a> in <module>
----> 1 from keras.applications.resnext import ResNeXt50
~/opt/anaconda3/lib/python3.8/site-packages/keras/__init__.py in <module>
1 from __future__ import absolute_import
----> 2 from . import backend
3 from . import datasets
4 from . import engine
5 from . import layers
~/opt/anaconda3/lib/python3.8/site-packages/keras/backend/__init__.py in <module>
65 elif _BACKEND == 'tensorflow':
66 sys.stderr.write('Using TensorFlow backend.\n')
---> 67 from .tensorflow_backend import *
68 else:
69 raise ValueError('Unknown backend: ' + str(_BACKEND))
~/opt/anaconda3/lib/python3.8/site-packages/keras/backend/tensorflow_backend.py in <module>
----> 1 import tensorflow as tf
2
3 from tensorflow.python.training import moving_averages
4 from tensorflow.python.ops import tensor_array_ops
5 from tensorflow.python.ops import control_flow_ops
No module named 'keras.applications.resnext'