Akjava commited on
Commit
d1ceb3d
1 Parent(s): 8e6e415

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +5 -0
index.html CHANGED
@@ -125,6 +125,7 @@
125
  function create_button(label, model_name) {
126
  // ボタンの作成
127
  const button = document.createElement('button');
 
128
  button.textContent = label;
129
 
130
  // クリックイベントハンドラの設定
@@ -136,7 +137,11 @@
136
 
137
 
138
  document.getElementById('buttons').appendChild(create_button("ljspeech","ljspeech_sim"))
 
139
  document.getElementById('buttons').appendChild(create_button("vctk","vctk_univ_simplify"))
 
 
 
140
  </script>
141
   <div id="buttons"></div>
142
 
 
125
  function create_button(label, model_name) {
126
  // ボタンの作成
127
  const button = document.createElement('button');
128
+ button.style ="margin:4px;"
129
  button.textContent = label;
130
 
131
  // クリックイベントハンドラの設定
 
137
 
138
 
139
  document.getElementById('buttons').appendChild(create_button("ljspeech","ljspeech_sim"))
140
+ document.getElementById('buttons').appendChild(create_button("ljspeech-quantized","ljspeech_sim_q8"))
141
  document.getElementById('buttons').appendChild(create_button("vctk","vctk_univ_simplify"))
142
+ document.getElementById('buttons').appendChild(create_button("vctk-quantized","vctk_univ_simplify_q8"))
143
+ document.getElementById('buttons').appendChild(create_button("en001","en001_ep6399_univ_simplify"))
144
+ document.getElementById('buttons').appendChild(create_button("en001-quantized","en001_ep6399_univ_simplify_q8"))
145
  </script>
146
   <div id="buttons"></div>
147