Blame view

tools/sctk-2.4.10/src/sclite/slm_v2/readme.txt 2.38 KB
8dcb6dfcb   Yannick Estève   first commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
  CMU-Cambridge Statistical Language Modeling Tookit v2
  =====================================================
  
  Documentation:
  --------------
  
  For installation and usage instructions for the toolkit, see 
  
  doc/toolkit_documentation.html
  
  (for the sake of convenience, the installation instructions are also
  given below).
  
  Installation:
  -------------
  
  For "big-endian" machines (eg those running HP-UX, IRIX, SunOS,
  Solaris) the installation procedure is simply to type
  
    cd src
    make install
  
  The executables will then be copied into the bin/ directory, and the
  library file SLM2.a will be copied into the lib/ directory.
  
  For "little-endian" machines (eg those running Ultrix, Linux) the
  variable "BYTESWAP_FLAG" will need to be set in the Makefile. This can
  be done by editing src/Makefile directly, so that the line
  
  #BYTESWAP_FLAG  = -DSLM_SWAP_BYTES
  
  is changed to 
  
  BYTESWAP_FLAG  = -DSLM_SWAP_BYTES
  
  Then the program can be installed as before.
  
  If you are unsure of the "endian-ness" of your machine, then the shell
  script endian.sh should be able to provide some assistance.
  
  In case of problems, then more information can be found by examining
  src/Makefile.
  
  Files:
  ------
  
  endian.sh  Shell script to report "endian-ness" (see installation 
     instructions). Not terribly robust; needs to be able to see gcc, 
     for example.
  
  doc/toolkit_documentation.html   The standard html documentation for the 
     toolkit. View using netscape or equivalent.
  
  doc/toolkit_documentation_no_tables.html   As above, but doesn't use 
     tables, so is suitable for use with browsers which don't support
     tables (eg lynx).
  
  doc/toolkit_documentation.txt   The documentation in flat text.
  
  doc/change_log.html   List of changes from version to version.
  
  doc/change_log.txt   The above in flat text. 
  
  src/*.c src/*.h  The toolkit source files
  
  src/Makefile  The standard make file.
  
  src/install-sh  Shell script to install executables in the appropriate
     directory. An improvement on cp, as it will check to see whether it is 
     about to overwrite an execuatable which is already in use.
  
  include/SLM2.h   File containing all of src/*.h, allowing 
     functions from the toolkit to be included in new software.
  
  bin/   Directory where executables will be installed.
  
  lib/   Directory where SLM2.a will be stored (useful in conjunction with 
     include/SLM2.h for including functions from the toolkit to be included 
     in new software.)