I have a Rails app. I need to implement automatic text categorization algorithms and possibly more NLP capabilities in app. I believe Ruby does not have good NLP tools available as Python has. I am using a separate resque server for process background jobs. I believe I have following
- Run python scripts using resque jobs
- Run a flask application on a separate server which can either talk to resque job or can automatically update the app database with processed results.
- Use Ruby tools mentioned in this thread
- Any other suggestions welcome
Please let me know what is the best way to do it. Are there any similar working examples?