Changes between Version 4 and Version 5 of TranscriptionTool


Ignore:
Timestamp:
01/16/09 11:55:12 (16 years ago)
Author:
sach01
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TranscriptionTool

    v4 v5  
    4343}}} 
    4444 
     45 Example 3: Load from MySQL table (3 columns: ID, word, frequency (word frequency in text corpus)) 
     46{{{ 
     47mysql> desc en_US_wordList; 
     48+-----------+------------------+------+-----+---------+----------------+ 
     49| Field     | Type             | Null | Key | Default | Extra          | 
     50+-----------+------------------+------+-----+---------+----------------+ 
     51| id        | int(11)          | NO   | PRI | NULL    | auto_increment |  
     52| word      | varchar(255)     | NO   |     |         |                |  
     53| frequency | int(10) unsigned | NO   |     |         |                |  
     54+-----------+------------------+------+-----+---------+----------------+ 
     55}}} 
     56 
    4557 
    4658== How to run? ==