File size: 11,067 Bytes
92674ed |
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 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 |
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;; ;;
;;; Centre for Speech Technology Research ;;
;;; University of Edinburgh, UK ;;
;;; Copyright (c) 1996,1997 ;;
;;; All Rights Reserved. ;;
;;; ;;
;;; Permission is hereby granted, free of charge, to use and distribute ;;
;;; this software and its documentation without restriction, including ;;
;;; without limitation the rights to use, copy, modify, merge, publish, ;;
;;; distribute, sublicense, and/or sell copies of this work, and to ;;
;;; permit persons to whom this work is furnished to do so, subject to ;;
;;; the following conditions: ;;
;;; 1. The code must retain the above copyright notice, this list of ;;
;;; conditions and the following disclaimer. ;;
;;; 2. Any modifications must be clearly marked as such. ;;
;;; 3. Original authors' names are not deleted. ;;
;;; 4. The authors' names are not used to endorse or promote products ;;
;;; derived from this software without specific prior written ;;
;;; permission. ;;
;;; ;;
;;; THE UNIVERSITY OF EDINBURGH AND THE CONTRIBUTORS TO THIS WORK ;;
;;; DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ;;
;;; ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT ;;
;;; SHALL THE UNIVERSITY OF EDINBURGH NOR THE CONTRIBUTORS BE LIABLE ;;
;;; FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES ;;
;;; WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN ;;
;;; AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ;;
;;; ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF ;;
;;; THIS SOFTWARE. ;;
;;; ;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;; Set up rab_diphones using the standard UniSyn diphone synthesizer
;;;
;;; Roger diphones: male RP English collected October 1996
;;;
(defvar rab_diphone_dir (cdr (assoc 'rab_diphone voice-locations))
"rab_diphone_dir
The default directory for the rab diphone database.")
(require 'mrpa_phones)
(require 'pos)
(require 'phrase)
(require 'tobi)
(require 'f2bf0lr)
(require 'mrpa_durs)
(require 'gswdurtreeZ)
(require_module 'UniSyn)
(setup_oald_lex)
;; set this to lpc or psola
(defvar rab_sigpr 'lpc)
;; Rset this to ungroup for ungrouped version
(defvar rab_groupungroup 'group)
(if (probe_file (path-append rab_diphone_dir "group/rablpc16k.group"))
(defvar rab_index_file
(path-append rab_diphone_dir "group/rablpc16k.group"))
(defvar rab_index_file
(path-append rab_diphone_dir "group/rablpc8k.group")))
(set! rab_psola_sep
(list
'(name "rab_psola_sep")
(list 'index_file (path-append rab_diphone_dir "dic/diphdic_full.est"))
'(grouped "false")
(list 'coef_dir (path-append rab_diphone_dir "pm"))
(list 'sig_dir (path-append rab_diphone_dir "wav"))
'(coef_ext ".pm")
'(sig_ext ".wav")))
(set! rab_lpc_sep
(list
'(name "rab_lpc_sep")
(list 'index_file (path-append rab_diphone_dir "dic/diphdic_full.est"))
'(grouped "false")
(list 'coef_dir (path-append rab_diphone_dir "lpc"))
(list 'sig_dir (path-append rab_diphone_dir "lpc"))
'(coef_ext ".lpc")
'(sig_ext ".res")))
(set! rab_psola_group
(list
'(name "rab_psola_group")
(list 'index_file
(path-append rab_diphone_dir "group/rab.group"))
'(grouped "true")))
(set! rab_lpc_group
(list
'(name "rab_lpc_group")
(list 'index_file rab_index_file)
'(alternates_left ((i ii) (ll l) (u uu) (i@ ii) (uh @) (a aa)
(u@ uu) (w @) (o oo) (e@ ei) (e ei)
(r @)))
'(alternates_right ((i ii) (ll l) (u uu) (i@ ii)
(y i) (uh @) (r @) (w @)))
'(default_diphone @-@@)
'(grouped "true")))
;;; Setup the desried DB
(cond
((and (eq rab_sigpr 'psola)
(eq rab_groupungroup 'group))
(set! rab_db_name (us_diphone_init rab_psola_group)))
((and (eq rab_sigpr 'psola)
(eq rab_groupungroup 'ungroup))
(set! rab_db_name (us_diphone_init rab_psola_sep)))
((and (eq rab_sigpr 'lpc)
(eq rab_groupungroup 'group))
(set! rab_db_name (us_diphone_init rab_lpc_group)))
((and (eq rab_sigpr 'lpc)
(eq rab_groupungroup 'ungroup))
(set! rab_db_name (us_diphone_init rab_lpc_sep))))
(define (rab_postlex_syllabics utt)
"(rab_postlex_syllabics utt)
Because the lexicon is somewhat random in its used of syllable l n and
m this is designed to post process the output inserting schwa before
them. Ideally the lexicon should be fixed."
(mapcar
(lambda (s)
(if (and (member_string (item.name s) '("l" "n" "m"))
(string-equal "coda" (item.feat s "seg_onsetcoda"))
(not (member_string (item.feat s "p.name") '(l r)))
(string-equal "-" (item.feat s "p.ph_vc")))
(item.relation.insert
s 'SylStructure
(item.insert s (list "@") 'before)
'before)))
(utt.relation.items utt 'Segment)))
(define (rab_diphone_const_clusters utt)
"(rab_diphone_const_clusters UTT)
Identify consonant clusters, dark ls etc in the segment item
ready for diphone resynthesis. This may be called as a post lexical
rule through poslex_rule_hooks."
(mapcar
(lambda (s) (rab_diphone_fix_phone_name utt s))
(utt.relation.items utt 'Segment))
utt)
(define (rab_diphone_fix_phone_name utt seg)
"(rab_diphone_fix_phone_name UTT SEG)
Add the feature diphone_phone_name to given segment with the appropriate
name for constructing a diphone. Basically adds _ if either side is part
of the same consonant cluster, adds $ either side if in different
syllable for preceding/succeeding vowel syllable, and converts l to ll
in coda part of syllables."
(let ((name (item.name seg)))
(cond
((string-equal name "#") t)
((string-equal "-" (item.feat seg 'ph_vc))
(if (and (member_string name '(r w y l))
(member_string (item.feat seg "p.name") '(p t k b d g))
(item.relation.prev seg "SylStructure"))
(item.set_feat seg "us_diphone_right" (format nil "_%s" name)))
(if (and (member_string name '(w y l m n p t k))
(string-equal (item.feat seg "p.name") 's)
(item.relation.prev seg "SylStructure"))
(item.set_feat seg "us_diphone_right" (format nil "_%s" name)))
(if (and (string-equal name 's)
(member_string (item.feat seg "n.name") '(w y l m n p t k))
(item.relation.next seg "SylStructure"))
(item.set_feat seg "us_diphone_left" (format nil "%s_" name)))
(if (and (member_string name '(p t k b d g))
(member_string (item.feat seg "n.name") '(r w y l))
(item.relation.next seg "SylStructure"))
(item.set_feat seg "us_diphone_left" (format nil "%s_" name)))
(if (and (member_string name '(p k b d g))
(string-equal "+" (item.feat seg 'p.ph_vc))
(not (member_string (item.feat seg "p.name") '(@ aa o)))
(not (item.relation.prev seg "SylStructure")))
(item.set_feat seg "us_diphone_right" (format nil "$%s" name)))
(if (and (member_string name '(p t k b d g))
(string-equal "+" (item.feat seg 'n.ph_vc))
(not (member_string (item.feat seg "n.name") '(@ aa)))
(not (item.relation.next seg "SylStructure")))
(item.set_feat seg "us_diphone_left" (format nil "%s$" name)))
(if (and (string-equal "l" name)
(string-equal "+" (item.feat seg "p.ph_vc"))
(not (string-equal "a" (item.feat seg "p.ph_vlng")))
(item.relation.prev seg 'SylStructure))
(item.set_feat seg "us_diphone_right" "ll"))
(if (and (member_string name '(ch jh))
(string-equal "+" (item.feat seg 'p.ph_vc)))
(item.set_feat seg "us_diphone_right" "t"))
)
)))
(define (voice_rab_diphone)
"(voice_rab_diphone)
Set up the current voice to be a British male RP (Roger) speaker using
the rab diphone set."
(voice_reset)
(Parameter.set 'Language 'britishenglish)
;; Phone set
(Parameter.set 'PhoneSet 'mrpa)
(PhoneSet.select 'mrpa)
;; Tokenization rules
(set! token_to_words english_token_to_words)
;; POS tagger
(set! pos_lex_name "english_poslex")
(set! pos_ngram_name 'english_pos_ngram)
(set! pos_supported t)
(set! guess_pos english_guess_pos) ;; need this for accents
;; Lexicon selection
(lex.select "oald")
(set! postlex_rules_hooks (list postlex_apos_s_check
rab_postlex_syllabics))
(set! postlex_s_check postlex_apos_s_check)
;; Phrase prediction
(Parameter.set 'Phrase_Method 'prob_models)
(set! phr_break_params english_phr_break_params)
;; Accent and tone prediction
(set! int_tone_cart_tree f2b_int_tone_cart_tree)
(set! int_accent_cart_tree f2b_int_accent_cart_tree)
;; F0 prediction
(set! f0_lr_start f2b_f0_lr_start)
(set! f0_lr_mid f2b_f0_lr_mid)
(set! f0_lr_end f2b_f0_lr_end)
(Parameter.set 'Int_Method Intonation_Tree)
(set! int_lr_params
'((target_f0_mean 105) (target_f0_std 14)
(model_f0_mean 170) (model_f0_std 34)))
(Parameter.set 'Int_Target_Method Int_Targets_LR)
;; Duration prediction -- use gsw durations
(set! duration_cart_tree gsw_duration_cart_tree)
(set! duration_ph_info gsw_durs)
(Parameter.set 'Duration_Method Duration_Tree_ZScores)
(Parameter.set 'Duration_Stretch 1.05)
;; Waveform synthesizer: Roger diphones
;; This assigned the diphone names from their context (_ $ etc)
(set! UniSyn_module_hooks (list rab_diphone_const_clusters ))
(set! us_abs_offset 0.0)
(set! window_factor 1.0)
(set! us_rel_offset 0.0)
(set! us_gain 0.9)
(Parameter.set 'Synth_Method 'UniSyn)
(Parameter.set 'us_sigpr rab_sigpr)
(us_db_select rab_db_name)
(set! current-voice 'rab_diphone)
)
(proclaim_voice
'rab_diphone
'((language english)
(gender male)
(dialect british)
(description
"This voice provides a British RP English male voice using a
residual excited LPC diphone synthesis method. It uses a
modified Oxford Advanced Learners' Dictionary for pronunciations.
Prosodic phrasing is provided by a statistically trained model
using part of speech and local distribution of breaks. Intonation
is provided by a CART tree predicting ToBI accents and an F0
contour generated from a model trained from natural speech. The
duration model is also trained from data using a CART tree.")))
(provide 'rab_diphone)
|