Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>There is an unsupervized boot-strapping approach that was explained to me to do this.</p> <p>There are different ways of applying this approach, and variants, but here's a simplified version. </p> <h2>Concept:</h2> <p>Start by a assuming that if two words are synonyms, then in your corpus they will appear in similar settings. (eating grapes, eating sandwich, etc.)</p> <p>(In this variant I will use co-occurence as the setting).</p> <h2>Boot-Strapping Algorithm:</h2> <p>We have two lists, </p> <ul> <li>one list will contain the words that co-occur with food items</li> <li>one list will contain the words that are food items</li> </ul> <h3>Supervized Part</h3> <p>Start by seeding one of the lists, for instance I might write the word Apple on the food items list.</p> <p>Now let the computer take over.</p> <h3>Unsupervized Parts</h3> <p>It will first find all words in the corpus that appear just before Apple, and sort them in order of most occuring. </p> <p>Take the top two (or however many you want) and add them into the co-occur with food items list. For example, perhaps "eating" and "Delicious" are the top two.</p> <p>Now use that list to find the next two top food words by ranking the words that appear to the right of each word in the list.</p> <p>Continue this process expanding each list until you are happy with the results. </p> <h3>Once that's done</h3> <p>(you may need to manually remove some things from the lists as you go which are clearly wrong.)</p> <h3>Variants</h3> <p>This procedure can be made quite effective if you take into account the grammatical setting of the keywords. </p> <pre><code>Subj ate NounPhrase NounPhrase are/is Moldy The workers harvested the Apples. subj verb Apples That might imply harvested is an important verb for distinguishing foods. Then look for other occurrences of subj harvested nounPhrase </code></pre> <p>You can expand this process to move words into categories, instead of a single category at each step.</p> <h3>My Source</h3> <p>This approach was used in a system developed at the University of Utah a few years back which was successful at compiling a decent list of weapon words, victim words, and place words by just looking at news articles.</p> <p>An interesting approach, and had good results.</p> <p>Not a neural network approach, but an intriguing methodology.</p> <h3>Edit:</h3> <p>the system at the University of Utah was called AutoSlog-TS, and a short slide about it can be seen <a href="http://www.eng.utah.edu/~cs5340/slides/event_ie.4.pdf">here</a> towards the end of the presentation. And a link to a paper about it <a href="http://www.cs.utah.edu/research/techreports/2004/pdf/UUCS-04-015.pdf">here</a></p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload