abhisheks008 / DL-Simplified

Deep Learning Simplified is an Open-source repository, containing beginner to advance level deep learning projects for the contributors, who are willing to start their journey in Deep Learning. Devfolio URL, https://devfolio.co/projects/deep-learning-simplified-f013
https://quine.sh/repo/abhisheks008-DL-Simplified-499023976
MIT License
388 stars 333 forks source link

Sentence Auto Completion using LSTM #840

Open ashis2004 opened 3 months ago

ashis2004 commented 3 months ago

Deep Learning Simplified Repository (Proposing new issue)

:red_circle: Project Title : Sentence Auto completion using LSTM
:red_circle: Aim :LSTM-based sentence auto-completion is in text editors and word processing software, where it enhances user productivity by suggesting the next word or phrase, thereby reducing typing effort. It can also be integrated into email clients to offer smart replies or in code editors to assist with code completion.
:red_circle: Dataset :https://www.kaggle.com/datasets/noorsaeed/holmes
:red_circle: Approach : Try to use 3-4 algorithms to implement the models and compare all the algorithms to find out the best fitted algorithm for the model by checking the accuracy scores. Also do not forget to do a exploratory data analysis before creating any model.

  1. Prepare dataset and preprocess the text data.
  2. Define and compile the model using the provided script.
  3. Train the model on dataset.
  4. Use the trained model to predict the next word in a given sentence.

📍 Follow the Guidelines to Contribute in the Project :


:red_circle::yellow_circle: Points to Note :


:white_check_mark: To be Mentioned while taking the issue :


Happy Contributing 🚀

All the best. Enjoy your open source journey ahead. 😎

github-actions[bot] commented 3 months ago

Thank you for creating this issue! We'll look into it as soon as possible. Your contributions are highly appreciated! 😊

abhisheks008 commented 3 months ago

LSTM is the most used model for this kind of problem statement, apart from it, what are the models you can apply for this problem statement. Need to share at least 3-4 architectures along with LSTM.

ashis2004 commented 3 months ago

I can try GRU, Transformer and BERT pls assign it me @abhisheks008

abhisheks008 commented 3 months ago

Assigned @ashis2004. Make sure you implement all the mentioned the models from your side.