Thread: Syntax Highlighting for English?

  1. #46
    Lean Mean Coding Machine KONI's Avatar
    Join Date
    Mar 2007
    Location
    Luxembourg, Europe
    Posts
    444
    You're discussing part-of-speech tagging of natural language here, which is considered "solved" (almost solved) and for which there exist very robust programs already. I linked to some part of speech tagging methods in post #31, namely Brill and HMM. They basically have a forest and maximize the probability of several trees producing the given phrase.

    This already works very well (depending on the vocabulary, slang, out-of-dictionary forms etc). What the discussion should focus on is, if in natural language, this a) is useful and b) takes away the subtlety of our language, like jokes, literature or even "sexual" ambiguous remarks.

  2. #47
    Moderately Rabid Decrypt's Avatar
    Join Date
    Feb 2005
    Location
    Milwaukee, WI, USA
    Posts
    300
    Oops, I forgot to follow the links. As far as it's use, I think we agree it's pretty limited. It may help as a teaching tool, but, other than that, I don't think it provides much benefit.

    p.s. Richard is my hero
    There is a difference between tedious and difficult.

  3. #48
    Officially An Architect brewbuck's Avatar
    Join Date
    Mar 2007
    Location
    Portland, OR
    Posts
    7,396
    Quote Originally Posted by Decrypt View Post
    The idea is that, if this highlighter is to work, I think that it'd have to use general grammatical rules instead of a strict set of uses for each word as mentioned above. However, to start, you'd have to have some set of words whose use is iron-clad, and, in the end, you'd probably have to use both a set of grammatical rules and a database of words and their uses to implement it properly.
    But now we're way out of the realm of what could be coded up "in a few hours." We're talking full part-of-speech tagging. People spend years writing PhD theses on just a little tiny corner of the theory.

    The original argument was whether highlighted text would be easier to read. Part of speech tagging is possible and useful, but making sentences easier to read is not one of its uses.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. more then 100errors in header
    By hallo007 in forum Windows Programming
    Replies: 20
    Last Post: 05-13-2007, 08:26 AM
  2. We Got _DEBUG Errors
    By Tonto in forum Windows Programming
    Replies: 5
    Last Post: 12-22-2006, 05:45 PM
  3. Using VC Toolkit 2003
    By Noobwaker in forum Windows Programming
    Replies: 8
    Last Post: 03-13-2006, 07:33 AM
  4. Connecting to a mysql server and querying problem
    By Diod in forum C++ Programming
    Replies: 8
    Last Post: 02-13-2006, 10:33 AM
  5. Dikumud
    By maxorator in forum C++ Programming
    Replies: 1
    Last Post: 10-01-2005, 06:39 AM