Code Monkey home page Code Monkey logo

rewrite-article-generator's Introduction

Rewrite Article Generator

Article Generator

Article Rewriter Tool - Reword or Paraphrase Text Content, is a machine learning program that allows you to change the sentences contained in an article while keeping the same meaning. The algorithm makes that for each word he doesn't know then the program will find on the website thesaurus.com an associated list of synonyms and store it in is own database (so basically the program will be faster and faster over time). Thereafter the program will replace each word by the best possible synonym. Several configuration levels are possible.

Installation

Clone the repository in you web app folder:

git clone -b master git://github.com/ShinoNoNuma/rewrite-article.git rephrase

Change the directory permission for /tmp folder:

chmod -R 1777 rephrase

Now let's create the Database (MySQL):

mysql -uroot -p
CREATE DATABASE IF NOT EXISTS rephrase;

Import the tables:

mysql -uroot -p rephrase < rephrase.sql

Edit the file app/Config/database.php to link the project to the database previously created:

public $default = array(
		'datasource' => 'Database/Mysql',
		'persistent' => false,
		'host' => 'localhost',
		'login' => 'root',
		'password' => 'password',
		'database' => 'rephrase',
		'prefix' => '',
		//'encoding' => 'utf8',
	);

Now App Rewrite Article Generator is ready, please go to http://localhost/rephrase

***Notice : This project is just a prototype. I used the framework cakephp 2.10

rewrite-article-generator's People

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.