\begin{figure*}
\end{figure*}\begin{table*}
\end{table*} and that will make the figure span the width of the entire page.
In the attached paper, the authors combine two speaker adaptation methods to improve the performance of speech synthesis of cross-lingual experiments.
The system are HMM based, and the two methods are:1) Decision Tree Marginalization
The commandline options for sc_stats can be broken into four categories:
- The 'range' graphs are an ASCII representation of the of the variablity in error rates for a given speaker. The graph is sorted be the mean of statistic computed for each speaker. EXAMPLE
- The 'grange' graph is a gnuplot version of the same data ploted in 'range. There are two sets of files created. The first set, which is called '*.grange.spk.plt' and '*.grange.spk.dat', contains the gnuplot command files and data files respectively for the speaker performance variability across systems graph. The second set, which is called '*.grange.sys.plt' and '*.grange.sys.dat', contains the gnuplot command files and data files respectively for the system performance variability across speakers graph. EXAMPLE
- The 'grange2' graph is similar to the 'grange' graph except that each systems speaker word error scores are identified by a unique symbol. EXAMPLE
The chmod command uses a three-digit code as an argument.
The three digits of the chmod code set permissions for these groups in this order:
Each digit of this code sets permissions for one of these groups as follows. Read is 4. Write is 2. Execute is 1.
The sums of these numbers give combinations of these permissions:
Command | Purpose |
---|---|
chmod 700 apple.txt | Only you can read, write to, or execute apple.txt |
chmod 777 apple.txt | Everybody can read, write to, or execute apple.txt |
chmod 744 apple.txt | Only you can read, write to, or execute apple.txt Everybody can read apple.txt; |
chmod 444 apple.txt | You can only read apple.txt, as everyone else. |
You can use the ls command with the -l option to show the file permissions set. For example, for apple.txt, I can do this:
$ ls -l apple.txt
-rwxr--r-- 1 december december 81 Feb 12 12:45 apple.txt
$
The sequence -rwxr--r-- tells the permissions set for the file apple.txt. The first - tells that apple.txt is a file. The next three letters, rwx, show that the owner has read, write, and execute permissions. Then the next three symbols, r--, show that the group permissions are read only. The final three symbols, r--, show that the world permissions are read only.