Skip to content

Latest commit

 

History

History
38 lines (34 loc) · 1.37 KB

README.md

File metadata and controls

38 lines (34 loc) · 1.37 KB

Genessay 📃

Compose application letters with ease!


Genessay is a content generation web application which can help in composing application letters. If you're stuck and cannot frame sentences, enter the points you want included in your letter and Genessay will generate the text for you!

Requirements

Genessay uses various Natural Language Processing (NLP) methods and Recurrent Neural Networks (RNN) to generate the text.

  1. Python 64-bit
  2. See dependencies list in requirements.txt

How to run

  1. Clone the repository
    git clone https://github.com/shivaneej/Genessay.git
  2. Create a Virtual Environment
    python -m virtualenv name
  3. Activate the virtual environment
    name\Scripts\activate
  4. Install requirements
    pip install -r requirements.txt
  5. Download spaCy en-core-web-sm language model
    python -m spacy download en_core_web_sm
  6. Download punkt module from NLTK
    nltk.download('punkt')
  7. Start the server
    python main.py
    The server will run on http://localhost:8080

Contributors