I am testing deleting a topic

There is example on Sentiment analysis using Tensorflow JS.
[TensorFlow.js Example: Sentiment Analysis](https://TensorFlow.js Example: Sentiment Analysis)

Alternate option.
Convert any text classification model into Tensorflow.js compatible using Tensorflowjs converter.

tensorflowjs_converter --input_format keras \                       
                                            path/to/my_model.h5 \                       
                                            path/to/tfjs_target_dir

Follow the steps mentioned Importing a Keras model into TensorFlow.js

Hi @Sandy ,

Thanks for this information. Addition to this information, tfjs-converter currently doesn’t support Keras 3 models when you loading converted model as layer model, due to a missing model input shape after conversion. If you’re using tfjs-converter with Keras 3 and this is your use case, you’ll need to downgrade to Keras 2.

Thank You!!!