Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7614247
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T02:21:20+00:00 2026-05-31T02:21:20+00:00

What is the best tool that can do text simplification using Java? Here is

  • 0

What is the best tool that can do text simplification using Java?

Here is an example of text simplification:

John, who was the CEO of a company, played golf.
                       ↓
John played golf. John was the CEO of a company.
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-31T02:21:21+00:00Added an answer on May 31, 2026 at 2:21 am

    I see your problem as a task of converting complex or compound sentence into simple sentences.
    Based on literature Sentence Types, a simple sentence is built from one independent clause. A compound and complex sentence is built from at least two clauses. Also, clause must have subject and verb.
    So your task is to split sentence into clauses that form your sentence.

    Dependency parsing from Stanford CoreNLP is a perfect tools to split compound and complex sentence into simple sentence. You can try the demo online.
    From your sample sentence, we will get parse result in Stanford typed dependency (SD) notation as shown below:

    nsubj(CEO-6, John-1)
    nsubj(played-11, John-1)
    cop(CEO-6, was-4)
    det(CEO-6, the-5)
    rcmod(John-1, CEO-6)
    det(company-9, a-8)
    prep_of(CEO-6, company-9)
    root(ROOT-0, played-11)
    dobj(played-11, golf-12)

    A clause can be identified from relation (in SD) which category is subject, e.g. nsubj, nsubjpass. See Stanford Dependency Manual
    Basic clause can be extracted from head as verb part and dependent as subject part. From SD above, there are two basic clause i.e.

    • John CEO
    • John played

    After you get basic clause, you can add another part to make your clause a complete and meaningful sentence. To do so, please consult Stanford Dependency Manual.

    By the way, your question might be related with Finding meaningful sub-sentences from a sentence


    Answer to 3rd comment:

    Once you got the pair of subject an verb, i.e. nsubj(CEO-6, John-1), get all dependencies that have link to that dependency, except any dependency which category is subject, then extract unique word from these dependencies.

    Based on example, nsubj(CEO-6, John-1), if you start traversing from John-1, you’ll get nsubj(played-11, John-1) but you should ignore it since its category is subject.

    Next step is traversing from CEO-6 part. You’ll get

    cop(CEO-6, was-4)
    det(CEO-6, the-5)
    rcmod(John-1, CEO-6)
    prep_of(CEO-6, company-9)

    From result above, you got new dependencies to traverse (i.e. find another dependencies that have was-4, the-5, company-9 in either head or dependent).
    Now your dependencies are

    cop(CEO-6, was-4)
    det(CEO-6, the-5)
    rcmod(John-1, CEO-6)
    prep_of(CEO-6, company-9)
    det(company-9, a-8)

    In this step, you’ve finished traversing all dependecies linked to nsubj(CEO-6, John-1). Next, extract words from all head and dependent, then arrange the word in ascending order based on number appended to these words. This number indicating word order in original sentence.

    John was the CEO a company

    Our new sentence is missing one part, i.e of. This part is hidden in prep_of(CEO-6, company-9). If you read Stanford Dependency Manual, there are two kinds of SD, collapsed and non-collapsed. Please read them to understand why this of is hidden and how to get the word order of this hidden part.

    With same approach, you’ll get second sentence

    John played golf

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm looking for a tool (best for free) which can synchronize two SQL Server
Is there a tool out there that can analyse SQL Server databases for potential
I'm making a tool that can do some operations on a transition system and
I would like to find a tool/library that can take user-entered free format telephone
In Android applications, what is the best strategy to generate reports that can be
Is there a command line tool that can add an icon to an existing
I'm just debugging a recursive function, and the best on-the-fly inspection tool that I've
Is there any automatic tool that I can transform legacy uniprocessor programs to the
What is the best practice (interface and implementation) for a command line tool that
Can anyone either point me to (or provide here) a clear, step-by-step approach that

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.