230817,V0.1
Browse filesThis view is limited to 50 files because it contains too many changes. See raw diff
- .gitignore +138 -0
- LICENSE +21 -0
- README.md +151 -0
- audio/__init__.py +3 -0
- audio/audio_processing.py +94 -0
- audio/stft.py +160 -0
- audio/tools.py +68 -0
- dataset.py +131 -0
- evaluate.py +179 -0
- fastspeech2.py +56 -0
- hparams.py +88 -0
- loss.py +37 -0
- modules.py +176 -0
- optimizer.py +32 -0
- prepare_align.py +11 -0
- preprocess.py +69 -0
- preprocessed/kss_elena/TextGrid/1_0000.TextGrid +236 -0
- preprocessed/kss_elena/TextGrid/1_0001.TextGrid +260 -0
- preprocessed/kss_elena/TextGrid/1_0002.TextGrid +108 -0
- preprocessed/kss_elena/TextGrid/1_0003.TextGrid +160 -0
- preprocessed/kss_elena/TextGrid/1_0004.TextGrid +124 -0
- preprocessed/kss_elena/TextGrid/1_0005.TextGrid +120 -0
- preprocessed/kss_elena/TextGrid/1_0006.TextGrid +172 -0
- preprocessed/kss_elena/TextGrid/1_0007.TextGrid +220 -0
- preprocessed/kss_elena/TextGrid/1_0008.TextGrid +264 -0
- preprocessed/kss_elena/TextGrid/1_0009.TextGrid +200 -0
- preprocessed/kss_elena/TextGrid/1_0010.TextGrid +132 -0
- preprocessed/kss_elena/TextGrid/1_0011.TextGrid +152 -0
- preprocessed/kss_elena/TextGrid/1_0012.TextGrid +204 -0
- preprocessed/kss_elena/TextGrid/1_0013.TextGrid +260 -0
- preprocessed/kss_elena/TextGrid/1_0014.TextGrid +148 -0
- preprocessed/kss_elena/TextGrid/1_0015.TextGrid +208 -0
- preprocessed/kss_elena/TextGrid/1_0016.TextGrid +104 -0
- preprocessed/kss_elena/TextGrid/1_0017.TextGrid +156 -0
- preprocessed/kss_elena/TextGrid/1_0018.TextGrid +268 -0
- preprocessed/kss_elena/TextGrid/1_0019.TextGrid +144 -0
- preprocessed/kss_elena/TextGrid/1_0020.TextGrid +280 -0
- preprocessed/kss_elena/TextGrid/1_0022.TextGrid +152 -0
- preprocessed/kss_elena/TextGrid/1_0023.TextGrid +196 -0
- preprocessed/kss_elena/TextGrid/1_0024.TextGrid +188 -0
- preprocessed/kss_elena/TextGrid/1_0025.TextGrid +180 -0
- preprocessed/kss_elena/TextGrid/1_0026.TextGrid +156 -0
- preprocessed/kss_elena/TextGrid/1_0027.TextGrid +144 -0
- preprocessed/kss_elena/TextGrid/1_0028.TextGrid +184 -0
- preprocessed/kss_elena/TextGrid/1_0029.TextGrid +228 -0
- preprocessed/kss_elena/TextGrid/1_0030.TextGrid +264 -0
- preprocessed/kss_elena/TextGrid/1_0031.TextGrid +216 -0
- preprocessed/kss_elena/TextGrid/1_0032.TextGrid +204 -0
- preprocessed/kss_elena/TextGrid/1_0033.TextGrid +248 -0
- preprocessed/kss_elena/TextGrid/1_0034.TextGrid +304 -0
.gitignore
ADDED
|
@@ -0,0 +1,138 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# vim temp file
|
| 2 |
+
*.swp
|
| 3 |
+
|
| 4 |
+
# Byte-compiled / optimized / DLL files
|
| 5 |
+
__pycache__/
|
| 6 |
+
*.py[cod]
|
| 7 |
+
*$py.class
|
| 8 |
+
|
| 9 |
+
# C extensions
|
| 10 |
+
*.so
|
| 11 |
+
|
| 12 |
+
# Distribution / packaging
|
| 13 |
+
.Python
|
| 14 |
+
build/
|
| 15 |
+
develop-eggs/
|
| 16 |
+
dist/
|
| 17 |
+
downloads/
|
| 18 |
+
eggs/
|
| 19 |
+
.eggs/
|
| 20 |
+
lib/
|
| 21 |
+
lib64/
|
| 22 |
+
parts/
|
| 23 |
+
sdist/
|
| 24 |
+
var/
|
| 25 |
+
wheels/
|
| 26 |
+
pip-wheel-metadata/
|
| 27 |
+
share/python-wheels/
|
| 28 |
+
*.egg-info/
|
| 29 |
+
.installed.cfg
|
| 30 |
+
*.egg
|
| 31 |
+
MANIFEST
|
| 32 |
+
|
| 33 |
+
# PyInstaller
|
| 34 |
+
# Usually these files are written by a python script from a template
|
| 35 |
+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
| 36 |
+
*.manifest
|
| 37 |
+
*.spec
|
| 38 |
+
|
| 39 |
+
# Installer logs
|
| 40 |
+
pip-log.txt
|
| 41 |
+
pip-delete-this-directory.txt
|
| 42 |
+
|
| 43 |
+
# Unit test / coverage reports
|
| 44 |
+
htmlcov/
|
| 45 |
+
.tox/
|
| 46 |
+
.nox/
|
| 47 |
+
.coverage
|
| 48 |
+
.coverage.*
|
| 49 |
+
.cache
|
| 50 |
+
nosetests.xml
|
| 51 |
+
coverage.xml
|
| 52 |
+
*.cover
|
| 53 |
+
*.py,cover
|
| 54 |
+
.hypothesis/
|
| 55 |
+
.pytest_cache/
|
| 56 |
+
|
| 57 |
+
# Translations
|
| 58 |
+
*.mo
|
| 59 |
+
*.pot
|
| 60 |
+
|
| 61 |
+
# Django stuff:
|
| 62 |
+
*.log
|
| 63 |
+
local_settings.py
|
| 64 |
+
db.sqlite3
|
| 65 |
+
db.sqlite3-journal
|
| 66 |
+
|
| 67 |
+
# Flask stuff:
|
| 68 |
+
instance/
|
| 69 |
+
.webassets-cache
|
| 70 |
+
|
| 71 |
+
# Scrapy stuff:
|
| 72 |
+
.scrapy
|
| 73 |
+
|
| 74 |
+
# Sphinx documentation
|
| 75 |
+
docs/_build/
|
| 76 |
+
|
| 77 |
+
# PyBuilder
|
| 78 |
+
target/
|
| 79 |
+
|
| 80 |
+
# Jupyter Notebook
|
| 81 |
+
.ipynb_checkpoints
|
| 82 |
+
|
| 83 |
+
# IPython
|
| 84 |
+
profile_default/
|
| 85 |
+
ipython_config.py
|
| 86 |
+
|
| 87 |
+
# pyenv
|
| 88 |
+
.python-version
|
| 89 |
+
|
| 90 |
+
# pipenv
|
| 91 |
+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
|
| 92 |
+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
|
| 93 |
+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
|
| 94 |
+
# install all needed dependencies.
|
| 95 |
+
#Pipfile.lock
|
| 96 |
+
|
| 97 |
+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
|
| 98 |
+
__pypackages__/
|
| 99 |
+
|
| 100 |
+
# Celery stuff
|
| 101 |
+
celerybeat-schedule
|
| 102 |
+
celerybeat.pid
|
| 103 |
+
|
| 104 |
+
# SageMath parsed files
|
| 105 |
+
*.sage.py
|
| 106 |
+
|
| 107 |
+
# Environments
|
| 108 |
+
.env
|
| 109 |
+
.venv
|
| 110 |
+
env/
|
| 111 |
+
venv/
|
| 112 |
+
ENV/
|
| 113 |
+
env.bak/
|
| 114 |
+
venv.bak/
|
| 115 |
+
|
| 116 |
+
# Spyder project settings
|
| 117 |
+
.spyderproject
|
| 118 |
+
.spyproject
|
| 119 |
+
|
| 120 |
+
# Rope project settings
|
| 121 |
+
.ropeproject
|
| 122 |
+
|
| 123 |
+
# mkdocs documentation
|
| 124 |
+
/site
|
| 125 |
+
|
| 126 |
+
# mypy
|
| 127 |
+
.mypy_cache/
|
| 128 |
+
.dmypy.json
|
| 129 |
+
dmypy.json
|
| 130 |
+
|
| 131 |
+
# Pyre type checker
|
| 132 |
+
.pyre/
|
| 133 |
+
|
| 134 |
+
log/
|
| 135 |
+
ckpt/
|
| 136 |
+
results/
|
| 137 |
+
eval/
|
| 138 |
+
vocoder/pretrained_models/
|
LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
MIT License
|
| 2 |
+
|
| 3 |
+
Copyright (c) 2020 Chung-Ming Chien
|
| 4 |
+
|
| 5 |
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
| 6 |
+
of this software and associated documentation files (the "Software"), to deal
|
| 7 |
+
in the Software without restriction, including without limitation the rights
|
| 8 |
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
| 9 |
+
copies of the Software, and to permit persons to whom the Software is
|
| 10 |
+
furnished to do so, subject to the following conditions:
|
| 11 |
+
|
| 12 |
+
The above copyright notice and this permission notice shall be included in all
|
| 13 |
+
copies or substantial portions of the Software.
|
| 14 |
+
|
| 15 |
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
| 16 |
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
| 17 |
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
| 18 |
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
| 19 |
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
| 20 |
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
| 21 |
+
SOFTWARE.
|
README.md
ADDED
|
@@ -0,0 +1,151 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
# Korean FastSpeech 2 - Pytorch Implementation
|
| 3 |
+
|
| 4 |
+

|
| 5 |
+
# Introduction
|
| 6 |
+
|
| 7 |
+
Fastspeech2는 기존의 자기회귀(Autoregressive) 기반의 느린 학습 및 합성 속도를 개선한 모델입니다. 비자기회귀(Non Autoregressive) 기반의 모델로, Variance Adaptor에서 분산 데이터들을 통해, speech 예측의 정확도를 높일 수 있습니다.
|
| 8 |
+
즉 기존의 audio-text만으로 예측을 하는 모델에서, pitch,energy,duration을 추가한 모델입니다.
|
| 9 |
+
Fastspeech2에서 duration은 MFA(Montreal Forced Aligner)를 통해 추출합니다. 이렇게 추출한 duration을 바탕으로 phoneme(음소)와 음성간의 alignment가 만들어집니다.
|
| 10 |
+
|
| 11 |
+
|
| 12 |
+
* This Repository는 https://github.com/HGU-DLLAB/Korean-FastSpeech2-Pytorch
|
| 13 |
+
|
| 14 |
+
|
| 15 |
+
|
| 16 |
+
# Install Dependencies
|
| 17 |
+
python=3.9,
|
| 18 |
+
[pytorch](https://pytorch.org/)=1.13, [ffmpeg](https://ffmpeg.org/) [g2pk](https://github.com/Kyubyong/g2pK)
|
| 19 |
+
```
|
| 20 |
+
sudo apt update
|
| 21 |
+
sudo apt install ffmpeg
|
| 22 |
+
pip install g2pk
|
| 23 |
+
pip install -r requirements.txt
|
| 24 |
+
```
|
| 25 |
+
|
| 26 |
+
# Preprocessing
|
| 27 |
+
|
| 28 |
+
### Step 1
|
| 29 |
+
MFA(Montreal Forced Aligner)는 Fastspeech2 학습에 반드시 필요한, Duration을 추출하기 위해 사용됩니다. MFA는 발화(음성 파일)와 Phoneme sequence간의 alignment를 실행하고 이를 TextGrid라는 파일로 저장합니다.
|
| 30 |
+
|
| 31 |
+
|
| 32 |
+
1. wav-lab pair 생성
|
| 33 |
+
|
| 34 |
+
wav파일과 그 wav파일의 발화를 transcript한 lab파일이 필요합니다.
|
| 35 |
+
|
| 36 |
+
|
| 37 |
+
해당 함수는 metadata로 부터 wav파일과 text를 인식하여, wav파일과 확장자만 다른 transcript파일(.lab) 을 생성합니다.
|
| 38 |
+
|
| 39 |
+
|
| 40 |
+

|
| 41 |
+
|
| 42 |
+
작업이 끝나면 위의 형태와 같이 wav-lab pair가 만들어져야 합니다.
|
| 43 |
+
|
| 44 |
+
|
| 45 |
+
2. lexicon 파일 생성
|
| 46 |
+
|
| 47 |
+
가지고 있는 데이터셋 내의 모든 발화에 대한, phoneme을 기록한 lexicon 파일을 생성합니다.
|
| 48 |
+
|
| 49 |
+
[processing_utils.ipynb](https://github.com/JH-lee95/Fastspeech2-Korean/blob/master/processing_utils.ipynb) 노트북 내의 make_p_dict 와 make_lexicon 함수를 차례대로 실행해주세요.
|
| 50 |
+
|
| 51 |
+

|
| 52 |
+
|
| 53 |
+
작업이 끝나면 위와 같은 형태를 띄는 p_lexicon.txt 파일이 만들어집니다.
|
| 54 |
+
|
| 55 |
+
|
| 56 |
+
3. MFA 설치
|
| 57 |
+
|
| 58 |
+
* MFA에 대한 자세한 설치 방법은 https://montreal-forced-aligner.readthedocs.io/en/latest/installation.html 이곳을 확인해주세요.
|
| 59 |
+
|
| 60 |
+
|
| 61 |
+
4. MFA 실행
|
| 62 |
+
|
| 63 |
+
MFA의 경우 pre-trained된 한국어 acoustic model과 g2p 모델을 제공하고 있습니다. 하지만 해당 모델은 english phoneme을 생성하기 때문에 한국어 phoneme을 생성하기 위해서는 직접 train을 시켜주어야 합니다.
|
| 64 |
+
|
| 65 |
+
MFA 설치가 완료되었다면 아래와 같은 커멘드를 실행해주세요.
|
| 66 |
+
|
| 67 |
+
```
|
| 68 |
+
mfa train <데이터셋 위치> <p_lexicon의 위치> <out directory>
|
| 69 |
+
```
|
| 70 |
+
|
| 71 |
+
MFA가 정상적으로 실행되었을 경우 다음과 같은 형태의 TextGrid 파일이 만들어집니다.
|
| 72 |
+

|
| 73 |
+
|
| 74 |
+
|
| 75 |
+
|
| 76 |
+
**(3) 데이터전처리**
|
| 77 |
+
|
| 78 |
+
1.hparms.py
|
| 79 |
+
|
| 80 |
+
- dataset : 데이터셋 폴더명
|
| 81 |
+
- data_path : dataset의 상위 폴더
|
| 82 |
+
- meta_name : metadata의 파일명 ex)transcript.v.1.4.txt
|
| 83 |
+
- textgrid_path : textgrid 압축 파일의 위치 (textgrid 파일들을 미리 압축해주세요)
|
| 84 |
+
- tetxgrid_name : textgird 압푹 파일의 파일명
|
| 85 |
+
|
| 86 |
+
2. preprocess.py
|
| 87 |
+
|
| 88 |
+

|
| 89 |
+
|
| 90 |
+
해당 부분을 본인의 데이터셋 이름에 맞게 변경해주세요
|
| 91 |
+
|
| 92 |
+
|
| 93 |
+
3. data/kss.py
|
| 94 |
+
|
| 95 |
+
- line 19 : basename,text = parts[?],parts[?] #각각 텍스트의 위치 ("|")로 split했을때, metadata에 기록된 wav와 text의 위치
|
| 96 |
+
- line 37 : basename,text = parts[?],parts[?]
|
| 97 |
+
|
| 98 |
+
|
| 99 |
+
위의 변경 작업이 모두 완료되면 아래의 커멘드를 실행해주세요.
|
| 100 |
+
|
| 101 |
+
```
|
| 102 |
+
python preprocess.py
|
| 103 |
+
```
|
| 104 |
+
|
| 105 |
+
# Train
|
| 106 |
+
모델 학습 전에, kss dataset에 대해 사전학습된 VocGAN(neural vocoder)을 [다운로드](https://drive.google.com/file/d/1GxaLlTrEhq0aXFvd_X1f4b-ev7-FH8RB/view?usp=sharing) 하여 ``vocoder/pretrained_models/`` 경로에 위치시킵니다.
|
| 107 |
+
|
| 108 |
+
다음으로, 아래의 커맨드를 입력하여 모델 학습을 수행합니다.
|
| 109 |
+
```
|
| 110 |
+
python train.py
|
| 111 |
+
```
|
| 112 |
+
학습된 모델은 ``ckpt/``에 저장되고 tensorboard log는 ``log/``에 저장됩니다. 학습시 evaluate 과정에서 생성된 음성은 ``eval/`` 폴더에 저장됩니다.
|
| 113 |
+
|
| 114 |
+
# Synthesis
|
| 115 |
+
학습된 파라미터를 기반으로 음성을 생성하는 명령어는 다음과 같습니다.
|
| 116 |
+
```
|
| 117 |
+
python synthesis.py --step 500000
|
| 118 |
+
```
|
| 119 |
+
합성된 음성은 ```results/``` directory에서 확인하실 수 있습니다.
|
| 120 |
+
|
| 121 |
+
# Pretrained model
|
| 122 |
+
pretrained model(checkpoint)을 [다운로드](https://drive.google.com/file/d/1qkFuNLqPIm-A5mZZDPGK1mnp0_Lh00PN/view?usp=sharing)해 주세요.
|
| 123 |
+
그 후, ```hparams.py```에 있는 ```checkpoint_path``` 변수에 기록된 경로에 위치시켜주시면 사전학습된 모델을 사용 가능합니다.
|
| 124 |
+
|
| 125 |
+
|
| 126 |
+
# Fine-Tuning
|
| 127 |
+
Pretrained model을 활용하여 Fine-tuning을 할 경우, 최소 30분 이상의 데이터가 권장됩니다. 10분 정도 분량의 데이터로 실험시 목소리와 발음은 대체적으로 비슷하게 따라하나 노이즈가 심했습니다.
|
| 128 |
+
|
| 129 |
+
Fine-tuning 시, Learning Rate의 조정이 필요합니다. Learning Rate는 적당히 낮은 값이 필요하며, 이는 경험적으로 알아내셔야 합니다. (저는 최종 step에서의 Learning Rate를 사용했습니다.)
|
| 130 |
+
|
| 131 |
+
```
|
| 132 |
+
python train.py --restore_step 350000
|
| 133 |
+
```
|
| 134 |
+
|
| 135 |
+
|
| 136 |
+
|
| 137 |
+
# Tensorboard
|
| 138 |
+
```
|
| 139 |
+
tensorboard --logdir log/hp.dataset/
|
| 140 |
+
```
|
| 141 |
+
tensorboard log들은 ```log/hp.dataset/``` directory에 저장됩니다. 그러므로 위의 커멘드를 이용하여 tensorboard를 실행해 학습 상황을 모니터링 하실 수 있습니다.
|
| 142 |
+
|
| 143 |
+
|
| 144 |
+
|
| 145 |
+
# References
|
| 146 |
+
- [FastSpeech 2: Fast and High-Quality End-to-End Text to Speech](https://arxiv.org/abs/2006.04558), Y. Ren, *et al*.
|
| 147 |
+
- [FastSpeech: Fast, Robust and Controllable Text to Speech](https://arxiv.org/abs/1905.09263), Y. Ren, *et al*.
|
| 148 |
+
- [ming024's FastSpeech2 impelmentation](https://github.com/ming024/FastSpeech2)
|
| 149 |
+
- [rishikksh20's VocGAN implementation](https://github.com/rishikksh20/VocGAN)
|
| 150 |
+
- [HGU-DLLAB](https://github.com/HGU-DLLAB/Korean-FastSpeech2-Pytorch)
|
| 151 |
+
- [TensorSpeech](https://github.com/TensorSpeech/TensorFlowTTS)
|
audio/__init__.py
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import audio.tools
|
| 2 |
+
import audio.stft
|
| 3 |
+
import audio.audio_processing
|
audio/audio_processing.py
ADDED
|
@@ -0,0 +1,94 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import torch
|
| 2 |
+
import numpy as np
|
| 3 |
+
from scipy.signal import get_window
|
| 4 |
+
import librosa.util as librosa_util
|
| 5 |
+
import hparams as hp
|
| 6 |
+
|
| 7 |
+
def window_sumsquare(window, n_frames, hop_length=hp.hop_length, win_length=hp.win_length,
|
| 8 |
+
n_fft=hp.filter_length, dtype=np.float32, norm=None):
|
| 9 |
+
"""
|
| 10 |
+
# from librosa 0.6
|
| 11 |
+
Compute the sum-square envelope of a window function at a given hop length.
|
| 12 |
+
|
| 13 |
+
This is used to estimate modulation effects induced by windowing
|
| 14 |
+
observations in short-time fourier transforms.
|
| 15 |
+
|
| 16 |
+
Parameters
|
| 17 |
+
----------
|
| 18 |
+
window : string, tuple, number, callable, or list-like
|
| 19 |
+
Window specification, as in `get_window`
|
| 20 |
+
|
| 21 |
+
n_frames : int > 0
|
| 22 |
+
The number of analysis frames
|
| 23 |
+
|
| 24 |
+
hop_length : int > 0
|
| 25 |
+
The number of samples to advance between frames
|
| 26 |
+
|
| 27 |
+
win_length : [optional]
|
| 28 |
+
The length of the window function. By default, this matches `n_fft`.
|
| 29 |
+
|
| 30 |
+
n_fft : int > 0
|
| 31 |
+
The length of each analysis frame.
|
| 32 |
+
|
| 33 |
+
dtype : np.dtype
|
| 34 |
+
The data type of the output
|
| 35 |
+
|
| 36 |
+
Returns
|
| 37 |
+
-------
|
| 38 |
+
wss : np.ndarray, shape=`(n_fft + hop_length * (n_frames - 1))`
|
| 39 |
+
The sum-squared envelope of the window function
|
| 40 |
+
"""
|
| 41 |
+
if win_length is None:
|
| 42 |
+
win_length = n_fft
|
| 43 |
+
|
| 44 |
+
n = n_fft + hop_length * (n_frames - 1)
|
| 45 |
+
x = np.zeros(n, dtype=dtype)
|
| 46 |
+
|
| 47 |
+
# Compute the squared window at the desired length
|
| 48 |
+
win_sq = get_window(window, win_length, fftbins=True)
|
| 49 |
+
win_sq = librosa_util.normalize(win_sq, norm=norm)**2
|
| 50 |
+
win_sq = librosa_util.pad_center(win_sq, n_fft)
|
| 51 |
+
|
| 52 |
+
# Fill the envelope
|
| 53 |
+
for i in range(n_frames):
|
| 54 |
+
sample = i * hop_length
|
| 55 |
+
x[sample:min(n, sample + n_fft)
|
| 56 |
+
] += win_sq[:max(0, min(n_fft, n - sample))]
|
| 57 |
+
return x
|
| 58 |
+
|
| 59 |
+
|
| 60 |
+
def griffin_lim(magnitudes, stft_fn, n_iters=30):
|
| 61 |
+
"""
|
| 62 |
+
PARAMS
|
| 63 |
+
------
|
| 64 |
+
magnitudes: spectrogram magnitudes
|
| 65 |
+
stft_fn: STFT class with transform (STFT) and inverse (ISTFT) methods
|
| 66 |
+
"""
|
| 67 |
+
|
| 68 |
+
angles = np.angle(np.exp(2j * np.pi * np.random.rand(*magnitudes.size())))
|
| 69 |
+
angles = angles.astype(np.float32)
|
| 70 |
+
angles = torch.autograd.Variable(torch.from_numpy(angles))
|
| 71 |
+
signal = stft_fn.inverse(magnitudes, angles).squeeze(1)
|
| 72 |
+
|
| 73 |
+
for i in range(n_iters):
|
| 74 |
+
_, angles = stft_fn.transform(signal)
|
| 75 |
+
signal = stft_fn.inverse(magnitudes, angles).squeeze(1)
|
| 76 |
+
return signal
|
| 77 |
+
|
| 78 |
+
|
| 79 |
+
def dynamic_range_compression(x, C=1, clip_val=1e-5):
|
| 80 |
+
"""
|
| 81 |
+
PARAMS
|
| 82 |
+
------
|
| 83 |
+
C: compression factor
|
| 84 |
+
"""
|
| 85 |
+
return torch.log(torch.clamp(x, min=clip_val) * C)
|
| 86 |
+
|
| 87 |
+
|
| 88 |
+
def dynamic_range_decompression(x, C=1):
|
| 89 |
+
"""
|
| 90 |
+
PARAMS
|
| 91 |
+
------
|
| 92 |
+
C: compression factor used to compress
|
| 93 |
+
"""
|
| 94 |
+
return torch.exp(x) / C
|
audio/stft.py
ADDED
|
@@ -0,0 +1,160 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import torch
|
| 2 |
+
import torch.nn.functional as F
|
| 3 |
+
from torch.autograd import Variable
|
| 4 |
+
import numpy as np
|
| 5 |
+
|
| 6 |
+
from scipy.signal import get_window
|
| 7 |
+
from librosa.util import pad_center, tiny
|
| 8 |
+
from librosa.filters import mel as librosa_mel_fn
|
| 9 |
+
|
| 10 |
+
from audio.audio_processing import dynamic_range_compression
|
| 11 |
+
from audio.audio_processing import dynamic_range_decompression
|
| 12 |
+
from audio.audio_processing import window_sumsquare
|
| 13 |
+
|
| 14 |
+
|
| 15 |
+
class STFT(torch.nn.Module):
|
| 16 |
+
"""adapted from Prem Seetharaman's https://github.com/pseeth/pytorch-stft"""
|
| 17 |
+
|
| 18 |
+
def __init__(self, filter_length, hop_length, win_length,
|
| 19 |
+
window='hann'):
|
| 20 |
+
super(STFT, self).__init__()
|
| 21 |
+
self.filter_length = filter_length
|
| 22 |
+
self.hop_length = hop_length
|
| 23 |
+
self.win_length = win_length
|
| 24 |
+
self.window = window
|
| 25 |
+
self.forward_transform = None
|
| 26 |
+
scale = self.filter_length / self.hop_length
|
| 27 |
+
fourier_basis = np.fft.fft(np.eye(self.filter_length))
|
| 28 |
+
|
| 29 |
+
cutoff = int((self.filter_length / 2 + 1))
|
| 30 |
+
fourier_basis = np.vstack([np.real(fourier_basis[:cutoff, :]),
|
| 31 |
+
np.imag(fourier_basis[:cutoff, :])])
|
| 32 |
+
|
| 33 |
+
forward_basis = torch.FloatTensor(fourier_basis[:, None, :])
|
| 34 |
+
inverse_basis = torch.FloatTensor(
|
| 35 |
+
np.linalg.pinv(scale * fourier_basis).T[:, None, :])
|
| 36 |
+
|
| 37 |
+
if window is not None:
|
| 38 |
+
assert(filter_length >= win_length)
|
| 39 |
+
# get window and zero center pad it to filter_length
|
| 40 |
+
fft_window = get_window(window, win_length, fftbins=True)
|
| 41 |
+
fft_window = pad_center(fft_window, filter_length)
|
| 42 |
+
fft_window = torch.from_numpy(fft_window).float()
|
| 43 |
+
|
| 44 |
+
# window the bases
|
| 45 |
+
forward_basis *= fft_window
|
| 46 |
+
inverse_basis *= fft_window
|
| 47 |
+
|
| 48 |
+
self.register_buffer('forward_basis', forward_basis.float())
|
| 49 |
+
self.register_buffer('inverse_basis', inverse_basis.float())
|
| 50 |
+
|
| 51 |
+
def transform(self, input_data):
|
| 52 |
+
num_batches = input_data.size(0)
|
| 53 |
+
num_samples = input_data.size(1)
|
| 54 |
+
|
| 55 |
+
self.num_samples = num_samples
|
| 56 |
+
|
| 57 |
+
# similar to librosa, reflect-pad the input
|
| 58 |
+
input_data = input_data.view(num_batches, 1, num_samples)
|
| 59 |
+
input_data = F.pad(
|
| 60 |
+
input_data.unsqueeze(1),
|
| 61 |
+
(int(self.filter_length / 2), int(self.filter_length / 2), 0, 0),
|
| 62 |
+
mode='reflect')
|
| 63 |
+
input_data = input_data.squeeze(1)
|
| 64 |
+
|
| 65 |
+
forward_transform = F.conv1d(
|
| 66 |
+
input_data.cuda(),
|
| 67 |
+
Variable(self.forward_basis, requires_grad=False).cuda(),
|
| 68 |
+
stride=self.hop_length,
|
| 69 |
+
padding=0).cpu()
|
| 70 |
+
|
| 71 |
+
cutoff = int((self.filter_length / 2) + 1)
|
| 72 |
+
real_part = forward_transform[:, :cutoff, :]
|
| 73 |
+
imag_part = forward_transform[:, cutoff:, :]
|
| 74 |
+
|
| 75 |
+
magnitude = torch.sqrt(real_part**2 + imag_part**2)
|
| 76 |
+
phase = torch.autograd.Variable(
|
| 77 |
+
torch.atan2(imag_part.data, real_part.data))
|
| 78 |
+
|
| 79 |
+
return magnitude, phase
|
| 80 |
+
|
| 81 |
+
def inverse(self, magnitude, phase):
|
| 82 |
+
recombine_magnitude_phase = torch.cat(
|
| 83 |
+
[magnitude*torch.cos(phase), magnitude*torch.sin(phase)], dim=1)
|
| 84 |
+
|
| 85 |
+
inverse_transform = F.conv_transpose1d(
|
| 86 |
+
recombine_magnitude_phase,
|
| 87 |
+
Variable(self.inverse_basis, requires_grad=False),
|
| 88 |
+
stride=self.hop_length,
|
| 89 |
+
padding=0)
|
| 90 |
+
|
| 91 |
+
if self.window is not None:
|
| 92 |
+
window_sum = window_sumsquare(
|
| 93 |
+
self.window, magnitude.size(-1), hop_length=self.hop_length,
|
| 94 |
+
win_length=self.win_length, n_fft=self.filter_length,
|
| 95 |
+
dtype=np.float32)
|
| 96 |
+
# remove modulation effects
|
| 97 |
+
approx_nonzero_indices = torch.from_numpy(
|
| 98 |
+
np.where(window_sum > tiny(window_sum))[0])
|
| 99 |
+
window_sum = torch.autograd.Variable(
|
| 100 |
+
torch.from_numpy(window_sum), requires_grad=False)
|
| 101 |
+
window_sum = window_sum.cuda() if magnitude.is_cuda else window_sum
|
| 102 |
+
inverse_transform[:, :,
|
| 103 |
+
approx_nonzero_indices] /= window_sum[approx_nonzero_indices]
|
| 104 |
+
|
| 105 |
+
# scale by hop ratio
|
| 106 |
+
inverse_transform *= float(self.filter_length) / self.hop_length
|
| 107 |
+
|
| 108 |
+
inverse_transform = inverse_transform[:, :, int(self.filter_length/2):]
|
| 109 |
+
inverse_transform = inverse_transform[:,
|
| 110 |
+
:, :-int(self.filter_length/2):]
|
| 111 |
+
|
| 112 |
+
return inverse_transform
|
| 113 |
+
|
| 114 |
+
def forward(self, input_data):
|
| 115 |
+
self.magnitude, self.phase = self.transform(input_data)
|
| 116 |
+
reconstruction = self.inverse(self.magnitude, self.phase)
|
| 117 |
+
return reconstruction
|
| 118 |
+
|
| 119 |
+
|
| 120 |
+
class TacotronSTFT(torch.nn.Module):
|
| 121 |
+
def __init__(self, filter_length, hop_length, win_length,
|
| 122 |
+
n_mel_channels, sampling_rate, mel_fmin=0.0,
|
| 123 |
+
mel_fmax=8000.0):
|
| 124 |
+
super(TacotronSTFT, self).__init__()
|
| 125 |
+
self.n_mel_channels = n_mel_channels
|
| 126 |
+
self.sampling_rate = sampling_rate
|
| 127 |
+
self.stft_fn = STFT(filter_length, hop_length, win_length)
|
| 128 |
+
mel_basis = librosa_mel_fn(
|
| 129 |
+
sampling_rate, filter_length, n_mel_channels, mel_fmin, mel_fmax)
|
| 130 |
+
mel_basis = torch.from_numpy(mel_basis).float()
|
| 131 |
+
self.register_buffer('mel_basis', mel_basis)
|
| 132 |
+
|
| 133 |
+
def spectral_normalize(self, magnitudes):
|
| 134 |
+
output = dynamic_range_compression(magnitudes)
|
| 135 |
+
return output
|
| 136 |
+
|
| 137 |
+
def spectral_de_normalize(self, magnitudes):
|
| 138 |
+
output = dynamic_range_decompression(magnitudes)
|
| 139 |
+
return output
|
| 140 |
+
|
| 141 |
+
def mel_spectrogram(self, y):
|
| 142 |
+
"""Computes mel-spectrograms from a batch of waves
|
| 143 |
+
PARAMS
|
| 144 |
+
------
|
| 145 |
+
y: Variable(torch.FloatTensor) with shape (B, T) in range [-1, 1]
|
| 146 |
+
|
| 147 |
+
RETURNS
|
| 148 |
+
-------
|
| 149 |
+
mel_output: torch.FloatTensor of shape (B, n_mel_channels, T)
|
| 150 |
+
"""
|
| 151 |
+
assert(torch.min(y.data) >= -1)
|
| 152 |
+
assert(torch.max(y.data) <= 1)
|
| 153 |
+
|
| 154 |
+
magnitudes, phases = self.stft_fn.transform(y)
|
| 155 |
+
magnitudes = magnitudes.data
|
| 156 |
+
mel_output = torch.matmul(self.mel_basis, magnitudes)
|
| 157 |
+
mel_output = self.spectral_normalize(mel_output)
|
| 158 |
+
energy = torch.norm(magnitudes, dim=1)
|
| 159 |
+
|
| 160 |
+
return mel_output, energy
|
audio/tools.py
ADDED
|
@@ -0,0 +1,68 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import torch
|
| 2 |
+
import numpy as np
|
| 3 |
+
from scipy.io.wavfile import read
|
| 4 |
+
from scipy.io.wavfile import write
|
| 5 |
+
|
| 6 |
+
import audio.stft as stft
|
| 7 |
+
from audio.audio_processing import griffin_lim
|
| 8 |
+
import hparams
|
| 9 |
+
|
| 10 |
+
_stft = stft.TacotronSTFT(
|
| 11 |
+
hparams.filter_length, hparams.hop_length, hparams.win_length,
|
| 12 |
+
hparams.n_mel_channels, hparams.sampling_rate, hparams.mel_fmin,
|
| 13 |
+
hparams.mel_fmax)
|
| 14 |
+
|
| 15 |
+
|
| 16 |
+
def load_wav_to_torch(full_path):
|
| 17 |
+
sampling_rate, data = read(full_path)
|
| 18 |
+
return torch.FloatTensor(data.astype(np.float32)), sampling_rate
|
| 19 |
+
|
| 20 |
+
|
| 21 |
+
def get_mel(filename):
|
| 22 |
+
audio, sampling_rate = load_wav_to_torch(filename)
|
| 23 |
+
if sampling_rate != _stft.sampling_rate:
|
| 24 |
+
raise ValueError("{} {} SR doesn't match target {} SR".format(
|
| 25 |
+
sampling_rate, _stft.sampling_rate))
|
| 26 |
+
audio_norm = audio / hparams.max_wav_value
|
| 27 |
+
audio_norm = audio_norm.unsqueeze(0)
|
| 28 |
+
audio_norm = torch.autograd.Variable(audio_norm, requires_grad=False)
|
| 29 |
+
melspec, energy = _stft.mel_spectrogram(audio_norm)
|
| 30 |
+
melspec = torch.squeeze(melspec, 0)
|
| 31 |
+
energy = torch.squeeze(energy, 0)
|
| 32 |
+
# melspec = torch.from_numpy(_normalize(melspec.numpy()))
|
| 33 |
+
|
| 34 |
+
return melspec, energy
|
| 35 |
+
|
| 36 |
+
|
| 37 |
+
def get_mel_from_wav(audio):
|
| 38 |
+
sampling_rate = hparams.sampling_rate
|
| 39 |
+
if sampling_rate != _stft.sampling_rate:
|
| 40 |
+
raise ValueError("{} {} SR doesn't match target {} SR".format(
|
| 41 |
+
sampling_rate, _stft.sampling_rate))
|
| 42 |
+
audio_norm = audio / hparams.max_wav_value
|
| 43 |
+
audio_norm = audio_norm.unsqueeze(0)
|
| 44 |
+
audio_norm = torch.autograd.Variable(audio_norm, requires_grad=False)
|
| 45 |
+
melspec, energy = _stft.mel_spectrogram(audio_norm)
|
| 46 |
+
melspec = torch.squeeze(melspec, 0)
|
| 47 |
+
energy = torch.squeeze(energy, 0)
|
| 48 |
+
|
| 49 |
+
return melspec, energy
|
| 50 |
+
|
| 51 |
+
|
| 52 |
+
def inv_mel_spec(mel, out_filename, griffin_iters=60):
|
| 53 |
+
mel = torch.stack([mel])
|
| 54 |
+
# mel = torch.stack([torch.from_numpy(_denormalize(mel.numpy()))])
|
| 55 |
+
mel_decompress = _stft.spectral_de_normalize(mel)
|
| 56 |
+
mel_decompress = mel_decompress.transpose(1, 2).data.cpu()
|
| 57 |
+
spec_from_mel_scaling = 1000
|
| 58 |
+
spec_from_mel = torch.mm(mel_decompress[0], _stft.mel_basis)
|
| 59 |
+
spec_from_mel = spec_from_mel.transpose(0, 1).unsqueeze(0)
|
| 60 |
+
spec_from_mel = spec_from_mel * spec_from_mel_scaling
|
| 61 |
+
|
| 62 |
+
audio = griffin_lim(torch.autograd.Variable(
|
| 63 |
+
spec_from_mel[:, :, :-1]), _stft.stft_fn, griffin_iters)
|
| 64 |
+
|
| 65 |
+
audio = audio.squeeze()
|
| 66 |
+
audio = audio.cpu().numpy()
|
| 67 |
+
audio_path = out_filename
|
| 68 |
+
write(audio_path, hparams.sampling_rate, audio)
|
dataset.py
ADDED
|
@@ -0,0 +1,131 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import torch
|
| 2 |
+
from torch.utils.data import Dataset, DataLoader
|
| 3 |
+
|
| 4 |
+
import numpy as np
|
| 5 |
+
import math
|
| 6 |
+
import os
|
| 7 |
+
|
| 8 |
+
import hparams
|
| 9 |
+
import audio as Audio
|
| 10 |
+
from utils import pad_1D, pad_2D, process_meta, standard_norm
|
| 11 |
+
from text import text_to_sequence, sequence_to_text
|
| 12 |
+
import time
|
| 13 |
+
|
| 14 |
+
device = torch.device('cuda' if torch.cuda.is_available() else 'cpu')
|
| 15 |
+
|
| 16 |
+
|
| 17 |
+
class Dataset(Dataset):
|
| 18 |
+
def __init__(self, filename="train.txt", sort=True):
|
| 19 |
+
self.basename, self.text = process_meta(os.path.join(hparams.preprocessed_path, filename))
|
| 20 |
+
|
| 21 |
+
self.mean_mel, self.std_mel = np.load(os.path.join(hparams.preprocessed_path, "mel_stat.npy"))
|
| 22 |
+
self.mean_f0, self.std_f0 = np.load(os.path.join(hparams.preprocessed_path, "f0_stat.npy"))
|
| 23 |
+
self.mean_energy, self.std_energy = np.load(os.path.join(hparams.preprocessed_path, "energy_stat.npy"))
|
| 24 |
+
|
| 25 |
+
self.sort = sort
|
| 26 |
+
|
| 27 |
+
def __len__(self):
|
| 28 |
+
return len(self.text)
|
| 29 |
+
|
| 30 |
+
def __getitem__(self, idx):
|
| 31 |
+
t=self.text[idx]
|
| 32 |
+
basename=self.basename[idx]
|
| 33 |
+
phone = np.array(text_to_sequence(t, []))
|
| 34 |
+
|
| 35 |
+
mel_path = os.path.join(
|
| 36 |
+
hparams.preprocessed_path, "mel", "{}-mel-{}.npy".format(hparams.dataset, basename))
|
| 37 |
+
mel_target = np.load(mel_path)
|
| 38 |
+
D_path = os.path.join(
|
| 39 |
+
hparams.preprocessed_path, "alignment", "{}-ali-{}.npy".format(hparams.dataset, basename))
|
| 40 |
+
D = np.load(D_path)
|
| 41 |
+
f0_path = os.path.join(
|
| 42 |
+
hparams.preprocessed_path, "f0", "{}-f0-{}.npy".format(hparams.dataset, basename))
|
| 43 |
+
f0 = np.load(f0_path)
|
| 44 |
+
energy_path = os.path.join(
|
| 45 |
+
hparams.preprocessed_path, "energy", "{}-energy-{}.npy".format(hparams.dataset, basename))
|
| 46 |
+
energy = np.load(energy_path)
|
| 47 |
+
|
| 48 |
+
sample = {"id": basename,
|
| 49 |
+
"text": phone,
|
| 50 |
+
"mel_target": mel_target,
|
| 51 |
+
"D": D,
|
| 52 |
+
"f0": f0,
|
| 53 |
+
"energy": energy}
|
| 54 |
+
return sample
|
| 55 |
+
|
| 56 |
+
|
| 57 |
+
def reprocess(self, batch, cut_list):
|
| 58 |
+
ids = [batch[ind]["id"] for ind in cut_list]
|
| 59 |
+
texts = [batch[ind]["text"] for ind in cut_list]
|
| 60 |
+
mel_targets = [standard_norm(batch[ind]["mel_target"], self.mean_mel, self.std_mel, is_mel=True) for ind in cut_list]
|
| 61 |
+
Ds = [batch[ind]["D"] for ind in cut_list]
|
| 62 |
+
f0s = [standard_norm(batch[ind]["f0"], self.mean_f0, self.std_f0) for ind in cut_list]
|
| 63 |
+
energies = [standard_norm(batch[ind]["energy"], self.mean_energy, self.std_energy) for ind in cut_list]
|
| 64 |
+
|
| 65 |
+
for text, D, id_ in zip(texts, Ds, ids):
|
| 66 |
+
if len(text) != len(D):
|
| 67 |
+
print('the dimension of text and duration should be the same')
|
| 68 |
+
print('text: ',sequence_to_text(text))
|
| 69 |
+
print(text, text.shape, D, D.shape, id_)
|
| 70 |
+
length_text = np.array(list())
|
| 71 |
+
for text in texts:
|
| 72 |
+
length_text = np.append(length_text, text.shape[0])
|
| 73 |
+
|
| 74 |
+
length_mel = np.array(list())
|
| 75 |
+
for mel in mel_targets:
|
| 76 |
+
length_mel = np.append(length_mel, mel.shape[0])
|
| 77 |
+
|
| 78 |
+
texts = pad_1D(texts)
|
| 79 |
+
Ds = pad_1D(Ds)
|
| 80 |
+
mel_targets = pad_2D(mel_targets)
|
| 81 |
+
f0s = pad_1D(f0s)
|
| 82 |
+
energies = pad_1D(energies)
|
| 83 |
+
log_Ds = np.log(Ds + hparams.log_offset)
|
| 84 |
+
|
| 85 |
+
out = {"id": ids,
|
| 86 |
+
"text": texts,
|
| 87 |
+
"mel_target": mel_targets,
|
| 88 |
+
"D": Ds,
|
| 89 |
+
"log_D": log_Ds,
|
| 90 |
+
"f0": f0s,
|
| 91 |
+
"energy": energies,
|
| 92 |
+
"src_len": length_text,
|
| 93 |
+
"mel_len": length_mel}
|
| 94 |
+
|
| 95 |
+
return out
|
| 96 |
+
|
| 97 |
+
def collate_fn(self, batch):
|
| 98 |
+
len_arr = np.array([d["text"].shape[0] for d in batch])
|
| 99 |
+
index_arr = np.argsort(-len_arr)
|
| 100 |
+
batchsize = len(batch)
|
| 101 |
+
real_batchsize = int(math.sqrt(batchsize))
|
| 102 |
+
|
| 103 |
+
cut_list = list()
|
| 104 |
+
for i in range(real_batchsize):
|
| 105 |
+
if self.sort:
|
| 106 |
+
cut_list.append(index_arr[i*real_batchsize:(i+1)*real_batchsize])
|
| 107 |
+
else:
|
| 108 |
+
cut_list.append(np.arange(i*real_batchsize, (i+1)*real_batchsize))
|
| 109 |
+
|
| 110 |
+
output = list()
|
| 111 |
+
for i in range(real_batchsize):
|
| 112 |
+
output.append(self.reprocess(batch, cut_list[i]))
|
| 113 |
+
|
| 114 |
+
return output
|
| 115 |
+
|
| 116 |
+
if __name__ == "__main__":
|
| 117 |
+
# Test
|
| 118 |
+
dataset = Dataset('val.txt')
|
| 119 |
+
training_loader = DataLoader(dataset, batch_size=1, shuffle=False, collate_fn=dataset.collate_fn,
|
| 120 |
+
drop_last=True, num_workers=0)
|
| 121 |
+
total_step = hparams.epochs * len(training_loader) * hparams.batch_size
|
| 122 |
+
|
| 123 |
+
cnt = 0
|
| 124 |
+
for i, batchs in enumerate(training_loader):
|
| 125 |
+
for j, data_of_batch in enumerate(batchs):
|
| 126 |
+
mel_target = torch.from_numpy(
|
| 127 |
+
data_of_batch["mel_target"]).float().to(device)
|
| 128 |
+
D = torch.from_numpy(data_of_batch["D"]).int().to(device)
|
| 129 |
+
if mel_target.shape[1] == D.sum().item():
|
| 130 |
+
cnt += 1
|
| 131 |
+
|
evaluate.py
ADDED
|
@@ -0,0 +1,179 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import torch
|
| 2 |
+
import torch.nn as nn
|
| 3 |
+
from torch.utils.data import DataLoader
|
| 4 |
+
|
| 5 |
+
import numpy as np
|
| 6 |
+
import os
|
| 7 |
+
import argparse
|
| 8 |
+
import re
|
| 9 |
+
|
| 10 |
+
from fastspeech2 import FastSpeech2
|
| 11 |
+
from loss import FastSpeech2Loss
|
| 12 |
+
|
| 13 |
+
from dataset import Dataset
|
| 14 |
+
from text import text_to_sequence, sequence_to_text
|
| 15 |
+
|
| 16 |
+
import hparams as hp
|
| 17 |
+
import utils
|
| 18 |
+
import audio as Audio
|
| 19 |
+
|
| 20 |
+
device = torch.device('cuda' if torch.cuda.is_available() else 'cpu')
|
| 21 |
+
|
| 22 |
+
def get_FastSpeech2(num):
|
| 23 |
+
checkpoint_path = os.path.join(hp.checkpoint_path, "checkpoint_{}.pth.tar".format(num))
|
| 24 |
+
model = nn.DataParallel(FastSpeech2())
|
| 25 |
+
model.load_state_dict(torch.load(checkpoint_path)['model'])
|
| 26 |
+
model.requires_grad = False
|
| 27 |
+
model.eval()
|
| 28 |
+
return model
|
| 29 |
+
|
| 30 |
+
def evaluate(model, step, vocoder=None):
|
| 31 |
+
model.eval()
|
| 32 |
+
torch.manual_seed(0)
|
| 33 |
+
|
| 34 |
+
mean_mel, std_mel = torch.tensor(np.load(os.path.join(hp.preprocessed_path, "mel_stat.npy")), dtype=torch.float).to(device)
|
| 35 |
+
mean_f0, std_f0 = torch.tensor(np.load(os.path.join(hp.preprocessed_path, "f0_stat.npy")), dtype=torch.float).to(device)
|
| 36 |
+
mean_energy, std_energy = torch.tensor(np.load(os.path.join(hp.preprocessed_path, "energy_stat.npy")), dtype=torch.float).to(device)
|
| 37 |
+
|
| 38 |
+
eval_path = hp.eval_path
|
| 39 |
+
if not os.path.exists(eval_path):
|
| 40 |
+
os.makedirs(eval_path)
|
| 41 |
+
|
| 42 |
+
# Get dataset
|
| 43 |
+
dataset = Dataset("val.txt", sort=False)
|
| 44 |
+
loader = DataLoader(dataset, batch_size=hp.batch_size**2, shuffle=False, collate_fn=dataset.collate_fn, drop_last=False, num_workers=0, )
|
| 45 |
+
|
| 46 |
+
# Get loss function
|
| 47 |
+
Loss = FastSpeech2Loss().to(device)
|
| 48 |
+
|
| 49 |
+
# Evaluation
|
| 50 |
+
d_l = []
|
| 51 |
+
f_l = []
|
| 52 |
+
e_l = []
|
| 53 |
+
mel_l = []
|
| 54 |
+
mel_p_l = []
|
| 55 |
+
current_step = 0
|
| 56 |
+
idx = 0
|
| 57 |
+
for i, batchs in enumerate(loader):
|
| 58 |
+
for j, data_of_batch in enumerate(batchs):
|
| 59 |
+
# Get Data
|
| 60 |
+
id_ = data_of_batch["id"]
|
| 61 |
+
text = torch.from_numpy(data_of_batch["text"]).long().to(device)
|
| 62 |
+
mel_target = torch.from_numpy(data_of_batch["mel_target"]).float().to(device)
|
| 63 |
+
D = torch.from_numpy(data_of_batch["D"]).int().to(device)
|
| 64 |
+
log_D = torch.from_numpy(data_of_batch["log_D"]).int().to(device)
|
| 65 |
+
f0 = torch.from_numpy(data_of_batch["f0"]).float().to(device)
|
| 66 |
+
energy = torch.from_numpy(data_of_batch["energy"]).float().to(device)
|
| 67 |
+
src_len = torch.from_numpy(data_of_batch["src_len"]).long().to(device)
|
| 68 |
+
mel_len = torch.from_numpy(data_of_batch["mel_len"]).long().to(device)
|
| 69 |
+
max_src_len = np.max(data_of_batch["src_len"]).astype(np.int32)
|
| 70 |
+
max_mel_len = np.max(data_of_batch["mel_len"]).astype(np.int32)
|
| 71 |
+
|
| 72 |
+
with torch.no_grad():
|
| 73 |
+
# Forward
|
| 74 |
+
mel_output, mel_postnet_output, log_duration_output, f0_output, energy_output, src_mask, mel_mask, out_mel_len = model(
|
| 75 |
+
text, src_len, mel_len, D, f0, energy, max_src_len, max_mel_len)
|
| 76 |
+
|
| 77 |
+
# Cal Loss
|
| 78 |
+
mel_loss, mel_postnet_loss, d_loss, f_loss, e_loss = Loss(
|
| 79 |
+
log_duration_output, log_D, f0_output, f0, energy_output, energy, mel_output, mel_postnet_output, mel_target, ~src_mask, ~mel_mask)
|
| 80 |
+
|
| 81 |
+
d_l.append(d_loss.item())
|
| 82 |
+
f_l.append(f_loss.item())
|
| 83 |
+
e_l.append(e_loss.item())
|
| 84 |
+
mel_l.append(mel_loss.item())
|
| 85 |
+
mel_p_l.append(mel_postnet_loss.item())
|
| 86 |
+
|
| 87 |
+
if idx == 0 and vocoder is not None:
|
| 88 |
+
# Run vocoding and plotting spectrogram only when the vocoder is defined
|
| 89 |
+
for k in range(1):
|
| 90 |
+
basename = id_[k]
|
| 91 |
+
gt_length = mel_len[k]
|
| 92 |
+
out_length = out_mel_len[k]
|
| 93 |
+
|
| 94 |
+
mel_target_torch = mel_target[k:k+1, :gt_length]
|
| 95 |
+
mel_target_ = mel_target[k, :gt_length]
|
| 96 |
+
mel_postnet_torch = mel_postnet_output[k:k+1, :out_length]
|
| 97 |
+
mel_postnet = mel_postnet_output[k, :out_length]
|
| 98 |
+
|
| 99 |
+
mel_target_torch = utils.de_norm(mel_target_torch, mean_mel, std_mel).transpose(1, 2).detach()
|
| 100 |
+
mel_target_ = utils.de_norm(mel_target_, mean_mel, std_mel).cpu().transpose(0, 1).detach()
|
| 101 |
+
mel_postnet_torch = utils.de_norm(mel_postnet_torch, mean_mel, std_mel).transpose(1, 2).detach()
|
| 102 |
+
mel_postnet = utils.de_norm(mel_postnet, mean_mel, std_mel).cpu().transpose(0, 1).detach()
|
| 103 |
+
|
| 104 |
+
if hp.vocoder == "vocgan":
|
| 105 |
+
utils.vocgan_infer(mel_target_torch, vocoder, path=os.path.join(hp.eval_path, 'eval_groundtruth_{}_{}.wav'.format(basename, hp.vocoder)))
|
| 106 |
+
utils.vocgan_infer(mel_postnet_torch, vocoder, path=os.path.join(hp.eval_path, 'eval_step_{}_{}_{}.wav'.format(step, basename, hp.vocoder)))
|
| 107 |
+
np.save(os.path.join(hp.eval_path, 'eval_step_{}_{}_mel.npy'.format(step, basename)), mel_postnet.numpy())
|
| 108 |
+
|
| 109 |
+
f0_ = f0[k, :gt_length]
|
| 110 |
+
energy_ = energy[k, :gt_length]
|
| 111 |
+
f0_output_ = f0_output[k, :out_length]
|
| 112 |
+
energy_output_ = energy_output[k, :out_length]
|
| 113 |
+
|
| 114 |
+
f0_ = utils.de_norm(f0_, mean_f0, std_f0).detach().cpu().numpy()
|
| 115 |
+
f0_output_ = utils.de_norm(f0_output, mean_f0, std_f0).detach().cpu().numpy()
|
| 116 |
+
energy_ = utils.de_norm(energy_, mean_energy, std_energy).detach().cpu().numpy()
|
| 117 |
+
energy_output_ = utils.de_norm(energy_output_, mean_energy, std_energy).detach().cpu().numpy()
|
| 118 |
+
|
| 119 |
+
utils.plot_data([(mel_postnet.numpy(), f0_output_, energy_output_), (mel_target_.numpy(), f0_, energy_)],
|
| 120 |
+
['Synthesized Spectrogram', 'Ground-Truth Spectrogram'], filename=os.path.join(hp.eval_path, 'eval_step_{}_{}.png'.format(step, basename)))
|
| 121 |
+
idx += 1
|
| 122 |
+
print("done")
|
| 123 |
+
current_step += 1
|
| 124 |
+
|
| 125 |
+
d_l = sum(d_l) / len(d_l)
|
| 126 |
+
f_l = sum(f_l) / len(f_l)
|
| 127 |
+
e_l = sum(e_l) / len(e_l)
|
| 128 |
+
mel_l = sum(mel_l) / len(mel_l)
|
| 129 |
+
mel_p_l = sum(mel_p_l) / len(mel_p_l)
|
| 130 |
+
|
| 131 |
+
str1 = "FastSpeech2 Step {},".format(step)
|
| 132 |
+
str2 = "Duration Loss: {}".format(d_l)
|
| 133 |
+
str3 = "F0 Loss: {}".format(f_l)
|
| 134 |
+
str4 = "Energy Loss: {}".format(e_l)
|
| 135 |
+
str5 = "Mel Loss: {}".format(mel_l)
|
| 136 |
+
str6 = "Mel Postnet Loss: {}".format(mel_p_l)
|
| 137 |
+
|
| 138 |
+
print("\n" + str1)
|
| 139 |
+
print(str2)
|
| 140 |
+
print(str3)
|
| 141 |
+
print(str4)
|
| 142 |
+
print(str5)
|
| 143 |
+
print(str6)
|
| 144 |
+
|
| 145 |
+
with open(os.path.join(hp.log_path, "eval.txt"), "a") as f_log:
|
| 146 |
+
f_log.write(str1 + "\n")
|
| 147 |
+
f_log.write(str2 + "\n")
|
| 148 |
+
f_log.write(str3 + "\n")
|
| 149 |
+
f_log.write(str4 + "\n")
|
| 150 |
+
f_log.write(str5 + "\n")
|
| 151 |
+
f_log.write(str6 + "\n")
|
| 152 |
+
f_log.write("\n")
|
| 153 |
+
model.train()
|
| 154 |
+
|
| 155 |
+
return d_l, f_l, e_l, mel_l, mel_p_l
|
| 156 |
+
|
| 157 |
+
if __name__ == "__main__":
|
| 158 |
+
|
| 159 |
+
parser = argparse.ArgumentParser()
|
| 160 |
+
parser.add_argument('--step', type=int, default=30000)
|
| 161 |
+
args = parser.parse_args()
|
| 162 |
+
|
| 163 |
+
# Get model
|
| 164 |
+
model = get_FastSpeech2(args.step).to(device)
|
| 165 |
+
print("Model Has Been Defined")
|
| 166 |
+
num_param = utils.get_param_num(model)
|
| 167 |
+
print('Number of FastSpeech2 Parameters:', num_param)
|
| 168 |
+
|
| 169 |
+
# Load vocoder
|
| 170 |
+
if hp.vocoder == 'vocgan':
|
| 171 |
+
vocoder = utils.get_vocgan(ckpt_path=hp.vocoder_pretrained_model_path)
|
| 172 |
+
vocoder.to(device)
|
| 173 |
+
|
| 174 |
+
# Init directories
|
| 175 |
+
if not os.path.exists(hp.log_path):
|
| 176 |
+
os.makedirs(hp.log_path)
|
| 177 |
+
if not os.path.exists(hp.eval_path):
|
| 178 |
+
os.makedirs(hp.eval_path)
|
| 179 |
+
evaluate(model, args.step, vocoder)
|
fastspeech2.py
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import torch
|
| 2 |
+
import torch.nn as nn
|
| 3 |
+
import torch.nn.functional as F
|
| 4 |
+
|
| 5 |
+
from transformer.Models import Encoder, Decoder
|
| 6 |
+
from transformer.Layers import PostNet
|
| 7 |
+
from modules import VarianceAdaptor
|
| 8 |
+
from utils import get_mask_from_lengths
|
| 9 |
+
import hparams as hp
|
| 10 |
+
|
| 11 |
+
device = torch.device('cuda' if torch.cuda.is_available() else 'cpu')
|
| 12 |
+
|
| 13 |
+
class FastSpeech2(nn.Module):
|
| 14 |
+
""" FastSpeech2 """
|
| 15 |
+
|
| 16 |
+
def __init__(self, use_postnet=True):
|
| 17 |
+
super(FastSpeech2, self).__init__()
|
| 18 |
+
|
| 19 |
+
self.encoder = Encoder()
|
| 20 |
+
self.variance_adaptor = VarianceAdaptor()
|
| 21 |
+
|
| 22 |
+
self.decoder = Decoder()
|
| 23 |
+
self.mel_linear = nn.Linear(hp.decoder_hidden, hp.n_mel_channels)
|
| 24 |
+
|
| 25 |
+
self.use_postnet = use_postnet
|
| 26 |
+
if self.use_postnet:
|
| 27 |
+
self.postnet = PostNet()
|
| 28 |
+
|
| 29 |
+
def forward(self, src_seq, src_len, mel_len=None, d_target=None, p_target=None, e_target=None, max_src_len=None, max_mel_len=None):
|
| 30 |
+
src_mask = get_mask_from_lengths(src_len, max_src_len)
|
| 31 |
+
mel_mask = get_mask_from_lengths(mel_len, max_mel_len) if mel_len is not None else None
|
| 32 |
+
|
| 33 |
+
encoder_output = self.encoder(src_seq, src_mask)
|
| 34 |
+
if d_target is not None:
|
| 35 |
+
variance_adaptor_output, d_prediction, p_prediction, e_prediction, _, _ = self.variance_adaptor(
|
| 36 |
+
encoder_output, src_mask, mel_mask, d_target, p_target, e_target, max_mel_len)
|
| 37 |
+
else:
|
| 38 |
+
variance_adaptor_output, d_prediction, p_prediction, e_prediction, mel_len, mel_mask = self.variance_adaptor(
|
| 39 |
+
encoder_output, src_mask, mel_mask, d_target, p_target, e_target, max_mel_len)
|
| 40 |
+
|
| 41 |
+
decoder_output = self.decoder(variance_adaptor_output, mel_mask)
|
| 42 |
+
mel_output = self.mel_linear(decoder_output)
|
| 43 |
+
|
| 44 |
+
if self.use_postnet:
|
| 45 |
+
mel_output_postnet = self.postnet(mel_output) + mel_output
|
| 46 |
+
else:
|
| 47 |
+
mel_output_postnet = mel_output
|
| 48 |
+
|
| 49 |
+
return mel_output, mel_output_postnet, d_prediction, p_prediction, e_prediction, src_mask, mel_mask, mel_len
|
| 50 |
+
|
| 51 |
+
|
| 52 |
+
if __name__ == "__main__":
|
| 53 |
+
# Test
|
| 54 |
+
model = FastSpeech2(use_postnet=False)
|
| 55 |
+
print(model)
|
| 56 |
+
print(sum(param.numel() for param in model.parameters()))
|
hparams.py
ADDED
|
@@ -0,0 +1,88 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import os
|
| 2 |
+
### kss ###
|
| 3 |
+
dataset = "kss_elena"
|
| 4 |
+
data_path = os.path.join("./data", dataset)
|
| 5 |
+
meta_name = "transcript.v.1.4.txt" # "transcript.v.1.4.txt" or "transcript.v.1.3.txt"
|
| 6 |
+
textgrid_path=""
|
| 7 |
+
textgrid_name = "TextGrid.zip"
|
| 8 |
+
|
| 9 |
+
### set GPU number ###
|
| 10 |
+
train_visible_devices = "0"
|
| 11 |
+
synth_visible_devices = "0"
|
| 12 |
+
|
| 13 |
+
# Text
|
| 14 |
+
text_cleaners = ['korean_cleaners']
|
| 15 |
+
|
| 16 |
+
# Audio and mel
|
| 17 |
+
### kss ###
|
| 18 |
+
sampling_rate = 22050
|
| 19 |
+
filter_length = 1024
|
| 20 |
+
hop_length = 256
|
| 21 |
+
win_length = 1024
|
| 22 |
+
|
| 23 |
+
### kss ###
|
| 24 |
+
max_wav_value = 32768.0
|
| 25 |
+
n_mel_channels = 80
|
| 26 |
+
mel_fmin = 0
|
| 27 |
+
mel_fmax = 8000
|
| 28 |
+
|
| 29 |
+
f0_min = 71.0
|
| 30 |
+
f0_max = 792.8
|
| 31 |
+
energy_min = 0.0
|
| 32 |
+
energy_max = 283.72
|
| 33 |
+
|
| 34 |
+
|
| 35 |
+
# FastSpeech 2
|
| 36 |
+
encoder_layer = 4
|
| 37 |
+
encoder_head = 2
|
| 38 |
+
encoder_hidden = 256
|
| 39 |
+
decoder_layer = 4
|
| 40 |
+
decoder_head = 2
|
| 41 |
+
decoder_hidden = 256
|
| 42 |
+
fft_conv1d_filter_size = 1024
|
| 43 |
+
fft_conv1d_kernel_size = (9, 1)
|
| 44 |
+
encoder_dropout = 0.2
|
| 45 |
+
decoder_dropout = 0.2
|
| 46 |
+
|
| 47 |
+
variance_predictor_filter_size = 256
|
| 48 |
+
variance_predictor_kernel_size = 3
|
| 49 |
+
variance_predictor_dropout = 0.5
|
| 50 |
+
|
| 51 |
+
max_seq_len = 1000
|
| 52 |
+
|
| 53 |
+
# Checkpoints and synthesis path
|
| 54 |
+
preprocessed_path = os.path.join("./preprocessed/", dataset)
|
| 55 |
+
checkpoint_path = os.path.join("./ckpt/", dataset)
|
| 56 |
+
eval_path = os.path.join("./eval/", dataset)
|
| 57 |
+
log_path = os.path.join("./log/", dataset)
|
| 58 |
+
test_path = "./results"
|
| 59 |
+
|
| 60 |
+
|
| 61 |
+
# Optimizer
|
| 62 |
+
batch_size = 4
|
| 63 |
+
epochs = 99999
|
| 64 |
+
n_warm_up_step = 4000
|
| 65 |
+
grad_clip_thresh = 1.0
|
| 66 |
+
acc_steps = 1
|
| 67 |
+
|
| 68 |
+
betas = (0.9, 0.98)
|
| 69 |
+
eps = 1e-9
|
| 70 |
+
weight_decay = 0.
|
| 71 |
+
|
| 72 |
+
|
| 73 |
+
# Vocoder
|
| 74 |
+
vocoder = 'vocgan'
|
| 75 |
+
vocoder_pretrained_model_name = "kss_elena_2dfbde2_61480.pt"
|
| 76 |
+
vocoder_pretrained_model_path = os.path.join("./vocoder/pretrained_models/", vocoder_pretrained_model_name)
|
| 77 |
+
|
| 78 |
+
# Log-scaled duration
|
| 79 |
+
log_offset = 1.
|
| 80 |
+
|
| 81 |
+
|
| 82 |
+
# Save, log and synthesis
|
| 83 |
+
save_step = 10000
|
| 84 |
+
eval_step = 1000
|
| 85 |
+
eval_size = 256
|
| 86 |
+
log_step = 1000
|
| 87 |
+
clear_Time = 20
|
| 88 |
+
|
loss.py
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import torch
|
| 2 |
+
import torch.nn as nn
|
| 3 |
+
import hparams as hp
|
| 4 |
+
|
| 5 |
+
class FastSpeech2Loss(nn.Module):
|
| 6 |
+
""" FastSpeech2 Loss """
|
| 7 |
+
|
| 8 |
+
def __init__(self):
|
| 9 |
+
super(FastSpeech2Loss, self).__init__()
|
| 10 |
+
self.mse_loss = nn.MSELoss()
|
| 11 |
+
self.mae_loss = nn.L1Loss()
|
| 12 |
+
|
| 13 |
+
def forward(self, log_d_predicted, log_d_target, p_predicted, p_target, e_predicted, e_target, mel, mel_postnet, mel_target, src_mask, mel_mask):
|
| 14 |
+
log_d_target.requires_grad = False
|
| 15 |
+
p_target.requires_grad = False
|
| 16 |
+
e_target.requires_grad = False
|
| 17 |
+
mel_target.requires_grad = False
|
| 18 |
+
|
| 19 |
+
log_d_predicted = log_d_predicted.masked_select(src_mask)
|
| 20 |
+
log_d_target = log_d_target.masked_select(src_mask)
|
| 21 |
+
p_predicted = p_predicted.masked_select(src_mask)
|
| 22 |
+
p_target = p_target.masked_select(src_mask)
|
| 23 |
+
e_predicted = e_predicted.masked_select(src_mask)
|
| 24 |
+
e_target = e_target.masked_select(src_mask)
|
| 25 |
+
|
| 26 |
+
mel = mel.masked_select(mel_mask.unsqueeze(-1))
|
| 27 |
+
mel_postnet = mel_postnet.masked_select(mel_mask.unsqueeze(-1))
|
| 28 |
+
mel_target = mel_target.masked_select(mel_mask.unsqueeze(-1))
|
| 29 |
+
|
| 30 |
+
mel_loss = self.mse_loss(mel, mel_target)
|
| 31 |
+
mel_postnet_loss = self.mse_loss(mel_postnet, mel_target)
|
| 32 |
+
|
| 33 |
+
d_loss = self.mae_loss(log_d_predicted, log_d_target)
|
| 34 |
+
p_loss = self.mae_loss(p_predicted, p_target)
|
| 35 |
+
e_loss = self.mae_loss(e_predicted, e_target)
|
| 36 |
+
|
| 37 |
+
return mel_loss, mel_postnet_loss, d_loss, p_loss, e_loss
|
modules.py
ADDED
|
@@ -0,0 +1,176 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import torch
|
| 2 |
+
import torch.nn as nn
|
| 3 |
+
import torch.nn.functional as F
|
| 4 |
+
|
| 5 |
+
from collections import OrderedDict
|
| 6 |
+
import numpy as np
|
| 7 |
+
import copy
|
| 8 |
+
import math
|
| 9 |
+
|
| 10 |
+
import hparams as hp
|
| 11 |
+
import utils
|
| 12 |
+
|
| 13 |
+
device = torch.device('cuda' if torch.cuda.is_available() else 'cpu')
|
| 14 |
+
|
| 15 |
+
|
| 16 |
+
def clones(module, N):
|
| 17 |
+
return nn.ModuleList([copy.deepcopy(module) for _ in range(N)])
|
| 18 |
+
|
| 19 |
+
class VarianceAdaptor(nn.Module):
|
| 20 |
+
""" Variance Adaptor """
|
| 21 |
+
|
| 22 |
+
def __init__(self):
|
| 23 |
+
super(VarianceAdaptor, self).__init__()
|
| 24 |
+
self.duration_predictor = VariancePredictor()
|
| 25 |
+
self.length_regulator = LengthRegulator()
|
| 26 |
+
self.pitch_predictor = VariancePredictor()
|
| 27 |
+
self.energy_predictor = VariancePredictor()
|
| 28 |
+
|
| 29 |
+
self.energy_embedding_producer = Conv(1, hp.encoder_hidden, kernel_size=9, bias=False, padding=4)
|
| 30 |
+
self.pitch_embedding_producer = Conv(1, hp.encoder_hidden, kernel_size=9, bias=False, padding=4)
|
| 31 |
+
|
| 32 |
+
def forward(self, x, src_mask, mel_mask=None, duration_target=None, pitch_target=None, energy_target=None, max_len=None):
|
| 33 |
+
log_duration_prediction = self.duration_predictor(x, src_mask)
|
| 34 |
+
|
| 35 |
+
pitch_prediction = self.pitch_predictor(x, src_mask)
|
| 36 |
+
if pitch_target is not None:
|
| 37 |
+
pitch_embedding = self.pitch_embedding_producer(pitch_target.unsqueeze(2))
|
| 38 |
+
else:
|
| 39 |
+
pitch_embedding = self.pitch_embedding_producer(pitch_prediction.unsqueeze(2))
|
| 40 |
+
|
| 41 |
+
energy_prediction = self.energy_predictor(x, src_mask)
|
| 42 |
+
if energy_target is not None:
|
| 43 |
+
energy_embedding = self.energy_embedding_producer(energy_target.unsqueeze(2))
|
| 44 |
+
else:
|
| 45 |
+
energy_embedding = self.energy_embedding_producer(energy_prediction.unsqueeze(2))
|
| 46 |
+
|
| 47 |
+
x = x + pitch_embedding + energy_embedding
|
| 48 |
+
|
| 49 |
+
if duration_target is not None:
|
| 50 |
+
x, mel_len = self.length_regulator(x, duration_target, max_len)
|
| 51 |
+
else:
|
| 52 |
+
duration_rounded = torch.clamp(torch.round(torch.exp(log_duration_prediction)-hp.log_offset), min=0)
|
| 53 |
+
x, mel_len = self.length_regulator(x, duration_rounded, max_len)
|
| 54 |
+
mel_mask = utils.get_mask_from_lengths(mel_len)
|
| 55 |
+
|
| 56 |
+
return x, log_duration_prediction, pitch_prediction, energy_prediction, mel_len, mel_mask
|
| 57 |
+
|
| 58 |
+
|
| 59 |
+
class LengthRegulator(nn.Module):
|
| 60 |
+
""" Length Regulator """
|
| 61 |
+
|
| 62 |
+
def __init__(self):
|
| 63 |
+
super(LengthRegulator, self).__init__()
|
| 64 |
+
|
| 65 |
+
def LR(self, x, duration, max_len):
|
| 66 |
+
output = list()
|
| 67 |
+
mel_len = list()
|
| 68 |
+
for batch, expand_target in zip(x, duration):
|
| 69 |
+
expanded = self.expand(batch, expand_target)
|
| 70 |
+
output.append(expanded)
|
| 71 |
+
mel_len.append(expanded.shape[0])
|
| 72 |
+
|
| 73 |
+
if max_len is not None:
|
| 74 |
+
output = utils.pad(output, max_len)
|
| 75 |
+
else:
|
| 76 |
+
output = utils.pad(output)
|
| 77 |
+
|
| 78 |
+
return output, torch.LongTensor(mel_len).to(device)
|
| 79 |
+
|
| 80 |
+
def expand(self, batch, predicted):
|
| 81 |
+
out = list()
|
| 82 |
+
|
| 83 |
+
for i, vec in enumerate(batch):
|
| 84 |
+
expand_size = predicted[i].item()
|
| 85 |
+
out.append(vec.expand(int(expand_size), -1))
|
| 86 |
+
out = torch.cat(out, 0)
|
| 87 |
+
|
| 88 |
+
return out
|
| 89 |
+
|
| 90 |
+
def forward(self, x, duration, max_len):
|
| 91 |
+
output, mel_len = self.LR(x, duration, max_len)
|
| 92 |
+
return output, mel_len
|
| 93 |
+
|
| 94 |
+
|
| 95 |
+
class VariancePredictor(nn.Module):
|
| 96 |
+
""" Duration, Pitch and Energy Predictor """
|
| 97 |
+
|
| 98 |
+
def __init__(self):
|
| 99 |
+
super(VariancePredictor, self).__init__()
|
| 100 |
+
|
| 101 |
+
self.input_size = hp.encoder_hidden
|
| 102 |
+
self.filter_size = hp.variance_predictor_filter_size
|
| 103 |
+
self.kernel = hp.variance_predictor_kernel_size
|
| 104 |
+
self.conv_output_size = hp.variance_predictor_filter_size
|
| 105 |
+
self.dropout = hp.variance_predictor_dropout
|
| 106 |
+
|
| 107 |
+
self.conv_layer = nn.Sequential(OrderedDict([
|
| 108 |
+
("conv1d_1", Conv(self.input_size,
|
| 109 |
+
self.filter_size,
|
| 110 |
+
kernel_size=self.kernel,
|
| 111 |
+
padding=(self.kernel-1)//2)),
|
| 112 |
+
("relu_1", nn.ReLU()),
|
| 113 |
+
("layer_norm_1", nn.LayerNorm(self.filter_size)),
|
| 114 |
+
("dropout_1", nn.Dropout(self.dropout)),
|
| 115 |
+
("conv1d_2", Conv(self.filter_size,
|
| 116 |
+
self.filter_size,
|
| 117 |
+
kernel_size=self.kernel,
|
| 118 |
+
padding=1)),
|
| 119 |
+
("relu_2", nn.ReLU()),
|
| 120 |
+
("layer_norm_2", nn.LayerNorm(self.filter_size)),
|
| 121 |
+
("dropout_2", nn.Dropout(self.dropout))
|
| 122 |
+
]))
|
| 123 |
+
|
| 124 |
+
self.linear_layer = nn.Linear(self.conv_output_size, 1)
|
| 125 |
+
|
| 126 |
+
def forward(self, encoder_output, mask):
|
| 127 |
+
out = self.conv_layer(encoder_output)
|
| 128 |
+
out = self.linear_layer(out)
|
| 129 |
+
out = out.squeeze(-1)
|
| 130 |
+
|
| 131 |
+
if mask is not None:
|
| 132 |
+
out = out.masked_fill(mask, 0.)
|
| 133 |
+
|
| 134 |
+
return out
|
| 135 |
+
|
| 136 |
+
|
| 137 |
+
class Conv(nn.Module):
|
| 138 |
+
"""
|
| 139 |
+
Convolution Module
|
| 140 |
+
"""
|
| 141 |
+
|
| 142 |
+
def __init__(self,
|
| 143 |
+
in_channels,
|
| 144 |
+
out_channels,
|
| 145 |
+
kernel_size=1,
|
| 146 |
+
stride=1,
|
| 147 |
+
padding=0,
|
| 148 |
+
dilation=1,
|
| 149 |
+
bias=True,
|
| 150 |
+
w_init='linear'):
|
| 151 |
+
"""
|
| 152 |
+
:param in_channels: dimension of input
|
| 153 |
+
:param out_channels: dimension of output
|
| 154 |
+
:param kernel_size: size of kernel
|
| 155 |
+
:param stride: size of stride
|
| 156 |
+
:param padding: size of padding
|
| 157 |
+
:param dilation: dilation rate
|
| 158 |
+
:param bias: boolean. if True, bias is included.
|
| 159 |
+
:param w_init: str. weight inits with xavier initialization.
|
| 160 |
+
"""
|
| 161 |
+
super(Conv, self).__init__()
|
| 162 |
+
|
| 163 |
+
self.conv = nn.Conv1d(in_channels,
|
| 164 |
+
out_channels,
|
| 165 |
+
kernel_size=kernel_size,
|
| 166 |
+
stride=stride,
|
| 167 |
+
padding=padding,
|
| 168 |
+
dilation=dilation,
|
| 169 |
+
bias=bias)
|
| 170 |
+
|
| 171 |
+
def forward(self, x):
|
| 172 |
+
x = x.contiguous().transpose(1, 2)
|
| 173 |
+
x = self.conv(x)
|
| 174 |
+
x = x.contiguous().transpose(1, 2)
|
| 175 |
+
|
| 176 |
+
return x
|
optimizer.py
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import numpy as np
|
| 2 |
+
|
| 3 |
+
|
| 4 |
+
class ScheduledOptim():
|
| 5 |
+
''' A simple wrapper class for learning rate scheduling '''
|
| 6 |
+
|
| 7 |
+
def __init__(self, optimizer, d_model, n_warmup_steps, current_steps):
|
| 8 |
+
self._optimizer = optimizer
|
| 9 |
+
self.n_warmup_steps = n_warmup_steps
|
| 10 |
+
self.n_current_steps = current_steps
|
| 11 |
+
self.init_lr = np.power(d_model, -0.5)
|
| 12 |
+
|
| 13 |
+
def step_and_update_lr(self):
|
| 14 |
+
self._update_learning_rate()
|
| 15 |
+
self._optimizer.step()
|
| 16 |
+
|
| 17 |
+
def zero_grad(self):
|
| 18 |
+
# print(self.init_lr)
|
| 19 |
+
self._optimizer.zero_grad()
|
| 20 |
+
|
| 21 |
+
def _get_lr_scale(self):
|
| 22 |
+
return np.min([
|
| 23 |
+
np.power(self.n_current_steps, -0.5),
|
| 24 |
+
np.power(self.n_warmup_steps, -1.5) * self.n_current_steps])
|
| 25 |
+
|
| 26 |
+
def _update_learning_rate(self):
|
| 27 |
+
''' Learning rate scheduling per step '''
|
| 28 |
+
self.n_current_steps += 1
|
| 29 |
+
lr = self.init_lr * self._get_lr_scale()
|
| 30 |
+
|
| 31 |
+
for param_group in self._optimizer.param_groups:
|
| 32 |
+
param_group['lr'] = lr
|
prepare_align.py
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import os
|
| 2 |
+
from data import korean
|
| 3 |
+
import hparams as hp
|
| 4 |
+
|
| 5 |
+
def main():
|
| 6 |
+
in_dir = hp.data_path
|
| 7 |
+
if hp.dataset == "korean":
|
| 8 |
+
korean.prepare_align(in_dir)
|
| 9 |
+
|
| 10 |
+
if __name__ == "__main__":
|
| 11 |
+
main()
|
preprocess.py
ADDED
|
@@ -0,0 +1,69 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import os
|
| 2 |
+
import shutil
|
| 3 |
+
from data import kss
|
| 4 |
+
import hparams as hp
|
| 5 |
+
|
| 6 |
+
def write_metadata(train, val, out_dir):
|
| 7 |
+
with open(os.path.join(out_dir, 'train.txt'), 'w', encoding='utf-8') as f:
|
| 8 |
+
for m in train:
|
| 9 |
+
f.write(m + '\n')
|
| 10 |
+
with open(os.path.join(out_dir, 'val.txt'), 'w', encoding='utf-8') as f:
|
| 11 |
+
for m in val:
|
| 12 |
+
f.write(m + '\n')
|
| 13 |
+
|
| 14 |
+
def main():
|
| 15 |
+
in_dir = hp.data_path
|
| 16 |
+
out_dir = hp.preprocessed_path
|
| 17 |
+
meta = hp.meta_name
|
| 18 |
+
textgrid_name = hp.textgrid_name
|
| 19 |
+
textgrid_path=hp.textgrid_path
|
| 20 |
+
|
| 21 |
+
mel_out_dir = os.path.join(out_dir, "mel")
|
| 22 |
+
if not os.path.exists(mel_out_dir):
|
| 23 |
+
os.makedirs(mel_out_dir, exist_ok=True)
|
| 24 |
+
|
| 25 |
+
ali_out_dir = os.path.join(out_dir, "alignment")
|
| 26 |
+
if not os.path.exists(ali_out_dir):
|
| 27 |
+
os.makedirs(ali_out_dir, exist_ok=True)
|
| 28 |
+
|
| 29 |
+
f0_out_dir = os.path.join(out_dir, "f0")
|
| 30 |
+
if not os.path.exists(f0_out_dir):
|
| 31 |
+
os.makedirs(f0_out_dir, exist_ok=True)
|
| 32 |
+
|
| 33 |
+
energy_out_dir = os.path.join(out_dir, "energy")
|
| 34 |
+
if not os.path.exists(energy_out_dir):
|
| 35 |
+
os.makedirs(energy_out_dir, exist_ok=True)
|
| 36 |
+
|
| 37 |
+
# if os.path.isfile(textgrid_name):
|
| 38 |
+
# os.system('mv ./{} {}'.format(textgrid_name, out_dir))
|
| 39 |
+
|
| 40 |
+
if not os.path.exists(os.path.join(out_dir, textgrid_name.replace(".zip", ""))):
|
| 41 |
+
os.system('unzip {} -d {}'.format(os.path.join(textgrid_path, textgrid_name), os.path.join(out_dir,textgrid_name.replace(".zip",""))))
|
| 42 |
+
|
| 43 |
+
|
| 44 |
+
if "kss_elena" in hp.dataset:
|
| 45 |
+
# kss version 1.3
|
| 46 |
+
# if "v.1.3" in meta:
|
| 47 |
+
# if not os.path.exists(os.path.join(in_dir, "wavs_bak")):
|
| 48 |
+
# os.system("mv {} {}".format(os.path.join(in_dir, "wavs"), os.path.join(in_dir, "wavs_bak")))
|
| 49 |
+
# os.makedirs(os.path.join(in_dir, "wavs"))
|
| 50 |
+
|
| 51 |
+
# kss version 1.4
|
| 52 |
+
if "v.1.4" in meta:
|
| 53 |
+
if not os.path.exists(os.path.join(in_dir, "wavs_bak")):
|
| 54 |
+
os.makedirs(os.path.join(in_dir, "wavs"))
|
| 55 |
+
os.system("mv {} {}".format(os.path.join(in_dir, "../", meta), os.path.join(in_dir)))
|
| 56 |
+
for i in range(0, 5) : os.system("mv {} {}".format(os.path.join(in_dir, str(i)), os.path.join(in_dir, "wavs")))
|
| 57 |
+
os.system("mv {} {}".format(os.path.join(in_dir, "wavs"), os.path.join(in_dir, "wavs_bak")))
|
| 58 |
+
os.makedirs(os.path.join(in_dir, "wavs"))
|
| 59 |
+
else:
|
| 60 |
+
shutil.rmtree(os.path.join(in_dir, "wavs"))
|
| 61 |
+
os.makedirs(os.path.join(in_dir, "wavs"))
|
| 62 |
+
|
| 63 |
+
|
| 64 |
+
train, val = kss.build_from_path(in_dir, out_dir, meta)
|
| 65 |
+
|
| 66 |
+
write_metadata(train, val, out_dir)
|
| 67 |
+
|
| 68 |
+
if __name__ == "__main__":
|
| 69 |
+
main()
|
preprocessed/kss_elena/TextGrid/1_0000.TextGrid
ADDED
|
@@ -0,0 +1,236 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
File type = "ooTextFile"
|
| 2 |
+
Object class = "TextGrid"
|
| 3 |
+
|
| 4 |
+
xmin = 0
|
| 5 |
+
xmax = 11.76
|
| 6 |
+
tiers? <exists>
|
| 7 |
+
size = 2
|
| 8 |
+
item []:
|
| 9 |
+
item [1]:
|
| 10 |
+
class = "IntervalTier"
|
| 11 |
+
name = "words"
|
| 12 |
+
xmin = 0
|
| 13 |
+
xmax = 11.76
|
| 14 |
+
intervals: size = 11
|
| 15 |
+
intervals [1]:
|
| 16 |
+
xmin = 0
|
| 17 |
+
xmax = 1.02
|
| 18 |
+
text = "<eps>"
|
| 19 |
+
intervals [2]:
|
| 20 |
+
xmin = 1.02
|
| 21 |
+
xmax = 1.51
|
| 22 |
+
text = "그는"
|
| 23 |
+
intervals [3]:
|
| 24 |
+
xmin = 1.51
|
| 25 |
+
xmax = 1.74
|
| 26 |
+
text = "<eps>"
|
| 27 |
+
intervals [4]:
|
| 28 |
+
xmin = 1.74
|
| 29 |
+
xmax = 2.43
|
| 30 |
+
text = "괜찮은"
|
| 31 |
+
intervals [5]:
|
| 32 |
+
xmin = 2.43
|
| 33 |
+
xmax = 3.17
|
| 34 |
+
text = "척하려고"
|
| 35 |
+
intervals [6]:
|
| 36 |
+
xmin = 3.17
|
| 37 |
+
xmax = 3.42
|
| 38 |
+
text = "<eps>"
|
| 39 |
+
intervals [7]:
|
| 40 |
+
xmin = 3.42
|
| 41 |
+
xmax = 4.09
|
| 42 |
+
text = "애쓰는"
|
| 43 |
+
intervals [8]:
|
| 44 |
+
xmin = 4.09
|
| 45 |
+
xmax = 4.23
|
| 46 |
+
text = "것"
|
| 47 |
+
intervals [9]:
|
| 48 |
+
xmin = 4.23
|
| 49 |
+
xmax = 4.38
|
| 50 |
+
text = "<eps>"
|
| 51 |
+
intervals [10]:
|
| 52 |
+
xmin = 4.38
|
| 53 |
+
xmax = 4.98
|
| 54 |
+
text = "같았다"
|
| 55 |
+
intervals [11]:
|
| 56 |
+
xmin = 4.98
|
| 57 |
+
xmax = 11.76
|
| 58 |
+
text = "<eps>"
|
| 59 |
+
item [2]:
|
| 60 |
+
class = "IntervalTier"
|
| 61 |
+
name = "phones"
|
| 62 |
+
xmin = 0
|
| 63 |
+
xmax = 11.76
|
| 64 |
+
intervals: size = 43
|
| 65 |
+
intervals [1]:
|
| 66 |
+
xmin = 0
|
| 67 |
+
xmax = 1.02
|
| 68 |
+
text = "sil"
|
| 69 |
+
intervals [2]:
|
| 70 |
+
xmin = 1.02
|
| 71 |
+
xmax = 1.13
|
| 72 |
+
text = "ᄀ"
|
| 73 |
+
intervals [3]:
|
| 74 |
+
xmin = 1.13
|
| 75 |
+
xmax = 1.16
|
| 76 |
+
text = "ᅳ"
|
| 77 |
+
intervals [4]:
|
| 78 |
+
xmin = 1.16
|
| 79 |
+
xmax = 1.36
|
| 80 |
+
text = "ᄂ"
|
| 81 |
+
intervals [5]:
|
| 82 |
+
xmin = 1.36
|
| 83 |
+
xmax = 1.39
|
| 84 |
+
text = "ᅳ"
|
| 85 |
+
intervals [6]:
|
| 86 |
+
xmin = 1.39
|
| 87 |
+
xmax = 1.51
|
| 88 |
+
text = "ᆫ"
|
| 89 |
+
intervals [7]:
|
| 90 |
+
xmin = 1.51
|
| 91 |
+
xmax = 1.74
|
| 92 |
+
text = "sil"
|
| 93 |
+
intervals [8]:
|
| 94 |
+
xmin = 1.74
|
| 95 |
+
xmax = 1.82
|
| 96 |
+
text = "ᄀ"
|
| 97 |
+
intervals [9]:
|
| 98 |
+
xmin = 1.82
|
| 99 |
+
xmax = 1.85
|
| 100 |
+
text = "ᅫ"
|
| 101 |
+
intervals [10]:
|
| 102 |
+
xmin = 1.85
|
| 103 |
+
xmax = 1.95
|
| 104 |
+
text = "ᆫ"
|
| 105 |
+
intervals [11]:
|
| 106 |
+
xmin = 1.95
|
| 107 |
+
xmax = 2.07
|
| 108 |
+
text = "ᄎ"
|
| 109 |
+
intervals [12]:
|
| 110 |
+
xmin = 2.07
|
| 111 |
+
xmax = 2.16
|
| 112 |
+
text = "ᅡ"
|
| 113 |
+
intervals [13]:
|
| 114 |
+
xmin = 2.16
|
| 115 |
+
xmax = 2.24
|
| 116 |
+
text = "ᄂ"
|
| 117 |
+
intervals [14]:
|
| 118 |
+
xmin = 2.24
|
| 119 |
+
xmax = 2.28
|
| 120 |
+
text = "ᅳ"
|
| 121 |
+
intervals [15]:
|
| 122 |
+
xmin = 2.28
|
| 123 |
+
xmax = 2.43
|
| 124 |
+
text = "ᆫ"
|
| 125 |
+
intervals [16]:
|
| 126 |
+
xmin = 2.43
|
| 127 |
+
xmax = 2.56
|
| 128 |
+
text = "ᄎ"
|
| 129 |
+
intervals [17]:
|
| 130 |
+
xmin = 2.56
|
| 131 |
+
xmax = 2.59
|
| 132 |
+
text = "ᅥ"
|
| 133 |
+
intervals [18]:
|
| 134 |
+
xmin = 2.59
|
| 135 |
+
xmax = 2.75
|
| 136 |
+
text = "ᄏ"
|
| 137 |
+
intervals [19]:
|
| 138 |
+
xmin = 2.75
|
| 139 |
+
xmax = 2.8
|
| 140 |
+
text = "ᅡ"
|
| 141 |
+
intervals [20]:
|
| 142 |
+
xmin = 2.8
|
| 143 |
+
xmax = 2.9
|
| 144 |
+
text = "ᄅ"
|
| 145 |
+
intervals [21]:
|
| 146 |
+
xmin = 2.9
|
| 147 |
+
xmax = 2.94
|
| 148 |
+
text = "ᅧ"
|
| 149 |
+
intervals [22]:
|
| 150 |
+
xmin = 2.94
|
| 151 |
+
xmax = 3.14
|
| 152 |
+
text = "ᄀ"
|
| 153 |
+
intervals [23]:
|
| 154 |
+
xmin = 3.14
|
| 155 |
+
xmax = 3.17
|
| 156 |
+
text = "ᅩ"
|
| 157 |
+
intervals [24]:
|
| 158 |
+
xmin = 3.17
|
| 159 |
+
xmax = 3.42
|
| 160 |
+
text = "sil"
|
| 161 |
+
intervals [25]:
|
| 162 |
+
xmin = 3.42
|
| 163 |
+
xmax = 3.43
|
| 164 |
+
text = "ᄋ"
|
| 165 |
+
intervals [26]:
|
| 166 |
+
xmin = 3.43
|
| 167 |
+
xmax = 3.55
|
| 168 |
+
text = "ᅢ"
|
| 169 |
+
intervals [27]:
|
| 170 |
+
xmin = 3.55
|
| 171 |
+
xmax = 3.73
|
| 172 |
+
text = "ᄊ"
|
| 173 |
+
intervals [28]:
|
| 174 |
+
xmin = 3.73
|
| 175 |
+
xmax = 3.76
|
| 176 |
+
text = "ᅳ"
|
| 177 |
+
intervals [29]:
|
| 178 |
+
xmin = 3.76
|
| 179 |
+
xmax = 3.9
|
| 180 |
+
text = "ᄂ"
|
| 181 |
+
intervals [30]:
|
| 182 |
+
xmin = 3.9
|
| 183 |
+
xmax = 3.94
|
| 184 |
+
text = "ᅳ"
|
| 185 |
+
intervals [31]:
|
| 186 |
+
xmin = 3.94
|
| 187 |
+
xmax = 4.09
|
| 188 |
+
text = "ᆫ"
|
| 189 |
+
intervals [32]:
|
| 190 |
+
xmin = 4.09
|
| 191 |
+
xmax = 4.14
|
| 192 |
+
text = "ᄀ"
|
| 193 |
+
intervals [33]:
|
| 194 |
+
xmin = 4.14
|
| 195 |
+
xmax = 4.17
|
| 196 |
+
text = "ᅥ"
|
| 197 |
+
intervals [34]:
|
| 198 |
+
xmin = 4.17
|
| 199 |
+
xmax = 4.23
|
| 200 |
+
text = "ᆮ"
|
| 201 |
+
intervals [35]:
|
| 202 |
+
xmin = 4.23
|
| 203 |
+
xmax = 4.38
|
| 204 |
+
text = "sil"
|
| 205 |
+
intervals [36]:
|
| 206 |
+
xmin = 4.38
|
| 207 |
+
xmax = 4.42
|
| 208 |
+
text = "ᄁ"
|
| 209 |
+
intervals [37]:
|
| 210 |
+
xmin = 4.42
|
| 211 |
+
xmax = 4.49
|
| 212 |
+
text = "ᅡ"
|
| 213 |
+
intervals [38]:
|
| 214 |
+
xmin = 4.49
|
| 215 |
+
xmax = 4.72
|
| 216 |
+
text = "ᄐ"
|
| 217 |
+
intervals [39]:
|
| 218 |
+
xmin = 4.72
|
| 219 |
+
xmax = 4.75
|
| 220 |
+
text = "ᅡ"
|
| 221 |
+
intervals [40]:
|
| 222 |
+
xmin = 4.75
|
| 223 |
+
xmax = 4.78
|
| 224 |
+
text = "ᆮ"
|
| 225 |
+
intervals [41]:
|
| 226 |
+
xmin = 4.78
|
| 227 |
+
xmax = 4.94
|
| 228 |
+
text = "ᄄ"
|
| 229 |
+
intervals [42]:
|
| 230 |
+
xmin = 4.94
|
| 231 |
+
xmax = 4.98
|
| 232 |
+
text = "ᅡ"
|
| 233 |
+
intervals [43]:
|
| 234 |
+
xmin = 4.98
|
| 235 |
+
xmax = 11.76
|
| 236 |
+
text = "sil"
|
preprocessed/kss_elena/TextGrid/1_0001.TextGrid
ADDED
|
@@ -0,0 +1,260 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
File type = "ooTextFile"
|
| 2 |
+
Object class = "TextGrid"
|
| 3 |
+
|
| 4 |
+
xmin = 0
|
| 5 |
+
xmax = 9.3
|
| 6 |
+
tiers? <exists>
|
| 7 |
+
size = 2
|
| 8 |
+
item []:
|
| 9 |
+
item [1]:
|
| 10 |
+
class = "IntervalTier"
|
| 11 |
+
name = "words"
|
| 12 |
+
xmin = 0
|
| 13 |
+
xmax = 9.3
|
| 14 |
+
intervals: size = 11
|
| 15 |
+
intervals [1]:
|
| 16 |
+
xmin = 0
|
| 17 |
+
xmax = 0.95
|
| 18 |
+
text = "<eps>"
|
| 19 |
+
intervals [2]:
|
| 20 |
+
xmin = 0.95
|
| 21 |
+
xmax = 1.67
|
| 22 |
+
text = "그녀의"
|
| 23 |
+
intervals [3]:
|
| 24 |
+
xmin = 1.67
|
| 25 |
+
xmax = 2.04
|
| 26 |
+
text = "사랑을"
|
| 27 |
+
intervals [4]:
|
| 28 |
+
xmin = 2.04
|
| 29 |
+
xmax = 2.62
|
| 30 |
+
text = "<eps>"
|
| 31 |
+
intervals [5]:
|
| 32 |
+
xmin = 2.62
|
| 33 |
+
xmax = 3.18
|
| 34 |
+
text = "얻기"
|
| 35 |
+
intervals [6]:
|
| 36 |
+
xmin = 3.18
|
| 37 |
+
xmax = 3.32
|
| 38 |
+
text = "위해"
|
| 39 |
+
intervals [7]:
|
| 40 |
+
xmin = 3.32
|
| 41 |
+
xmax = 3.84
|
| 42 |
+
text = "<eps>"
|
| 43 |
+
intervals [8]:
|
| 44 |
+
xmin = 3.84
|
| 45 |
+
xmax = 4.65
|
| 46 |
+
text = "애썼지만"
|
| 47 |
+
intervals [9]:
|
| 48 |
+
xmin = 4.65
|
| 49 |
+
xmax = 4.93
|
| 50 |
+
text = "<eps>"
|
| 51 |
+
intervals [10]:
|
| 52 |
+
xmin = 4.93
|
| 53 |
+
xmax = 6.68
|
| 54 |
+
text = "헛수고였다"
|
| 55 |
+
intervals [11]:
|
| 56 |
+
xmin = 6.68
|
| 57 |
+
xmax = 9.3
|
| 58 |
+
text = "<eps>"
|
| 59 |
+
item [2]:
|
| 60 |
+
class = "IntervalTier"
|
| 61 |
+
name = "phones"
|
| 62 |
+
xmin = 0
|
| 63 |
+
xmax = 9.3
|
| 64 |
+
intervals: size = 49
|
| 65 |
+
intervals [1]:
|
| 66 |
+
xmin = 0
|
| 67 |
+
xmax = 0.95
|
| 68 |
+
text = "sil"
|
| 69 |
+
intervals [2]:
|
| 70 |
+
xmin = 0.95
|
| 71 |
+
xmax = 1.1
|
| 72 |
+
text = "ᄀ"
|
| 73 |
+
intervals [3]:
|
| 74 |
+
xmin = 1.1
|
| 75 |
+
xmax = 1.17
|
| 76 |
+
text = "ᅳ"
|
| 77 |
+
intervals [4]:
|
| 78 |
+
xmin = 1.17
|
| 79 |
+
xmax = 1.5
|
| 80 |
+
text = "ᄂ"
|
| 81 |
+
intervals [5]:
|
| 82 |
+
xmin = 1.5
|
| 83 |
+
xmax = 1.53
|
| 84 |
+
text = "ᅧ"
|
| 85 |
+
intervals [6]:
|
| 86 |
+
xmin = 1.53
|
| 87 |
+
xmax = 1.54
|
| 88 |
+
text = "ᄋ"
|
| 89 |
+
intervals [7]:
|
| 90 |
+
xmin = 1.54
|
| 91 |
+
xmax = 1.67
|
| 92 |
+
text = "ᅴ"
|
| 93 |
+
intervals [8]:
|
| 94 |
+
xmin = 1.67
|
| 95 |
+
xmax = 1.77
|
| 96 |
+
text = "ᄉ"
|
| 97 |
+
intervals [9]:
|
| 98 |
+
xmin = 1.77
|
| 99 |
+
xmax = 1.83
|
| 100 |
+
text = "ᅡ"
|
| 101 |
+
intervals [10]:
|
| 102 |
+
xmin = 1.83
|
| 103 |
+
xmax = 1.86
|
| 104 |
+
text = "ᄅ"
|
| 105 |
+
intervals [11]:
|
| 106 |
+
xmin = 1.86
|
| 107 |
+
xmax = 1.89
|
| 108 |
+
text = "ᅡ"
|
| 109 |
+
intervals [12]:
|
| 110 |
+
xmin = 1.89
|
| 111 |
+
xmax = 1.92
|
| 112 |
+
text = "ᆼ"
|
| 113 |
+
intervals [13]:
|
| 114 |
+
xmin = 1.92
|
| 115 |
+
xmax = 1.93
|
| 116 |
+
text = "ᄋ"
|
| 117 |
+
intervals [14]:
|
| 118 |
+
xmin = 1.93
|
| 119 |
+
xmax = 2.04
|
| 120 |
+
text = "ᅳ"
|
| 121 |
+
intervals [15]:
|
| 122 |
+
xmin = 2.04
|
| 123 |
+
xmax = 2.62
|
| 124 |
+
text = "sil"
|
| 125 |
+
intervals [16]:
|
| 126 |
+
xmin = 2.62
|
| 127 |
+
xmax = 2.67
|
| 128 |
+
text = "ᄅ"
|
| 129 |
+
intervals [17]:
|
| 130 |
+
xmin = 2.67
|
| 131 |
+
xmax = 2.7
|
| 132 |
+
text = "ᅥ"
|
| 133 |
+
intervals [18]:
|
| 134 |
+
xmin = 2.7
|
| 135 |
+
xmax = 2.79
|
| 136 |
+
text = "ᆮ"
|
| 137 |
+
intervals [19]:
|
| 138 |
+
xmin = 2.79
|
| 139 |
+
xmax = 3.01
|
| 140 |
+
text = "ᄁ"
|
| 141 |
+
intervals [20]:
|
| 142 |
+
xmin = 3.01
|
| 143 |
+
xmax = 3.18
|
| 144 |
+
text = "ᅵ"
|
| 145 |
+
intervals [21]:
|
| 146 |
+
xmin = 3.18
|
| 147 |
+
xmax = 3.24
|
| 148 |
+
text = "ᄅ"
|
| 149 |
+
intervals [22]:
|
| 150 |
+
xmin = 3.24
|
| 151 |
+
xmax = 3.25
|
| 152 |
+
text = "ᅱ"
|
| 153 |
+
intervals [23]:
|
| 154 |
+
xmin = 3.25
|
| 155 |
+
xmax = 3.28
|
| 156 |
+
text = "ᄒ"
|
| 157 |
+
intervals [24]:
|
| 158 |
+
xmin = 3.28
|
| 159 |
+
xmax = 3.32
|
| 160 |
+
text = "ᅢ"
|
| 161 |
+
intervals [25]:
|
| 162 |
+
xmin = 3.32
|
| 163 |
+
xmax = 3.84
|
| 164 |
+
text = "sil"
|
| 165 |
+
intervals [26]:
|
| 166 |
+
xmin = 3.84
|
| 167 |
+
xmax = 3.85
|
| 168 |
+
text = "ᄋ"
|
| 169 |
+
intervals [27]:
|
| 170 |
+
xmin = 3.85
|
| 171 |
+
xmax = 3.97
|
| 172 |
+
text = "ᅢ"
|
| 173 |
+
intervals [28]:
|
| 174 |
+
xmin = 3.97
|
| 175 |
+
xmax = 4.14
|
| 176 |
+
text = "ᄊ"
|
| 177 |
+
intervals [29]:
|
| 178 |
+
xmin = 4.14
|
| 179 |
+
xmax = 4.21
|
| 180 |
+
text = "ᅥ"
|
| 181 |
+
intervals [30]:
|
| 182 |
+
xmin = 4.21
|
| 183 |
+
xmax = 4.29
|
| 184 |
+
text = "ᆮ"
|
| 185 |
+
intervals [31]:
|
| 186 |
+
xmin = 4.29
|
| 187 |
+
xmax = 4.42
|
| 188 |
+
text = "ᄍ"
|
| 189 |
+
intervals [32]:
|
| 190 |
+
xmin = 4.42
|
| 191 |
+
xmax = 4.46
|
| 192 |
+
text = "ᅵ"
|
| 193 |
+
intervals [33]:
|
| 194 |
+
xmin = 4.46
|
| 195 |
+
xmax = 4.54
|
| 196 |
+
text = "ᄆ"
|
| 197 |
+
intervals [34]:
|
| 198 |
+
xmin = 4.54
|
| 199 |
+
xmax = 4.62
|
| 200 |
+
text = "��"
|
| 201 |
+
intervals [35]:
|
| 202 |
+
xmin = 4.62
|
| 203 |
+
xmax = 4.65
|
| 204 |
+
text = "ᆫ"
|
| 205 |
+
intervals [36]:
|
| 206 |
+
xmin = 4.65
|
| 207 |
+
xmax = 4.93
|
| 208 |
+
text = "sil"
|
| 209 |
+
intervals [37]:
|
| 210 |
+
xmin = 4.93
|
| 211 |
+
xmax = 4.96
|
| 212 |
+
text = "ᄒ"
|
| 213 |
+
intervals [38]:
|
| 214 |
+
xmin = 4.96
|
| 215 |
+
xmax = 5.02
|
| 216 |
+
text = "ᅥ"
|
| 217 |
+
intervals [39]:
|
| 218 |
+
xmin = 5.02
|
| 219 |
+
xmax = 5.05
|
| 220 |
+
text = "ᆮ"
|
| 221 |
+
intervals [40]:
|
| 222 |
+
xmin = 5.05
|
| 223 |
+
xmax = 5.24
|
| 224 |
+
text = "ᄊ"
|
| 225 |
+
intervals [41]:
|
| 226 |
+
xmin = 5.24
|
| 227 |
+
xmax = 5.27
|
| 228 |
+
text = "ᅮ"
|
| 229 |
+
intervals [42]:
|
| 230 |
+
xmin = 5.27
|
| 231 |
+
xmax = 6.52
|
| 232 |
+
text = "ᄀ"
|
| 233 |
+
intervals [43]:
|
| 234 |
+
xmin = 6.52
|
| 235 |
+
xmax = 6.55
|
| 236 |
+
text = "ᅩ"
|
| 237 |
+
intervals [44]:
|
| 238 |
+
xmin = 6.55
|
| 239 |
+
xmax = 6.56
|
| 240 |
+
text = "ᄋ"
|
| 241 |
+
intervals [45]:
|
| 242 |
+
xmin = 6.56
|
| 243 |
+
xmax = 6.59
|
| 244 |
+
text = "ᅧ"
|
| 245 |
+
intervals [46]:
|
| 246 |
+
xmin = 6.59
|
| 247 |
+
xmax = 6.62
|
| 248 |
+
text = "ᆮ"
|
| 249 |
+
intervals [47]:
|
| 250 |
+
xmin = 6.62
|
| 251 |
+
xmax = 6.65
|
| 252 |
+
text = "ᄄ"
|
| 253 |
+
intervals [48]:
|
| 254 |
+
xmin = 6.65
|
| 255 |
+
xmax = 6.68
|
| 256 |
+
text = "ᅡ"
|
| 257 |
+
intervals [49]:
|
| 258 |
+
xmin = 6.68
|
| 259 |
+
xmax = 9.3
|
| 260 |
+
text = "sil"
|
preprocessed/kss_elena/TextGrid/1_0002.TextGrid
ADDED
|
@@ -0,0 +1,108 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
File type = "ooTextFile"
|
| 2 |
+
Object class = "TextGrid"
|
| 3 |
+
|
| 4 |
+
xmin = 0
|
| 5 |
+
xmax = 4.02
|
| 6 |
+
tiers? <exists>
|
| 7 |
+
size = 2
|
| 8 |
+
item []:
|
| 9 |
+
item [1]:
|
| 10 |
+
class = "IntervalTier"
|
| 11 |
+
name = "words"
|
| 12 |
+
xmin = 0
|
| 13 |
+
xmax = 4.02
|
| 14 |
+
intervals: size = 5
|
| 15 |
+
intervals [1]:
|
| 16 |
+
xmin = 0
|
| 17 |
+
xmax = 0.91
|
| 18 |
+
text = "<eps>"
|
| 19 |
+
intervals [2]:
|
| 20 |
+
xmin = 0.91
|
| 21 |
+
xmax = 1.58
|
| 22 |
+
text = "용돈을"
|
| 23 |
+
intervals [3]:
|
| 24 |
+
xmin = 1.58
|
| 25 |
+
xmax = 2.23
|
| 26 |
+
text = "아껴"
|
| 27 |
+
intervals [4]:
|
| 28 |
+
xmin = 2.23
|
| 29 |
+
xmax = 2.62
|
| 30 |
+
text = "써라"
|
| 31 |
+
intervals [5]:
|
| 32 |
+
xmin = 2.62
|
| 33 |
+
xmax = 4.02
|
| 34 |
+
text = "<eps>"
|
| 35 |
+
item [2]:
|
| 36 |
+
class = "IntervalTier"
|
| 37 |
+
name = "phones"
|
| 38 |
+
xmin = 0
|
| 39 |
+
xmax = 4.02
|
| 40 |
+
intervals: size = 17
|
| 41 |
+
intervals [1]:
|
| 42 |
+
xmin = 0
|
| 43 |
+
xmax = 0.91
|
| 44 |
+
text = "sil"
|
| 45 |
+
intervals [2]:
|
| 46 |
+
xmin = 0.91
|
| 47 |
+
xmax = 0.92
|
| 48 |
+
text = "ᄋ"
|
| 49 |
+
intervals [3]:
|
| 50 |
+
xmin = 0.92
|
| 51 |
+
xmax = 0.97
|
| 52 |
+
text = "ᅭ"
|
| 53 |
+
intervals [4]:
|
| 54 |
+
xmin = 0.97
|
| 55 |
+
xmax = 1.25
|
| 56 |
+
text = "ᆼ"
|
| 57 |
+
intervals [5]:
|
| 58 |
+
xmin = 1.25
|
| 59 |
+
xmax = 1.31
|
| 60 |
+
text = "ᄃ"
|
| 61 |
+
intervals [6]:
|
| 62 |
+
xmin = 1.31
|
| 63 |
+
xmax = 1.4
|
| 64 |
+
text = "ᅩ"
|
| 65 |
+
intervals [7]:
|
| 66 |
+
xmin = 1.4
|
| 67 |
+
xmax = 1.55
|
| 68 |
+
text = "ᄂ"
|
| 69 |
+
intervals [8]:
|
| 70 |
+
xmin = 1.55
|
| 71 |
+
xmax = 1.58
|
| 72 |
+
text = "ᅳ"
|
| 73 |
+
intervals [9]:
|
| 74 |
+
xmin = 1.58
|
| 75 |
+
xmax = 1.72
|
| 76 |
+
text = "ᄅ"
|
| 77 |
+
intervals [10]:
|
| 78 |
+
xmin = 1.72
|
| 79 |
+
xmax = 1.82
|
| 80 |
+
text = "ᅡ"
|
| 81 |
+
intervals [11]:
|
| 82 |
+
xmin = 1.82
|
| 83 |
+
xmax = 2.07
|
| 84 |
+
text = "ᄁ"
|
| 85 |
+
intervals [12]:
|
| 86 |
+
xmin = 2.07
|
| 87 |
+
xmax = 2.23
|
| 88 |
+
text = "ᅧ"
|
| 89 |
+
intervals [13]:
|
| 90 |
+
xmin = 2.23
|
| 91 |
+
xmax = 2.42
|
| 92 |
+
text = "ᄊ"
|
| 93 |
+
intervals [14]:
|
| 94 |
+
xmin = 2.42
|
| 95 |
+
xmax = 2.54
|
| 96 |
+
text = "ᅥ"
|
| 97 |
+
intervals [15]:
|
| 98 |
+
xmin = 2.54
|
| 99 |
+
xmax = 2.58
|
| 100 |
+
text = "ᄅ"
|
| 101 |
+
intervals [16]:
|
| 102 |
+
xmin = 2.58
|
| 103 |
+
xmax = 2.62
|
| 104 |
+
text = "ᅡ"
|
| 105 |
+
intervals [17]:
|
| 106 |
+
xmin = 2.62
|
| 107 |
+
xmax = 4.02
|
| 108 |
+
text = "sil"
|
preprocessed/kss_elena/TextGrid/1_0003.TextGrid
ADDED
|
@@ -0,0 +1,160 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
File type = "ooTextFile"
|
| 2 |
+
Object class = "TextGrid"
|
| 3 |
+
|
| 4 |
+
xmin = 0
|
| 5 |
+
xmax = 4.98
|
| 6 |
+
tiers? <exists>
|
| 7 |
+
size = 2
|
| 8 |
+
item []:
|
| 9 |
+
item [1]:
|
| 10 |
+
class = "IntervalTier"
|
| 11 |
+
name = "words"
|
| 12 |
+
xmin = 0
|
| 13 |
+
xmax = 4.98
|
| 14 |
+
intervals: size = 8
|
| 15 |
+
intervals [1]:
|
| 16 |
+
xmin = 0
|
| 17 |
+
xmax = 0.65
|
| 18 |
+
text = "<eps>"
|
| 19 |
+
intervals [2]:
|
| 20 |
+
xmin = 0.65
|
| 21 |
+
xmax = 1.31
|
| 22 |
+
text = "그는"
|
| 23 |
+
intervals [3]:
|
| 24 |
+
xmin = 1.31
|
| 25 |
+
xmax = 1.41
|
| 26 |
+
text = "<eps>"
|
| 27 |
+
intervals [4]:
|
| 28 |
+
xmin = 1.41
|
| 29 |
+
xmax = 1.97
|
| 30 |
+
text = "아내를"
|
| 31 |
+
intervals [5]:
|
| 32 |
+
xmin = 1.97
|
| 33 |
+
xmax = 2.6
|
| 34 |
+
text = "많이"
|
| 35 |
+
intervals [6]:
|
| 36 |
+
xmin = 2.6
|
| 37 |
+
xmax = 2.65
|
| 38 |
+
text = "<eps>"
|
| 39 |
+
intervals [7]:
|
| 40 |
+
xmin = 2.65
|
| 41 |
+
xmax = 3.29
|
| 42 |
+
text = "아낀다"
|
| 43 |
+
intervals [8]:
|
| 44 |
+
xmin = 3.29
|
| 45 |
+
xmax = 4.98
|
| 46 |
+
text = "<eps>"
|
| 47 |
+
item [2]:
|
| 48 |
+
class = "IntervalTier"
|
| 49 |
+
name = "phones"
|
| 50 |
+
xmin = 0
|
| 51 |
+
xmax = 4.98
|
| 52 |
+
intervals: size = 27
|
| 53 |
+
intervals [1]:
|
| 54 |
+
xmin = 0
|
| 55 |
+
xmax = 0.65
|
| 56 |
+
text = "sil"
|
| 57 |
+
intervals [2]:
|
| 58 |
+
xmin = 0.65
|
| 59 |
+
xmax = 0.69
|
| 60 |
+
text = "ᄀ"
|
| 61 |
+
intervals [3]:
|
| 62 |
+
xmin = 0.69
|
| 63 |
+
xmax = 0.84
|
| 64 |
+
text = "ᅳ"
|
| 65 |
+
intervals [4]:
|
| 66 |
+
xmin = 0.84
|
| 67 |
+
xmax = 1.25
|
| 68 |
+
text = "ᄂ"
|
| 69 |
+
intervals [5]:
|
| 70 |
+
xmin = 1.25
|
| 71 |
+
xmax = 1.28
|
| 72 |
+
text = "ᅳ"
|
| 73 |
+
intervals [6]:
|
| 74 |
+
xmin = 1.28
|
| 75 |
+
xmax = 1.31
|
| 76 |
+
text = "ᆫ"
|
| 77 |
+
intervals [7]:
|
| 78 |
+
xmin = 1.31
|
| 79 |
+
xmax = 1.41
|
| 80 |
+
text = "sil"
|
| 81 |
+
intervals [8]:
|
| 82 |
+
xmin = 1.41
|
| 83 |
+
xmax = 1.44
|
| 84 |
+
text = "ᄂ"
|
| 85 |
+
intervals [9]:
|
| 86 |
+
xmin = 1.44
|
| 87 |
+
xmax = 1.61
|
| 88 |
+
text = "ᅡ"
|
| 89 |
+
intervals [10]:
|
| 90 |
+
xmin = 1.61
|
| 91 |
+
xmax = 1.67
|
| 92 |
+
text = "ᄂ"
|
| 93 |
+
intervals [11]:
|
| 94 |
+
xmin = 1.67
|
| 95 |
+
xmax = 1.78
|
| 96 |
+
text = "ᅢ"
|
| 97 |
+
intervals [12]:
|
| 98 |
+
xmin = 1.78
|
| 99 |
+
xmax = 1.86
|
| 100 |
+
text = "ᄅ"
|
| 101 |
+
intervals [13]:
|
| 102 |
+
xmin = 1.86
|
| 103 |
+
xmax = 1.93
|
| 104 |
+
text = "ᅳ"
|
| 105 |
+
intervals [14]:
|
| 106 |
+
xmin = 1.93
|
| 107 |
+
xmax = 1.97
|
| 108 |
+
text = "ᆯ"
|
| 109 |
+
intervals [15]:
|
| 110 |
+
xmin = 1.97
|
| 111 |
+
xmax = 2.04
|
| 112 |
+
text = "ᄆ"
|
| 113 |
+
intervals [16]:
|
| 114 |
+
xmin = 2.04
|
| 115 |
+
xmax = 2.21
|
| 116 |
+
text = "ᅡ"
|
| 117 |
+
intervals [17]:
|
| 118 |
+
xmin = 2.21
|
| 119 |
+
xmax = 2.28
|
| 120 |
+
text = "ᄂ"
|
| 121 |
+
intervals [18]:
|
| 122 |
+
xmin = 2.28
|
| 123 |
+
xmax = 2.6
|
| 124 |
+
text = "ᅵ"
|
| 125 |
+
intervals [19]:
|
| 126 |
+
xmin = 2.6
|
| 127 |
+
xmax = 2.65
|
| 128 |
+
text = "sil"
|
| 129 |
+
intervals [20]:
|
| 130 |
+
xmin = 2.65
|
| 131 |
+
xmax = 2.66
|
| 132 |
+
text = "ᄋ"
|
| 133 |
+
intervals [21]:
|
| 134 |
+
xmin = 2.66
|
| 135 |
+
xmax = 2.8
|
| 136 |
+
text = "ᅡ"
|
| 137 |
+
intervals [22]:
|
| 138 |
+
xmin = 2.8
|
| 139 |
+
xmax = 2.93
|
| 140 |
+
text = "ᄁ"
|
| 141 |
+
intervals [23]:
|
| 142 |
+
xmin = 2.93
|
| 143 |
+
xmax = 3.01
|
| 144 |
+
text = "ᅵ"
|
| 145 |
+
intervals [24]:
|
| 146 |
+
xmin = 3.01
|
| 147 |
+
xmax = 3.16
|
| 148 |
+
text = "ᆫ"
|
| 149 |
+
intervals [25]:
|
| 150 |
+
xmin = 3.16
|
| 151 |
+
xmax = 3.25
|
| 152 |
+
text = "ᄃ"
|
| 153 |
+
intervals [26]:
|
| 154 |
+
xmin = 3.25
|
| 155 |
+
xmax = 3.29
|
| 156 |
+
text = "ᅡ"
|
| 157 |
+
intervals [27]:
|
| 158 |
+
xmin = 3.29
|
| 159 |
+
xmax = 4.98
|
| 160 |
+
text = "sil"
|
preprocessed/kss_elena/TextGrid/1_0004.TextGrid
ADDED
|
@@ -0,0 +1,124 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
File type = "ooTextFile"
|
| 2 |
+
Object class = "TextGrid"
|
| 3 |
+
|
| 4 |
+
xmin = 0
|
| 5 |
+
xmax = 3.78
|
| 6 |
+
tiers? <exists>
|
| 7 |
+
size = 2
|
| 8 |
+
item []:
|
| 9 |
+
item [1]:
|
| 10 |
+
class = "IntervalTier"
|
| 11 |
+
name = "words"
|
| 12 |
+
xmin = 0
|
| 13 |
+
xmax = 3.78
|
| 14 |
+
intervals: size = 6
|
| 15 |
+
intervals [1]:
|
| 16 |
+
xmin = 0
|
| 17 |
+
xmax = 0.72
|
| 18 |
+
text = "<eps>"
|
| 19 |
+
intervals [2]:
|
| 20 |
+
xmin = 0.72
|
| 21 |
+
xmax = 0.98
|
| 22 |
+
text = "그"
|
| 23 |
+
intervals [3]:
|
| 24 |
+
xmin = 0.98
|
| 25 |
+
xmax = 1.44
|
| 26 |
+
text = "애"
|
| 27 |
+
intervals [4]:
|
| 28 |
+
xmin = 1.44
|
| 29 |
+
xmax = 2.16
|
| 30 |
+
text = "전화번호"
|
| 31 |
+
intervals [5]:
|
| 32 |
+
xmin = 2.16
|
| 33 |
+
xmax = 2.51
|
| 34 |
+
text = "알아"
|
| 35 |
+
intervals [6]:
|
| 36 |
+
xmin = 2.51
|
| 37 |
+
xmax = 3.78
|
| 38 |
+
text = "<eps>"
|
| 39 |
+
item [2]:
|
| 40 |
+
class = "IntervalTier"
|
| 41 |
+
name = "phones"
|
| 42 |
+
xmin = 0
|
| 43 |
+
xmax = 3.78
|
| 44 |
+
intervals: size = 20
|
| 45 |
+
intervals [1]:
|
| 46 |
+
xmin = 0
|
| 47 |
+
xmax = 0.72
|
| 48 |
+
text = "sil"
|
| 49 |
+
intervals [2]:
|
| 50 |
+
xmin = 0.72
|
| 51 |
+
xmax = 0.75
|
| 52 |
+
text = "ᄀ"
|
| 53 |
+
intervals [3]:
|
| 54 |
+
xmin = 0.75
|
| 55 |
+
xmax = 0.98
|
| 56 |
+
text = "ᅳ"
|
| 57 |
+
intervals [4]:
|
| 58 |
+
xmin = 0.98
|
| 59 |
+
xmax = 0.99
|
| 60 |
+
text = "ᄋ"
|
| 61 |
+
intervals [5]:
|
| 62 |
+
xmin = 0.99
|
| 63 |
+
xmax = 1.44
|
| 64 |
+
text = "ᅢ"
|
| 65 |
+
intervals [6]:
|
| 66 |
+
xmin = 1.44
|
| 67 |
+
xmax = 1.59
|
| 68 |
+
text = "ᄌ"
|
| 69 |
+
intervals [7]:
|
| 70 |
+
xmin = 1.59
|
| 71 |
+
xmax = 1.62
|
| 72 |
+
text = "ᅥ"
|
| 73 |
+
intervals [8]:
|
| 74 |
+
xmin = 1.62
|
| 75 |
+
xmax = 1.75
|
| 76 |
+
text = "ᆫ"
|
| 77 |
+
intervals [9]:
|
| 78 |
+
xmin = 1.75
|
| 79 |
+
xmax = 1.79
|
| 80 |
+
text = "ᄒ"
|
| 81 |
+
intervals [10]:
|
| 82 |
+
xmin = 1.79
|
| 83 |
+
xmax = 1.82
|
| 84 |
+
text = "ᅪ"
|
| 85 |
+
intervals [11]:
|
| 86 |
+
xmin = 1.82
|
| 87 |
+
xmax = 1.93
|
| 88 |
+
text = "ᄇ"
|
| 89 |
+
intervals [12]:
|
| 90 |
+
xmin = 1.93
|
| 91 |
+
xmax = 2.03
|
| 92 |
+
text = "ᅥ"
|
| 93 |
+
intervals [13]:
|
| 94 |
+
xmin = 2.03
|
| 95 |
+
xmax = 2.08
|
| 96 |
+
text = "ᆫ"
|
| 97 |
+
intervals [14]:
|
| 98 |
+
xmin = 2.08
|
| 99 |
+
xmax = 2.13
|
| 100 |
+
text = "ᄒ"
|
| 101 |
+
intervals [15]:
|
| 102 |
+
xmin = 2.13
|
| 103 |
+
xmax = 2.16
|
| 104 |
+
text = "ᅩ"
|
| 105 |
+
intervals [16]:
|
| 106 |
+
xmin = 2.16
|
| 107 |
+
xmax = 2.17
|
| 108 |
+
text = "ᄋ"
|
| 109 |
+
intervals [17]:
|
| 110 |
+
xmin = 2.17
|
| 111 |
+
xmax = 2.34
|
| 112 |
+
text = "ᅡ"
|
| 113 |
+
intervals [18]:
|
| 114 |
+
xmin = 2.34
|
| 115 |
+
xmax = 2.39
|
| 116 |
+
text = "ᄅ"
|
| 117 |
+
intervals [19]:
|
| 118 |
+
xmin = 2.39
|
| 119 |
+
xmax = 2.51
|
| 120 |
+
text = "ᅡ"
|
| 121 |
+
intervals [20]:
|
| 122 |
+
xmin = 2.51
|
| 123 |
+
xmax = 3.78
|
| 124 |
+
text = "sil"
|
preprocessed/kss_elena/TextGrid/1_0005.TextGrid
ADDED
|
@@ -0,0 +1,120 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
File type = "ooTextFile"
|
| 2 |
+
Object class = "TextGrid"
|
| 3 |
+
|
| 4 |
+
xmin = 0
|
| 5 |
+
xmax = 4.02
|
| 6 |
+
tiers? <exists>
|
| 7 |
+
size = 2
|
| 8 |
+
item []:
|
| 9 |
+
item [1]:
|
| 10 |
+
class = "IntervalTier"
|
| 11 |
+
name = "words"
|
| 12 |
+
xmin = 0
|
| 13 |
+
xmax = 4.02
|
| 14 |
+
intervals: size = 6
|
| 15 |
+
intervals [1]:
|
| 16 |
+
xmin = 0
|
| 17 |
+
xmax = 0.94
|
| 18 |
+
text = "<eps>"
|
| 19 |
+
intervals [2]:
|
| 20 |
+
xmin = 0.94
|
| 21 |
+
xmax = 1.34
|
| 22 |
+
text = "차에"
|
| 23 |
+
intervals [3]:
|
| 24 |
+
xmin = 1.34
|
| 25 |
+
xmax = 1.8
|
| 26 |
+
text = "대해"
|
| 27 |
+
intervals [4]:
|
| 28 |
+
xmin = 1.8
|
| 29 |
+
xmax = 2.11
|
| 30 |
+
text = "잘"
|
| 31 |
+
intervals [5]:
|
| 32 |
+
xmin = 2.11
|
| 33 |
+
xmax = 2.66
|
| 34 |
+
text = "아세요"
|
| 35 |
+
intervals [6]:
|
| 36 |
+
xmin = 2.66
|
| 37 |
+
xmax = 4.02
|
| 38 |
+
text = "<eps>"
|
| 39 |
+
item [2]:
|
| 40 |
+
class = "IntervalTier"
|
| 41 |
+
name = "phones"
|
| 42 |
+
xmin = 0
|
| 43 |
+
xmax = 4.02
|
| 44 |
+
intervals: size = 19
|
| 45 |
+
intervals [1]:
|
| 46 |
+
xmin = 0
|
| 47 |
+
xmax = 0.94
|
| 48 |
+
text = "sil"
|
| 49 |
+
intervals [2]:
|
| 50 |
+
xmin = 0.94
|
| 51 |
+
xmax = 1.05
|
| 52 |
+
text = "ᄎ"
|
| 53 |
+
intervals [3]:
|
| 54 |
+
xmin = 1.05
|
| 55 |
+
xmax = 1.19
|
| 56 |
+
text = "ᅡ"
|
| 57 |
+
intervals [4]:
|
| 58 |
+
xmin = 1.19
|
| 59 |
+
xmax = 1.2
|
| 60 |
+
text = "ᄋ"
|
| 61 |
+
intervals [5]:
|
| 62 |
+
xmin = 1.2
|
| 63 |
+
xmax = 1.34
|
| 64 |
+
text = "ᅦ"
|
| 65 |
+
intervals [6]:
|
| 66 |
+
xmin = 1.34
|
| 67 |
+
xmax = 1.41
|
| 68 |
+
text = "ᄃ"
|
| 69 |
+
intervals [7]:
|
| 70 |
+
xmin = 1.41
|
| 71 |
+
xmax = 1.54
|
| 72 |
+
text = "ᅢ"
|
| 73 |
+
intervals [8]:
|
| 74 |
+
xmin = 1.54
|
| 75 |
+
xmax = 1.59
|
| 76 |
+
text = "ᄒ"
|
| 77 |
+
intervals [9]:
|
| 78 |
+
xmin = 1.59
|
| 79 |
+
xmax = 1.8
|
| 80 |
+
text = "ᅢ"
|
| 81 |
+
intervals [10]:
|
| 82 |
+
xmin = 1.8
|
| 83 |
+
xmax = 1.97
|
| 84 |
+
text = "ᄌ"
|
| 85 |
+
intervals [11]:
|
| 86 |
+
xmin = 1.97
|
| 87 |
+
xmax = 2.01
|
| 88 |
+
text = "ᅡ"
|
| 89 |
+
intervals [12]:
|
| 90 |
+
xmin = 2.01
|
| 91 |
+
xmax = 2.11
|
| 92 |
+
text = "ᆯ"
|
| 93 |
+
intervals [13]:
|
| 94 |
+
xmin = 2.11
|
| 95 |
+
xmax = 2.14
|
| 96 |
+
text = "ᄅ"
|
| 97 |
+
intervals [14]:
|
| 98 |
+
xmin = 2.14
|
| 99 |
+
xmax = 2.3
|
| 100 |
+
text = "ᅡ"
|
| 101 |
+
intervals [15]:
|
| 102 |
+
xmin = 2.3
|
| 103 |
+
xmax = 2.42
|
| 104 |
+
text = "ᄉ"
|
| 105 |
+
intervals [16]:
|
| 106 |
+
xmin = 2.42
|
| 107 |
+
xmax = 2.55
|
| 108 |
+
text = "ᅦ"
|
| 109 |
+
intervals [17]:
|
| 110 |
+
xmin = 2.55
|
| 111 |
+
xmax = 2.56
|
| 112 |
+
text = "ᄋ"
|
| 113 |
+
intervals [18]:
|
| 114 |
+
xmin = 2.56
|
| 115 |
+
xmax = 2.66
|
| 116 |
+
text = "ᅭ"
|
| 117 |
+
intervals [19]:
|
| 118 |
+
xmin = 2.66
|
| 119 |
+
xmax = 4.02
|
| 120 |
+
text = "sil"
|
preprocessed/kss_elena/TextGrid/1_0006.TextGrid
ADDED
|
@@ -0,0 +1,172 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
File type = "ooTextFile"
|
| 2 |
+
Object class = "TextGrid"
|
| 3 |
+
|
| 4 |
+
xmin = 0
|
| 5 |
+
xmax = 4.02
|
| 6 |
+
tiers? <exists>
|
| 7 |
+
size = 2
|
| 8 |
+
item []:
|
| 9 |
+
item [1]:
|
| 10 |
+
class = "IntervalTier"
|
| 11 |
+
name = "words"
|
| 12 |
+
xmin = 0
|
| 13 |
+
xmax = 4.02
|
| 14 |
+
intervals: size = 8
|
| 15 |
+
intervals [1]:
|
| 16 |
+
xmin = 0
|
| 17 |
+
xmax = 0.97
|
| 18 |
+
text = "<eps>"
|
| 19 |
+
intervals [2]:
|
| 20 |
+
xmin = 0.97
|
| 21 |
+
xmax = 1.29
|
| 22 |
+
text = "거기"
|
| 23 |
+
intervals [3]:
|
| 24 |
+
xmin = 1.29
|
| 25 |
+
xmax = 2.22
|
| 26 |
+
text = "도착하면"
|
| 27 |
+
intervals [4]:
|
| 28 |
+
xmin = 2.22
|
| 29 |
+
xmax = 2.77
|
| 30 |
+
text = "나한테"
|
| 31 |
+
intervals [5]:
|
| 32 |
+
xmin = 2.77
|
| 33 |
+
xmax = 3.09
|
| 34 |
+
text = "알려"
|
| 35 |
+
intervals [6]:
|
| 36 |
+
xmin = 3.09
|
| 37 |
+
xmax = 3.17
|
| 38 |
+
text = "<eps>"
|
| 39 |
+
intervals [7]:
|
| 40 |
+
xmin = 3.17
|
| 41 |
+
xmax = 3.46
|
| 42 |
+
text = "줘"
|
| 43 |
+
intervals [8]:
|
| 44 |
+
xmin = 3.46
|
| 45 |
+
xmax = 4.02
|
| 46 |
+
text = "<eps>"
|
| 47 |
+
item [2]:
|
| 48 |
+
class = "IntervalTier"
|
| 49 |
+
name = "phones"
|
| 50 |
+
xmin = 0
|
| 51 |
+
xmax = 4.02
|
| 52 |
+
intervals: size = 30
|
| 53 |
+
intervals [1]:
|
| 54 |
+
xmin = 0
|
| 55 |
+
xmax = 0.97
|
| 56 |
+
text = "sil"
|
| 57 |
+
intervals [2]:
|
| 58 |
+
xmin = 0.97
|
| 59 |
+
xmax = 1.04
|
| 60 |
+
text = "ᄀ"
|
| 61 |
+
intervals [3]:
|
| 62 |
+
xmin = 1.04
|
| 63 |
+
xmax = 1.13
|
| 64 |
+
text = "ᅥ"
|
| 65 |
+
intervals [4]:
|
| 66 |
+
xmin = 1.13
|
| 67 |
+
xmax = 1.21
|
| 68 |
+
text = "ᄀ"
|
| 69 |
+
intervals [5]:
|
| 70 |
+
xmin = 1.21
|
| 71 |
+
xmax = 1.29
|
| 72 |
+
text = "ᅵ"
|
| 73 |
+
intervals [6]:
|
| 74 |
+
xmin = 1.29
|
| 75 |
+
xmax = 1.38
|
| 76 |
+
text = "ᄃ"
|
| 77 |
+
intervals [7]:
|
| 78 |
+
xmin = 1.38
|
| 79 |
+
xmax = 1.45
|
| 80 |
+
text = "ᅩ"
|
| 81 |
+
intervals [8]:
|
| 82 |
+
xmin = 1.45
|
| 83 |
+
xmax = 1.56
|
| 84 |
+
text = "ᄎ"
|
| 85 |
+
intervals [9]:
|
| 86 |
+
xmin = 1.56
|
| 87 |
+
xmax = 1.66
|
| 88 |
+
text = "ᅡ"
|
| 89 |
+
intervals [10]:
|
| 90 |
+
xmin = 1.66
|
| 91 |
+
xmax = 1.75
|
| 92 |
+
text = "ᄏ"
|
| 93 |
+
intervals [11]:
|
| 94 |
+
xmin = 1.75
|
| 95 |
+
xmax = 1.84
|
| 96 |
+
text = "ᅡ"
|
| 97 |
+
intervals [12]:
|
| 98 |
+
xmin = 1.84
|
| 99 |
+
xmax = 1.88
|
| 100 |
+
text = "ᄆ"
|
| 101 |
+
intervals [13]:
|
| 102 |
+
xmin = 1.88
|
| 103 |
+
xmax = 2.1
|
| 104 |
+
text = "ᅧ"
|
| 105 |
+
intervals [14]:
|
| 106 |
+
xmin = 2.1
|
| 107 |
+
xmax = 2.22
|
| 108 |
+
text = "ᆫ"
|
| 109 |
+
intervals [15]:
|
| 110 |
+
xmin = 2.22
|
| 111 |
+
xmax = 2.26
|
| 112 |
+
text = "ᄂ"
|
| 113 |
+
intervals [16]:
|
| 114 |
+
xmin = 2.26
|
| 115 |
+
xmax = 2.38
|
| 116 |
+
text = "ᅡ"
|
| 117 |
+
intervals [17]:
|
| 118 |
+
xmin = 2.38
|
| 119 |
+
xmax = 2.42
|
| 120 |
+
text = "ᄒ"
|
| 121 |
+
intervals [18]:
|
| 122 |
+
xmin = 2.42
|
| 123 |
+
xmax = 2.47
|
| 124 |
+
text = "ᅡ"
|
| 125 |
+
intervals [19]:
|
| 126 |
+
xmin = 2.47
|
| 127 |
+
xmax = 2.62
|
| 128 |
+
text = "ᆫ"
|
| 129 |
+
intervals [20]:
|
| 130 |
+
xmin = 2.62
|
| 131 |
+
xmax = 2.68
|
| 132 |
+
text = "ᄐ"
|
| 133 |
+
intervals [21]:
|
| 134 |
+
xmin = 2.68
|
| 135 |
+
xmax = 2.77
|
| 136 |
+
text = "ᅦ"
|
| 137 |
+
intervals [22]:
|
| 138 |
+
xmin = 2.77
|
| 139 |
+
xmax = 2.78
|
| 140 |
+
text = "ᄋ"
|
| 141 |
+
intervals [23]:
|
| 142 |
+
xmin = 2.78
|
| 143 |
+
xmax = 2.93
|
| 144 |
+
text = "ᅡ"
|
| 145 |
+
intervals [24]:
|
| 146 |
+
xmin = 2.93
|
| 147 |
+
xmax = 2.96
|
| 148 |
+
text = "ᆯ"
|
| 149 |
+
intervals [25]:
|
| 150 |
+
xmin = 2.96
|
| 151 |
+
xmax = 2.99
|
| 152 |
+
text = "ᄅ"
|
| 153 |
+
intervals [26]:
|
| 154 |
+
xmin = 2.99
|
| 155 |
+
xmax = 3.09
|
| 156 |
+
text = "ᅧ"
|
| 157 |
+
intervals [27]:
|
| 158 |
+
xmin = 3.09
|
| 159 |
+
xmax = 3.17
|
| 160 |
+
text = "sil"
|
| 161 |
+
intervals [28]:
|
| 162 |
+
xmin = 3.17
|
| 163 |
+
xmax = 3.25
|
| 164 |
+
text = "ᄌ"
|
| 165 |
+
intervals [29]:
|
| 166 |
+
xmin = 3.25
|
| 167 |
+
xmax = 3.46
|
| 168 |
+
text = "ᅯ"
|
| 169 |
+
intervals [30]:
|
| 170 |
+
xmin = 3.46
|
| 171 |
+
xmax = 4.02
|
| 172 |
+
text = "sil"
|
preprocessed/kss_elena/TextGrid/1_0007.TextGrid
ADDED
|
@@ -0,0 +1,220 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
File type = "ooTextFile"
|
| 2 |
+
Object class = "TextGrid"
|
| 3 |
+
|
| 4 |
+
xmin = 0
|
| 5 |
+
xmax = 5.7
|
| 6 |
+
tiers? <exists>
|
| 7 |
+
size = 2
|
| 8 |
+
item []:
|
| 9 |
+
item [1]:
|
| 10 |
+
class = "IntervalTier"
|
| 11 |
+
name = "words"
|
| 12 |
+
xmin = 0
|
| 13 |
+
xmax = 5.7
|
| 14 |
+
intervals: size = 9
|
| 15 |
+
intervals [1]:
|
| 16 |
+
xmin = 0
|
| 17 |
+
xmax = 0.66
|
| 18 |
+
text = "<eps>"
|
| 19 |
+
intervals [2]:
|
| 20 |
+
xmin = 0.66
|
| 21 |
+
xmax = 1.24
|
| 22 |
+
text = "그들은"
|
| 23 |
+
intervals [3]:
|
| 24 |
+
xmin = 1.24
|
| 25 |
+
xmax = 1.71
|
| 26 |
+
text = "<eps>"
|
| 27 |
+
intervals [4]:
|
| 28 |
+
xmin = 1.71
|
| 29 |
+
xmax = 2.23
|
| 30 |
+
text = "내가"
|
| 31 |
+
intervals [5]:
|
| 32 |
+
xmin = 2.23
|
| 33 |
+
xmax = 2.87
|
| 34 |
+
text = "시험에"
|
| 35 |
+
intervals [6]:
|
| 36 |
+
xmin = 2.87
|
| 37 |
+
xmax = 3.81
|
| 38 |
+
text = "떨어졌다고"
|
| 39 |
+
intervals [7]:
|
| 40 |
+
xmin = 3.81
|
| 41 |
+
xmax = 4.19
|
| 42 |
+
text = "알려"
|
| 43 |
+
intervals [8]:
|
| 44 |
+
xmin = 4.19
|
| 45 |
+
xmax = 4.62
|
| 46 |
+
text = "왔다"
|
| 47 |
+
intervals [9]:
|
| 48 |
+
xmin = 4.62
|
| 49 |
+
xmax = 5.7
|
| 50 |
+
text = "<eps>"
|
| 51 |
+
item [2]:
|
| 52 |
+
class = "IntervalTier"
|
| 53 |
+
name = "phones"
|
| 54 |
+
xmin = 0
|
| 55 |
+
xmax = 5.7
|
| 56 |
+
intervals: size = 41
|
| 57 |
+
intervals [1]:
|
| 58 |
+
xmin = 0
|
| 59 |
+
xmax = 0.66
|
| 60 |
+
text = "sil"
|
| 61 |
+
intervals [2]:
|
| 62 |
+
xmin = 0.66
|
| 63 |
+
xmax = 0.69
|
| 64 |
+
text = "ᄀ"
|
| 65 |
+
intervals [3]:
|
| 66 |
+
xmin = 0.69
|
| 67 |
+
xmax = 0.88
|
| 68 |
+
text = "ᅳ"
|
| 69 |
+
intervals [4]:
|
| 70 |
+
xmin = 0.88
|
| 71 |
+
xmax = 0.98
|
| 72 |
+
text = "ᄃ"
|
| 73 |
+
intervals [5]:
|
| 74 |
+
xmin = 0.98
|
| 75 |
+
xmax = 1.15
|
| 76 |
+
text = "ᅳ"
|
| 77 |
+
intervals [6]:
|
| 78 |
+
xmin = 1.15
|
| 79 |
+
xmax = 1.18
|
| 80 |
+
text = "ᄅ"
|
| 81 |
+
intervals [7]:
|
| 82 |
+
xmin = 1.18
|
| 83 |
+
xmax = 1.21
|
| 84 |
+
text = "ᅳ"
|
| 85 |
+
intervals [8]:
|
| 86 |
+
xmin = 1.21
|
| 87 |
+
xmax = 1.24
|
| 88 |
+
text = "ᆫ"
|
| 89 |
+
intervals [9]:
|
| 90 |
+
xmin = 1.24
|
| 91 |
+
xmax = 1.71
|
| 92 |
+
text = "sil"
|
| 93 |
+
intervals [10]:
|
| 94 |
+
xmin = 1.71
|
| 95 |
+
xmax = 1.78
|
| 96 |
+
text = "ᄂ"
|
| 97 |
+
intervals [11]:
|
| 98 |
+
xmin = 1.78
|
| 99 |
+
xmax = 1.91
|
| 100 |
+
text = "ᅢ"
|
| 101 |
+
intervals [12]:
|
| 102 |
+
xmin = 1.91
|
| 103 |
+
xmax = 1.98
|
| 104 |
+
text = "ᄀ"
|
| 105 |
+
intervals [13]:
|
| 106 |
+
xmin = 1.98
|
| 107 |
+
xmax = 2.23
|
| 108 |
+
text = "ᅡ"
|
| 109 |
+
intervals [14]:
|
| 110 |
+
xmin = 2.23
|
| 111 |
+
xmax = 2.38
|
| 112 |
+
text = "ᄉ"
|
| 113 |
+
intervals [15]:
|
| 114 |
+
xmin = 2.38
|
| 115 |
+
xmax = 2.43
|
| 116 |
+
text = "ᅵ"
|
| 117 |
+
intervals [16]:
|
| 118 |
+
xmin = 2.43
|
| 119 |
+
xmax = 2.48
|
| 120 |
+
text = "ᄒ"
|
| 121 |
+
intervals [17]:
|
| 122 |
+
xmin = 2.48
|
| 123 |
+
xmax = 2.61
|
| 124 |
+
text = "ᅥ"
|
| 125 |
+
intervals [18]:
|
| 126 |
+
xmin = 2.61
|
| 127 |
+
xmax = 2.72
|
| 128 |
+
text = "ᄆ"
|
| 129 |
+
intervals [19]:
|
| 130 |
+
xmin = 2.72
|
| 131 |
+
xmax = 2.87
|
| 132 |
+
text = "ᅦ"
|
| 133 |
+
intervals [20]:
|
| 134 |
+
xmin = 2.87
|
| 135 |
+
xmax = 2.94
|
| 136 |
+
text = "ᄄ"
|
| 137 |
+
intervals [21]:
|
| 138 |
+
xmin = 2.94
|
| 139 |
+
xmax = 3.06
|
| 140 |
+
text = "ᅥ"
|
| 141 |
+
intervals [22]:
|
| 142 |
+
xmin = 3.06
|
| 143 |
+
xmax = 3.11
|
| 144 |
+
text = "ᄅ"
|
| 145 |
+
intervals [23]:
|
| 146 |
+
xmin = 3.11
|
| 147 |
+
xmax = 3.22
|
| 148 |
+
text = "ᅥ"
|
| 149 |
+
intervals [24]:
|
| 150 |
+
xmin = 3.22
|
| 151 |
+
xmax = 3.3
|
| 152 |
+
text = "ᄌ"
|
| 153 |
+
intervals [25]:
|
| 154 |
+
xmin = 3.3
|
| 155 |
+
xmax = 3.35
|
| 156 |
+
text = "ᅥ"
|
| 157 |
+
intervals [26]:
|
| 158 |
+
xmin = 3.35
|
| 159 |
+
xmax = 3.38
|
| 160 |
+
text = "ᆮ"
|
| 161 |
+
intervals [27]:
|
| 162 |
+
xmin = 3.38
|
| 163 |
+
xmax = 3.53
|
| 164 |
+
text = "ᄄ"
|
| 165 |
+
intervals [28]:
|
| 166 |
+
xmin = 3.53
|
| 167 |
+
xmax = 3.63
|
| 168 |
+
text = "ᅡ"
|
| 169 |
+
intervals [29]:
|
| 170 |
+
xmin = 3.63
|
| 171 |
+
xmax = 3.71
|
| 172 |
+
text = "ᄀ"
|
| 173 |
+
intervals [30]:
|
| 174 |
+
xmin = 3.71
|
| 175 |
+
xmax = 3.81
|
| 176 |
+
text = "ᅩ"
|
| 177 |
+
intervals [31]:
|
| 178 |
+
xmin = 3.81
|
| 179 |
+
xmax = 3.82
|
| 180 |
+
text = "ᄋ"
|
| 181 |
+
intervals [32]:
|
| 182 |
+
xmin = 3.82
|
| 183 |
+
xmax = 3.91
|
| 184 |
+
text = "ᅡ"
|
| 185 |
+
intervals [33]:
|
| 186 |
+
xmin = 3.91
|
| 187 |
+
xmax = 4.02
|
| 188 |
+
text = "ᆯ"
|
| 189 |
+
intervals [34]:
|
| 190 |
+
xmin = 4.02
|
| 191 |
+
xmax = 4.07
|
| 192 |
+
text = "ᄅ"
|
| 193 |
+
intervals [35]:
|
| 194 |
+
xmin = 4.07
|
| 195 |
+
xmax = 4.19
|
| 196 |
+
text = "ᅧ"
|
| 197 |
+
intervals [36]:
|
| 198 |
+
xmin = 4.19
|
| 199 |
+
xmax = 4.2
|
| 200 |
+
text = "ᄋ"
|
| 201 |
+
intervals [37]:
|
| 202 |
+
xmin = 4.2
|
| 203 |
+
xmax = 4.26
|
| 204 |
+
text = "ᅪ"
|
| 205 |
+
intervals [38]:
|
| 206 |
+
xmin = 4.26
|
| 207 |
+
xmax = 4.31
|
| 208 |
+
text = "ᆮ"
|
| 209 |
+
intervals [39]:
|
| 210 |
+
xmin = 4.31
|
| 211 |
+
xmax = 4.5
|
| 212 |
+
text = "ᄄ"
|
| 213 |
+
intervals [40]:
|
| 214 |
+
xmin = 4.5
|
| 215 |
+
xmax = 4.62
|
| 216 |
+
text = "ᅡ"
|
| 217 |
+
intervals [41]:
|
| 218 |
+
xmin = 4.62
|
| 219 |
+
xmax = 5.7
|
| 220 |
+
text = "sil"
|
preprocessed/kss_elena/TextGrid/1_0008.TextGrid
ADDED
|
@@ -0,0 +1,264 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
File type = "ooTextFile"
|
| 2 |
+
Object class = "TextGrid"
|
| 3 |
+
|
| 4 |
+
xmin = 0
|
| 5 |
+
xmax = 9.24
|
| 6 |
+
tiers? <exists>
|
| 7 |
+
size = 2
|
| 8 |
+
item []:
|
| 9 |
+
item [1]:
|
| 10 |
+
class = "IntervalTier"
|
| 11 |
+
name = "words"
|
| 12 |
+
xmin = 0
|
| 13 |
+
xmax = 9.24
|
| 14 |
+
intervals: size = 12
|
| 15 |
+
intervals [1]:
|
| 16 |
+
xmin = 0
|
| 17 |
+
xmax = 1.86
|
| 18 |
+
text = "<eps>"
|
| 19 |
+
intervals [2]:
|
| 20 |
+
xmin = 1.86
|
| 21 |
+
xmax = 2.54
|
| 22 |
+
text = "나는"
|
| 23 |
+
intervals [3]:
|
| 24 |
+
xmin = 2.54
|
| 25 |
+
xmax = 3.67
|
| 26 |
+
text = "살아오면서"
|
| 27 |
+
intervals [4]:
|
| 28 |
+
xmin = 3.67
|
| 29 |
+
xmax = 3.79
|
| 30 |
+
text = "<eps>"
|
| 31 |
+
intervals [5]:
|
| 32 |
+
xmin = 3.79
|
| 33 |
+
xmax = 4.63
|
| 34 |
+
text = "감기를"
|
| 35 |
+
intervals [6]:
|
| 36 |
+
xmin = 4.63
|
| 37 |
+
xmax = 5.94
|
| 38 |
+
text = "<eps>"
|
| 39 |
+
intervals [7]:
|
| 40 |
+
xmin = 5.94
|
| 41 |
+
xmax = 6.41
|
| 42 |
+
text = "앓은"
|
| 43 |
+
intervals [8]:
|
| 44 |
+
xmin = 6.41
|
| 45 |
+
xmax = 6.89
|
| 46 |
+
text = "적이"
|
| 47 |
+
intervals [9]:
|
| 48 |
+
xmin = 6.89
|
| 49 |
+
xmax = 7.15
|
| 50 |
+
text = "한"
|
| 51 |
+
intervals [10]:
|
| 52 |
+
xmin = 7.15
|
| 53 |
+
xmax = 7.56
|
| 54 |
+
text = "번도"
|
| 55 |
+
intervals [11]:
|
| 56 |
+
xmin = 7.56
|
| 57 |
+
xmax = 7.94
|
| 58 |
+
text = "없다"
|
| 59 |
+
intervals [12]:
|
| 60 |
+
xmin = 7.94
|
| 61 |
+
xmax = 9.24
|
| 62 |
+
text = "<eps>"
|
| 63 |
+
item [2]:
|
| 64 |
+
class = "IntervalTier"
|
| 65 |
+
name = "phones"
|
| 66 |
+
xmin = 0
|
| 67 |
+
xmax = 9.24
|
| 68 |
+
intervals: size = 49
|
| 69 |
+
intervals [1]:
|
| 70 |
+
xmin = 0
|
| 71 |
+
xmax = 1.86
|
| 72 |
+
text = "sil"
|
| 73 |
+
intervals [2]:
|
| 74 |
+
xmin = 1.86
|
| 75 |
+
xmax = 1.92
|
| 76 |
+
text = "ᄂ"
|
| 77 |
+
intervals [3]:
|
| 78 |
+
xmin = 1.92
|
| 79 |
+
xmax = 2.06
|
| 80 |
+
text = "ᅡ"
|
| 81 |
+
intervals [4]:
|
| 82 |
+
xmin = 2.06
|
| 83 |
+
xmax = 2.15
|
| 84 |
+
text = "ᄂ"
|
| 85 |
+
intervals [5]:
|
| 86 |
+
xmin = 2.15
|
| 87 |
+
xmax = 2.44
|
| 88 |
+
text = "ᅳ"
|
| 89 |
+
intervals [6]:
|
| 90 |
+
xmin = 2.44
|
| 91 |
+
xmax = 2.54
|
| 92 |
+
text = "ᆫ"
|
| 93 |
+
intervals [7]:
|
| 94 |
+
xmin = 2.54
|
| 95 |
+
xmax = 2.64
|
| 96 |
+
text = "ᄉ"
|
| 97 |
+
intervals [8]:
|
| 98 |
+
xmin = 2.64
|
| 99 |
+
xmax = 2.75
|
| 100 |
+
text = "ᅡ"
|
| 101 |
+
intervals [9]:
|
| 102 |
+
xmin = 2.75
|
| 103 |
+
xmax = 2.79
|
| 104 |
+
text = "ᄅ"
|
| 105 |
+
intervals [10]:
|
| 106 |
+
xmin = 2.79
|
| 107 |
+
xmax = 2.91
|
| 108 |
+
text = "ᅡ"
|
| 109 |
+
intervals [11]:
|
| 110 |
+
xmin = 2.91
|
| 111 |
+
xmax = 2.92
|
| 112 |
+
text = "ᄋ"
|
| 113 |
+
intervals [12]:
|
| 114 |
+
xmin = 2.92
|
| 115 |
+
xmax = 3.07
|
| 116 |
+
text = "ᅩ"
|
| 117 |
+
intervals [13]:
|
| 118 |
+
xmin = 3.07
|
| 119 |
+
xmax = 3.14
|
| 120 |
+
text = "ᄆ"
|
| 121 |
+
intervals [14]:
|
| 122 |
+
xmin = 3.14
|
| 123 |
+
xmax = 3.22
|
| 124 |
+
text = "ᅧ"
|
| 125 |
+
intervals [15]:
|
| 126 |
+
xmin = 3.22
|
| 127 |
+
xmax = 3.31
|
| 128 |
+
text = "ᆫ"
|
| 129 |
+
intervals [16]:
|
| 130 |
+
xmin = 3.31
|
| 131 |
+
xmax = 3.4
|
| 132 |
+
text = "ᄉ"
|
| 133 |
+
intervals [17]:
|
| 134 |
+
xmin = 3.4
|
| 135 |
+
xmax = 3.67
|
| 136 |
+
text = "ᅥ"
|
| 137 |
+
intervals [18]:
|
| 138 |
+
xmin = 3.67
|
| 139 |
+
xmax = 3.79
|
| 140 |
+
text = "sil"
|
| 141 |
+
intervals [19]:
|
| 142 |
+
xmin = 3.79
|
| 143 |
+
xmax = 3.87
|
| 144 |
+
text = "ᄀ"
|
| 145 |
+
intervals [20]:
|
| 146 |
+
xmin = 3.87
|
| 147 |
+
xmax = 3.9
|
| 148 |
+
text = "ᅡ"
|
| 149 |
+
intervals [21]:
|
| 150 |
+
xmin = 3.9
|
| 151 |
+
xmax = 4.18
|
| 152 |
+
text = "ᆷ"
|
| 153 |
+
intervals [22]:
|
| 154 |
+
xmin = 4.18
|
| 155 |
+
xmax = 4.25
|
| 156 |
+
text = "ᄀ"
|
| 157 |
+
intervals [23]:
|
| 158 |
+
xmin = 4.25
|
| 159 |
+
xmax = 4.39
|
| 160 |
+
text = "ᅵ"
|
| 161 |
+
intervals [24]:
|
| 162 |
+
xmin = 4.39
|
| 163 |
+
xmax = 4.44
|
| 164 |
+
text = "ᄅ"
|
| 165 |
+
intervals [25]:
|
| 166 |
+
xmin = 4.44
|
| 167 |
+
xmax = 4.63
|
| 168 |
+
text = "ᅳ"
|
| 169 |
+
intervals [26]:
|
| 170 |
+
xmin = 4.63
|
| 171 |
+
xmax = 5.94
|
| 172 |
+
text = "sil"
|
| 173 |
+
intervals [27]:
|
| 174 |
+
xmin = 5.94
|
| 175 |
+
xmax = 5.97
|
| 176 |
+
text = "ᄅ"
|
| 177 |
+
intervals [28]:
|
| 178 |
+
xmin = 5.97
|
| 179 |
+
xmax = 6.06
|
| 180 |
+
text = "ᅡ"
|
| 181 |
+
intervals [29]:
|
| 182 |
+
xmin = 6.06
|
| 183 |
+
xmax = 6.09
|
| 184 |
+
text = "ᄅ"
|
| 185 |
+
intervals [30]:
|
| 186 |
+
xmin = 6.09
|
| 187 |
+
xmax = 6.31
|
| 188 |
+
text = "ᅳ"
|
| 189 |
+
intervals [31]:
|
| 190 |
+
xmin = 6.31
|
| 191 |
+
xmax = 6.41
|
| 192 |
+
text = "ᆫ"
|
| 193 |
+
intervals [32]:
|
| 194 |
+
xmin = 6.41
|
| 195 |
+
xmax = 6.53
|
| 196 |
+
text = "ᄌ"
|
| 197 |
+
intervals [33]:
|
| 198 |
+
xmin = 6.53
|
| 199 |
+
xmax = 6.6
|
| 200 |
+
text = "ᅥ"
|
| 201 |
+
intervals [34]:
|
| 202 |
+
xmin = 6.6
|
| 203 |
+
xmax = 6.78
|
| 204 |
+
text = "ᄀ"
|
| 205 |
+
intervals [35]:
|
| 206 |
+
xmin = 6.78
|
| 207 |
+
xmax = 6.89
|
| 208 |
+
text = "ᅵ"
|
| 209 |
+
intervals [36]:
|
| 210 |
+
xmin = 6.89
|
| 211 |
+
xmax = 6.98
|
| 212 |
+
text = "ᄒ"
|
| 213 |
+
intervals [37]:
|
| 214 |
+
xmin = 6.98
|
| 215 |
+
xmax = 7.01
|
| 216 |
+
text = "ᅡ"
|
| 217 |
+
intervals [38]:
|
| 218 |
+
xmin = 7.01
|
| 219 |
+
xmax = 7.15
|
| 220 |
+
text = "ᆫ"
|
| 221 |
+
intervals [39]:
|
| 222 |
+
xmin = 7.15
|
| 223 |
+
xmax = 7.19
|
| 224 |
+
text = "ᄇ"
|
| 225 |
+
intervals [40]:
|
| 226 |
+
xmin = 7.19
|
| 227 |
+
xmax = 7.26
|
| 228 |
+
text = "ᅥ"
|
| 229 |
+
intervals [41]:
|
| 230 |
+
xmin = 7.26
|
| 231 |
+
xmax = 7.41
|
| 232 |
+
text = "ᆫ"
|
| 233 |
+
intervals [42]:
|
| 234 |
+
xmin = 7.41
|
| 235 |
+
xmax = 7.46
|
| 236 |
+
text = "ᄃ"
|
| 237 |
+
intervals [43]:
|
| 238 |
+
xmin = 7.46
|
| 239 |
+
xmax = 7.56
|
| 240 |
+
text = "ᅩ"
|
| 241 |
+
intervals [44]:
|
| 242 |
+
xmin = 7.56
|
| 243 |
+
xmax = 7.57
|
| 244 |
+
text = "ᄋ"
|
| 245 |
+
intervals [45]:
|
| 246 |
+
xmin = 7.57
|
| 247 |
+
xmax = 7.63
|
| 248 |
+
text = "ᅥ"
|
| 249 |
+
intervals [46]:
|
| 250 |
+
xmin = 7.63
|
| 251 |
+
xmax = 7.7
|
| 252 |
+
text = "ᆸ"
|
| 253 |
+
intervals [47]:
|
| 254 |
+
xmin = 7.7
|
| 255 |
+
xmax = 7.9
|
| 256 |
+
text = "ᄄ"
|
| 257 |
+
intervals [48]:
|
| 258 |
+
xmin = 7.9
|
| 259 |
+
xmax = 7.94
|
| 260 |
+
text = "ᅡ"
|
| 261 |
+
intervals [49]:
|
| 262 |
+
xmin = 7.94
|
| 263 |
+
xmax = 9.24
|
| 264 |
+
text = "sil"
|
preprocessed/kss_elena/TextGrid/1_0009.TextGrid
ADDED
|
@@ -0,0 +1,200 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
File type = "ooTextFile"
|
| 2 |
+
Object class = "TextGrid"
|
| 3 |
+
|
| 4 |
+
xmin = 0
|
| 5 |
+
xmax = 5.52
|
| 6 |
+
tiers? <exists>
|
| 7 |
+
size = 2
|
| 8 |
+
item []:
|
| 9 |
+
item [1]:
|
| 10 |
+
class = "IntervalTier"
|
| 11 |
+
name = "words"
|
| 12 |
+
xmin = 0
|
| 13 |
+
xmax = 5.52
|
| 14 |
+
intervals: size = 9
|
| 15 |
+
intervals [1]:
|
| 16 |
+
xmin = 0
|
| 17 |
+
xmax = 1.33
|
| 18 |
+
text = "<eps>"
|
| 19 |
+
intervals [2]:
|
| 20 |
+
xmin = 1.33
|
| 21 |
+
xmax = 1.7
|
| 22 |
+
text = "사흘"
|
| 23 |
+
intervals [3]:
|
| 24 |
+
xmin = 1.7
|
| 25 |
+
xmax = 2.13
|
| 26 |
+
text = "동안"
|
| 27 |
+
intervals [4]:
|
| 28 |
+
xmin = 2.13
|
| 29 |
+
xmax = 2.24
|
| 30 |
+
text = "<eps>"
|
| 31 |
+
intervals [5]:
|
| 32 |
+
xmin = 2.24
|
| 33 |
+
xmax = 3.01
|
| 34 |
+
text = "심하게"
|
| 35 |
+
intervals [6]:
|
| 36 |
+
xmin = 3.01
|
| 37 |
+
xmax = 3.73
|
| 38 |
+
text = "몸살을"
|
| 39 |
+
intervals [7]:
|
| 40 |
+
xmin = 3.73
|
| 41 |
+
xmax = 3.94
|
| 42 |
+
text = "<eps>"
|
| 43 |
+
intervals [8]:
|
| 44 |
+
xmin = 3.94
|
| 45 |
+
xmax = 4.62
|
| 46 |
+
text = "앓았어요"
|
| 47 |
+
intervals [9]:
|
| 48 |
+
xmin = 4.62
|
| 49 |
+
xmax = 5.52
|
| 50 |
+
text = "<eps>"
|
| 51 |
+
item [2]:
|
| 52 |
+
class = "IntervalTier"
|
| 53 |
+
name = "phones"
|
| 54 |
+
xmin = 0
|
| 55 |
+
xmax = 5.52
|
| 56 |
+
intervals: size = 36
|
| 57 |
+
intervals [1]:
|
| 58 |
+
xmin = 0
|
| 59 |
+
xmax = 1.33
|
| 60 |
+
text = "sil"
|
| 61 |
+
intervals [2]:
|
| 62 |
+
xmin = 1.33
|
| 63 |
+
xmax = 1.47
|
| 64 |
+
text = "ᄉ"
|
| 65 |
+
intervals [3]:
|
| 66 |
+
xmin = 1.47
|
| 67 |
+
xmax = 1.56
|
| 68 |
+
text = "ᅡ"
|
| 69 |
+
intervals [4]:
|
| 70 |
+
xmin = 1.56
|
| 71 |
+
xmax = 1.63
|
| 72 |
+
text = "ᄒ"
|
| 73 |
+
intervals [5]:
|
| 74 |
+
xmin = 1.63
|
| 75 |
+
xmax = 1.66
|
| 76 |
+
text = "ᅳ"
|
| 77 |
+
intervals [6]:
|
| 78 |
+
xmin = 1.66
|
| 79 |
+
xmax = 1.7
|
| 80 |
+
text = "ᆯ"
|
| 81 |
+
intervals [7]:
|
| 82 |
+
xmin = 1.7
|
| 83 |
+
xmax = 1.79
|
| 84 |
+
text = "ᄃ"
|
| 85 |
+
intervals [8]:
|
| 86 |
+
xmin = 1.79
|
| 87 |
+
xmax = 1.83
|
| 88 |
+
text = "ᅩ"
|
| 89 |
+
intervals [9]:
|
| 90 |
+
xmin = 1.83
|
| 91 |
+
xmax = 1.96
|
| 92 |
+
text = "ᆼ"
|
| 93 |
+
intervals [10]:
|
| 94 |
+
xmin = 1.96
|
| 95 |
+
xmax = 1.97
|
| 96 |
+
text = "ᄋ"
|
| 97 |
+
intervals [11]:
|
| 98 |
+
xmin = 1.97
|
| 99 |
+
xmax = 2.13
|
| 100 |
+
text = "ᅡ"
|
| 101 |
+
intervals [12]:
|
| 102 |
+
xmin = 2.13
|
| 103 |
+
xmax = 2.24
|
| 104 |
+
text = "sil"
|
| 105 |
+
intervals [13]:
|
| 106 |
+
xmin = 2.24
|
| 107 |
+
xmax = 2.37
|
| 108 |
+
text = "ᄉ"
|
| 109 |
+
intervals [14]:
|
| 110 |
+
xmin = 2.37
|
| 111 |
+
xmax = 2.4
|
| 112 |
+
text = "ᅵ"
|
| 113 |
+
intervals [15]:
|
| 114 |
+
xmin = 2.4
|
| 115 |
+
xmax = 2.47
|
| 116 |
+
text = "ᆷ"
|
| 117 |
+
intervals [16]:
|
| 118 |
+
xmin = 2.47
|
| 119 |
+
xmax = 2.51
|
| 120 |
+
text = "ᄒ"
|
| 121 |
+
intervals [17]:
|
| 122 |
+
xmin = 2.51
|
| 123 |
+
xmax = 2.65
|
| 124 |
+
text = "ᅡ"
|
| 125 |
+
intervals [18]:
|
| 126 |
+
xmin = 2.65
|
| 127 |
+
xmax = 2.77
|
| 128 |
+
text = "ᄀ"
|
| 129 |
+
intervals [19]:
|
| 130 |
+
xmin = 2.77
|
| 131 |
+
xmax = 3.01
|
| 132 |
+
text = "ᅦ"
|
| 133 |
+
intervals [20]:
|
| 134 |
+
xmin = 3.01
|
| 135 |
+
xmax = 3.09
|
| 136 |
+
text = "ᄆ"
|
| 137 |
+
intervals [21]:
|
| 138 |
+
xmin = 3.09
|
| 139 |
+
xmax = 3.12
|
| 140 |
+
text = "ᅩ"
|
| 141 |
+
intervals [22]:
|
| 142 |
+
xmin = 3.12
|
| 143 |
+
xmax = 3.19
|
| 144 |
+
text = "ᆷ"
|
| 145 |
+
intervals [23]:
|
| 146 |
+
xmin = 3.19
|
| 147 |
+
xmax = 3.36
|
| 148 |
+
text = "ᄉ"
|
| 149 |
+
intervals [24]:
|
| 150 |
+
xmin = 3.36
|
| 151 |
+
xmax = 3.46
|
| 152 |
+
text = "ᅡ"
|
| 153 |
+
intervals [25]:
|
| 154 |
+
xmin = 3.46
|
| 155 |
+
xmax = 3.59
|
| 156 |
+
text = "ᄅ"
|
| 157 |
+
intervals [26]:
|
| 158 |
+
xmin = 3.59
|
| 159 |
+
xmax = 3.73
|
| 160 |
+
text = "ᅳ"
|
| 161 |
+
intervals [27]:
|
| 162 |
+
xmin = 3.73
|
| 163 |
+
xmax = 3.94
|
| 164 |
+
text = "sil"
|
| 165 |
+
intervals [28]:
|
| 166 |
+
xmin = 3.94
|
| 167 |
+
xmax = 3.97
|
| 168 |
+
text = "ᄅ"
|
| 169 |
+
intervals [29]:
|
| 170 |
+
xmin = 3.97
|
| 171 |
+
xmax = 4.12
|
| 172 |
+
text = "ᅡ"
|
| 173 |
+
intervals [30]:
|
| 174 |
+
xmin = 4.12
|
| 175 |
+
xmax = 4.16
|
| 176 |
+
text = "ᄅ"
|
| 177 |
+
intervals [31]:
|
| 178 |
+
xmin = 4.16
|
| 179 |
+
xmax = 4.2
|
| 180 |
+
text = "ᅡ"
|
| 181 |
+
intervals [32]:
|
| 182 |
+
xmin = 4.2
|
| 183 |
+
xmax = 4.44
|
| 184 |
+
text = "ᄊ"
|
| 185 |
+
intervals [33]:
|
| 186 |
+
xmin = 4.44
|
| 187 |
+
xmax = 4.47
|
| 188 |
+
text = "ᅥ"
|
| 189 |
+
intervals [34]:
|
| 190 |
+
xmin = 4.47
|
| 191 |
+
xmax = 4.55
|
| 192 |
+
text = "ᄋ"
|
| 193 |
+
intervals [35]:
|
| 194 |
+
xmin = 4.55
|
| 195 |
+
xmax = 4.62
|
| 196 |
+
text = "ᅭ"
|
| 197 |
+
intervals [36]:
|
| 198 |
+
xmin = 4.62
|
| 199 |
+
xmax = 5.52
|
| 200 |
+
text = "sil"
|
preprocessed/kss_elena/TextGrid/1_0010.TextGrid
ADDED
|
@@ -0,0 +1,132 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
File type = "ooTextFile"
|
| 2 |
+
Object class = "TextGrid"
|
| 3 |
+
|
| 4 |
+
xmin = 0
|
| 5 |
+
xmax = 3.9
|
| 6 |
+
tiers? <exists>
|
| 7 |
+
size = 2
|
| 8 |
+
item []:
|
| 9 |
+
item [1]:
|
| 10 |
+
class = "IntervalTier"
|
| 11 |
+
name = "words"
|
| 12 |
+
xmin = 0
|
| 13 |
+
xmax = 3.9
|
| 14 |
+
intervals: size = 6
|
| 15 |
+
intervals [1]:
|
| 16 |
+
xmin = 0
|
| 17 |
+
xmax = 1.01
|
| 18 |
+
text = "<eps>"
|
| 19 |
+
intervals [2]:
|
| 20 |
+
xmin = 1.01
|
| 21 |
+
xmax = 1.66
|
| 22 |
+
text = "요즘"
|
| 23 |
+
intervals [3]:
|
| 24 |
+
xmin = 1.66
|
| 25 |
+
xmax = 2.59
|
| 26 |
+
text = "공부가"
|
| 27 |
+
intervals [4]:
|
| 28 |
+
xmin = 2.59
|
| 29 |
+
xmax = 2.62
|
| 30 |
+
text = "<eps>"
|
| 31 |
+
intervals [5]:
|
| 32 |
+
xmin = 2.62
|
| 33 |
+
xmax = 3.19
|
| 34 |
+
text = "안돼요"
|
| 35 |
+
intervals [6]:
|
| 36 |
+
xmin = 3.19
|
| 37 |
+
xmax = 3.9
|
| 38 |
+
text = "<eps>"
|
| 39 |
+
item [2]:
|
| 40 |
+
class = "IntervalTier"
|
| 41 |
+
name = "phones"
|
| 42 |
+
xmin = 0
|
| 43 |
+
xmax = 3.9
|
| 44 |
+
intervals: size = 22
|
| 45 |
+
intervals [1]:
|
| 46 |
+
xmin = 0
|
| 47 |
+
xmax = 1.01
|
| 48 |
+
text = "sil"
|
| 49 |
+
intervals [2]:
|
| 50 |
+
xmin = 1.01
|
| 51 |
+
xmax = 1.02
|
| 52 |
+
text = "ᄋ"
|
| 53 |
+
intervals [3]:
|
| 54 |
+
xmin = 1.02
|
| 55 |
+
xmax = 1.19
|
| 56 |
+
text = "ᅭ"
|
| 57 |
+
intervals [4]:
|
| 58 |
+
xmin = 1.19
|
| 59 |
+
xmax = 1.3
|
| 60 |
+
text = "ᄌ"
|
| 61 |
+
intervals [5]:
|
| 62 |
+
xmin = 1.3
|
| 63 |
+
xmax = 1.4
|
| 64 |
+
text = "ᅳ"
|
| 65 |
+
intervals [6]:
|
| 66 |
+
xmin = 1.4
|
| 67 |
+
xmax = 1.66
|
| 68 |
+
text = "ᆷ"
|
| 69 |
+
intervals [7]:
|
| 70 |
+
xmin = 1.66
|
| 71 |
+
xmax = 1.75
|
| 72 |
+
text = "ᄀ"
|
| 73 |
+
intervals [8]:
|
| 74 |
+
xmin = 1.75
|
| 75 |
+
xmax = 1.78
|
| 76 |
+
text = "ᅩ"
|
| 77 |
+
intervals [9]:
|
| 78 |
+
xmin = 1.78
|
| 79 |
+
xmax = 1.99
|
| 80 |
+
text = "ᆼ"
|
| 81 |
+
intervals [10]:
|
| 82 |
+
xmin = 1.99
|
| 83 |
+
xmax = 2.05
|
| 84 |
+
text = "ᄇ"
|
| 85 |
+
intervals [11]:
|
| 86 |
+
xmin = 2.05
|
| 87 |
+
xmax = 2.15
|
| 88 |
+
text = "ᅮ"
|
| 89 |
+
intervals [12]:
|
| 90 |
+
xmin = 2.15
|
| 91 |
+
xmax = 2.28
|
| 92 |
+
text = "ᄀ"
|
| 93 |
+
intervals [13]:
|
| 94 |
+
xmin = 2.28
|
| 95 |
+
xmax = 2.59
|
| 96 |
+
text = "ᅡ"
|
| 97 |
+
intervals [14]:
|
| 98 |
+
xmin = 2.59
|
| 99 |
+
xmax = 2.62
|
| 100 |
+
text = "sil"
|
| 101 |
+
intervals [15]:
|
| 102 |
+
xmin = 2.62
|
| 103 |
+
xmax = 2.63
|
| 104 |
+
text = "ᄋ"
|
| 105 |
+
intervals [16]:
|
| 106 |
+
xmin = 2.63
|
| 107 |
+
xmax = 2.68
|
| 108 |
+
text = "ᅡ"
|
| 109 |
+
intervals [17]:
|
| 110 |
+
xmin = 2.68
|
| 111 |
+
xmax = 2.86
|
| 112 |
+
text = "ᆫ"
|
| 113 |
+
intervals [18]:
|
| 114 |
+
xmin = 2.86
|
| 115 |
+
xmax = 2.91
|
| 116 |
+
text = "ᄃ"
|
| 117 |
+
intervals [19]:
|
| 118 |
+
xmin = 2.91
|
| 119 |
+
xmax = 2.96
|
| 120 |
+
text = "ᅫ"
|
| 121 |
+
intervals [20]:
|
| 122 |
+
xmin = 2.96
|
| 123 |
+
xmax = 3.06
|
| 124 |
+
text = "ᄋ"
|
| 125 |
+
intervals [21]:
|
| 126 |
+
xmin = 3.06
|
| 127 |
+
xmax = 3.19
|
| 128 |
+
text = "ᅭ"
|
| 129 |
+
intervals [22]:
|
| 130 |
+
xmin = 3.19
|
| 131 |
+
xmax = 3.9
|
| 132 |
+
text = "sil"
|
preprocessed/kss_elena/TextGrid/1_0011.TextGrid
ADDED
|
@@ -0,0 +1,152 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
File type = "ooTextFile"
|
| 2 |
+
Object class = "TextGrid"
|
| 3 |
+
|
| 4 |
+
xmin = 0
|
| 5 |
+
xmax = 4.68
|
| 6 |
+
tiers? <exists>
|
| 7 |
+
size = 2
|
| 8 |
+
item []:
|
| 9 |
+
item [1]:
|
| 10 |
+
class = "IntervalTier"
|
| 11 |
+
name = "words"
|
| 12 |
+
xmin = 0
|
| 13 |
+
xmax = 4.68
|
| 14 |
+
intervals: size = 7
|
| 15 |
+
intervals [1]:
|
| 16 |
+
xmin = 0
|
| 17 |
+
xmax = 0.95
|
| 18 |
+
text = "<eps>"
|
| 19 |
+
intervals [2]:
|
| 20 |
+
xmin = 0.95
|
| 21 |
+
xmax = 1.89
|
| 22 |
+
text = "장사가"
|
| 23 |
+
intervals [3]:
|
| 24 |
+
xmin = 1.89
|
| 25 |
+
xmax = 2.21
|
| 26 |
+
text = "잘"
|
| 27 |
+
intervals [4]:
|
| 28 |
+
xmin = 2.21
|
| 29 |
+
xmax = 3.03
|
| 30 |
+
text = "안돼서"
|
| 31 |
+
intervals [5]:
|
| 32 |
+
xmin = 3.03
|
| 33 |
+
xmax = 3.19
|
| 34 |
+
text = "<eps>"
|
| 35 |
+
intervals [6]:
|
| 36 |
+
xmin = 3.19
|
| 37 |
+
xmax = 3.77
|
| 38 |
+
text = "우울해"
|
| 39 |
+
intervals [7]:
|
| 40 |
+
xmin = 3.77
|
| 41 |
+
xmax = 4.68
|
| 42 |
+
text = "<eps>"
|
| 43 |
+
item [2]:
|
| 44 |
+
class = "IntervalTier"
|
| 45 |
+
name = "phones"
|
| 46 |
+
xmin = 0
|
| 47 |
+
xmax = 4.68
|
| 48 |
+
intervals: size = 26
|
| 49 |
+
intervals [1]:
|
| 50 |
+
xmin = 0
|
| 51 |
+
xmax = 0.95
|
| 52 |
+
text = "sil"
|
| 53 |
+
intervals [2]:
|
| 54 |
+
xmin = 0.95
|
| 55 |
+
xmax = 1.09
|
| 56 |
+
text = "ᄌ"
|
| 57 |
+
intervals [3]:
|
| 58 |
+
xmin = 1.09
|
| 59 |
+
xmax = 1.12
|
| 60 |
+
text = "ᅡ"
|
| 61 |
+
intervals [4]:
|
| 62 |
+
xmin = 1.12
|
| 63 |
+
xmax = 1.29
|
| 64 |
+
text = "ᆼ"
|
| 65 |
+
intervals [5]:
|
| 66 |
+
xmin = 1.29
|
| 67 |
+
xmax = 1.38
|
| 68 |
+
text = "ᄉ"
|
| 69 |
+
intervals [6]:
|
| 70 |
+
xmin = 1.38
|
| 71 |
+
xmax = 1.53
|
| 72 |
+
text = "ᅡ"
|
| 73 |
+
intervals [7]:
|
| 74 |
+
xmin = 1.53
|
| 75 |
+
xmax = 1.58
|
| 76 |
+
text = "ᄀ"
|
| 77 |
+
intervals [8]:
|
| 78 |
+
xmin = 1.58
|
| 79 |
+
xmax = 1.89
|
| 80 |
+
text = "ᅡ"
|
| 81 |
+
intervals [9]:
|
| 82 |
+
xmin = 1.89
|
| 83 |
+
xmax = 2.01
|
| 84 |
+
text = "ᄌ"
|
| 85 |
+
intervals [10]:
|
| 86 |
+
xmin = 2.01
|
| 87 |
+
xmax = 2.21
|
| 88 |
+
text = "ᅡ"
|
| 89 |
+
intervals [11]:
|
| 90 |
+
xmin = 2.21
|
| 91 |
+
xmax = 2.26
|
| 92 |
+
text = "ᄅ"
|
| 93 |
+
intervals [12]:
|
| 94 |
+
xmin = 2.26
|
| 95 |
+
xmax = 2.36
|
| 96 |
+
text = "ᅡ"
|
| 97 |
+
intervals [13]:
|
| 98 |
+
xmin = 2.36
|
| 99 |
+
xmax = 2.54
|
| 100 |
+
text = "ᆫ"
|
| 101 |
+
intervals [14]:
|
| 102 |
+
xmin = 2.54
|
| 103 |
+
xmax = 2.58
|
| 104 |
+
text = "ᄃ"
|
| 105 |
+
intervals [15]:
|
| 106 |
+
xmin = 2.58
|
| 107 |
+
xmax = 2.68
|
| 108 |
+
text = "ᅫ"
|
| 109 |
+
intervals [16]:
|
| 110 |
+
xmin = 2.68
|
| 111 |
+
xmax = 2.77
|
| 112 |
+
text = "ᄉ"
|
| 113 |
+
intervals [17]:
|
| 114 |
+
xmin = 2.77
|
| 115 |
+
xmax = 3.03
|
| 116 |
+
text = "ᅥ"
|
| 117 |
+
intervals [18]:
|
| 118 |
+
xmin = 3.03
|
| 119 |
+
xmax = 3.19
|
| 120 |
+
text = "sil"
|
| 121 |
+
intervals [19]:
|
| 122 |
+
xmin = 3.19
|
| 123 |
+
xmax = 3.2
|
| 124 |
+
text = "ᄋ"
|
| 125 |
+
intervals [20]:
|
| 126 |
+
xmin = 3.2
|
| 127 |
+
xmax = 3.44
|
| 128 |
+
text = "ᅮ"
|
| 129 |
+
intervals [21]:
|
| 130 |
+
xmin = 3.44
|
| 131 |
+
xmax = 3.45
|
| 132 |
+
text = "ᄋ"
|
| 133 |
+
intervals [22]:
|
| 134 |
+
xmin = 3.45
|
| 135 |
+
xmax = 3.48
|
| 136 |
+
text = "ᅮ"
|
| 137 |
+
intervals [23]:
|
| 138 |
+
xmin = 3.48
|
| 139 |
+
xmax = 3.59
|
| 140 |
+
text = "ᆯ"
|
| 141 |
+
intervals [24]:
|
| 142 |
+
xmin = 3.59
|
| 143 |
+
xmax = 3.63
|
| 144 |
+
text = "ᄒ"
|
| 145 |
+
intervals [25]:
|
| 146 |
+
xmin = 3.63
|
| 147 |
+
xmax = 3.77
|
| 148 |
+
text = "ᅢ"
|
| 149 |
+
intervals [26]:
|
| 150 |
+
xmin = 3.77
|
| 151 |
+
xmax = 4.68
|
| 152 |
+
text = "sil"
|
preprocessed/kss_elena/TextGrid/1_0012.TextGrid
ADDED
|
@@ -0,0 +1,204 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
File type = "ooTextFile"
|
| 2 |
+
Object class = "TextGrid"
|
| 3 |
+
|
| 4 |
+
xmin = 0
|
| 5 |
+
xmax = 5.82
|
| 6 |
+
tiers? <exists>
|
| 7 |
+
size = 2
|
| 8 |
+
item []:
|
| 9 |
+
item [1]:
|
| 10 |
+
class = "IntervalTier"
|
| 11 |
+
name = "words"
|
| 12 |
+
xmin = 0
|
| 13 |
+
xmax = 5.82
|
| 14 |
+
intervals: size = 9
|
| 15 |
+
intervals [1]:
|
| 16 |
+
xmin = 0
|
| 17 |
+
xmax = 0.78
|
| 18 |
+
text = "<eps>"
|
| 19 |
+
intervals [2]:
|
| 20 |
+
xmin = 0.78
|
| 21 |
+
xmax = 1.18
|
| 22 |
+
text = "아무"
|
| 23 |
+
intervals [3]:
|
| 24 |
+
xmin = 1.18
|
| 25 |
+
xmax = 1.72
|
| 26 |
+
text = "것도"
|
| 27 |
+
intervals [4]:
|
| 28 |
+
xmin = 1.72
|
| 29 |
+
xmax = 2.24
|
| 30 |
+
text = "먹지"
|
| 31 |
+
intervals [5]:
|
| 32 |
+
xmin = 2.24
|
| 33 |
+
xmax = 2.93
|
| 34 |
+
text = "않으면"
|
| 35 |
+
intervals [6]:
|
| 36 |
+
xmin = 2.93
|
| 37 |
+
xmax = 3.32
|
| 38 |
+
text = "죽게"
|
| 39 |
+
intervals [7]:
|
| 40 |
+
xmin = 3.32
|
| 41 |
+
xmax = 3.67
|
| 42 |
+
text = "되어"
|
| 43 |
+
intervals [8]:
|
| 44 |
+
xmin = 3.67
|
| 45 |
+
xmax = 4.02
|
| 46 |
+
text = "있다"
|
| 47 |
+
intervals [9]:
|
| 48 |
+
xmin = 4.02
|
| 49 |
+
xmax = 5.82
|
| 50 |
+
text = "<eps>"
|
| 51 |
+
item [2]:
|
| 52 |
+
class = "IntervalTier"
|
| 53 |
+
name = "phones"
|
| 54 |
+
xmin = 0
|
| 55 |
+
xmax = 5.82
|
| 56 |
+
intervals: size = 37
|
| 57 |
+
intervals [1]:
|
| 58 |
+
xmin = 0
|
| 59 |
+
xmax = 0.78
|
| 60 |
+
text = "sil"
|
| 61 |
+
intervals [2]:
|
| 62 |
+
xmin = 0.78
|
| 63 |
+
xmax = 0.79
|
| 64 |
+
text = "ᄋ"
|
| 65 |
+
intervals [3]:
|
| 66 |
+
xmin = 0.79
|
| 67 |
+
xmax = 0.95
|
| 68 |
+
text = "ᅡ"
|
| 69 |
+
intervals [4]:
|
| 70 |
+
xmin = 0.95
|
| 71 |
+
xmax = 1.05
|
| 72 |
+
text = "ᄆ"
|
| 73 |
+
intervals [5]:
|
| 74 |
+
xmin = 1.05
|
| 75 |
+
xmax = 1.18
|
| 76 |
+
text = "ᅮ"
|
| 77 |
+
intervals [6]:
|
| 78 |
+
xmin = 1.18
|
| 79 |
+
xmax = 1.25
|
| 80 |
+
text = "ᄀ"
|
| 81 |
+
intervals [7]:
|
| 82 |
+
xmin = 1.25
|
| 83 |
+
xmax = 1.36
|
| 84 |
+
text = "ᅥ"
|
| 85 |
+
intervals [8]:
|
| 86 |
+
xmin = 1.36
|
| 87 |
+
xmax = 1.43
|
| 88 |
+
text = "ᆮ"
|
| 89 |
+
intervals [9]:
|
| 90 |
+
xmin = 1.43
|
| 91 |
+
xmax = 1.49
|
| 92 |
+
text = "ᄄ"
|
| 93 |
+
intervals [10]:
|
| 94 |
+
xmin = 1.49
|
| 95 |
+
xmax = 1.72
|
| 96 |
+
text = "ᅩ"
|
| 97 |
+
intervals [11]:
|
| 98 |
+
xmin = 1.72
|
| 99 |
+
xmax = 1.83
|
| 100 |
+
text = "ᄆ"
|
| 101 |
+
intervals [12]:
|
| 102 |
+
xmin = 1.83
|
| 103 |
+
xmax = 1.89
|
| 104 |
+
text = "ᅥ"
|
| 105 |
+
intervals [13]:
|
| 106 |
+
xmin = 1.89
|
| 107 |
+
xmax = 2
|
| 108 |
+
text = "ᆨ"
|
| 109 |
+
intervals [14]:
|
| 110 |
+
xmin = 2
|
| 111 |
+
xmax = 2.14
|
| 112 |
+
text = "ᄍ"
|
| 113 |
+
intervals [15]:
|
| 114 |
+
xmin = 2.14
|
| 115 |
+
xmax = 2.24
|
| 116 |
+
text = "ᅵ"
|
| 117 |
+
intervals [16]:
|
| 118 |
+
xmin = 2.24
|
| 119 |
+
xmax = 2.25
|
| 120 |
+
text = "ᄋ"
|
| 121 |
+
intervals [17]:
|
| 122 |
+
xmin = 2.25
|
| 123 |
+
xmax = 2.36
|
| 124 |
+
text = "ᅡ"
|
| 125 |
+
intervals [18]:
|
| 126 |
+
xmin = 2.36
|
| 127 |
+
xmax = 2.5
|
| 128 |
+
text = "ᄂ"
|
| 129 |
+
intervals [19]:
|
| 130 |
+
xmin = 2.5
|
| 131 |
+
xmax = 2.59
|
| 132 |
+
text = "ᅳ"
|
| 133 |
+
intervals [20]:
|
| 134 |
+
xmin = 2.59
|
| 135 |
+
xmax = 2.66
|
| 136 |
+
text = "ᄆ"
|
| 137 |
+
intervals [21]:
|
| 138 |
+
xmin = 2.66
|
| 139 |
+
xmax = 2.82
|
| 140 |
+
text = "ᅧ"
|
| 141 |
+
intervals [22]:
|
| 142 |
+
xmin = 2.82
|
| 143 |
+
xmax = 2.93
|
| 144 |
+
text = "ᆫ"
|
| 145 |
+
intervals [23]:
|
| 146 |
+
xmin = 2.93
|
| 147 |
+
xmax = 3.04
|
| 148 |
+
text = "ᄌ"
|
| 149 |
+
intervals [24]:
|
| 150 |
+
xmin = 3.04
|
| 151 |
+
xmax = 3.08
|
| 152 |
+
text = "ᅮ"
|
| 153 |
+
intervals [25]:
|
| 154 |
+
xmin = 3.08
|
| 155 |
+
xmax = 3.16
|
| 156 |
+
text = "ᆨ"
|
| 157 |
+
intervals [26]:
|
| 158 |
+
xmin = 3.16
|
| 159 |
+
xmax = 3.19
|
| 160 |
+
text = "ᄁ"
|
| 161 |
+
intervals [27]:
|
| 162 |
+
xmin = 3.19
|
| 163 |
+
xmax = 3.32
|
| 164 |
+
text = "ᅦ"
|
| 165 |
+
intervals [28]:
|
| 166 |
+
xmin = 3.32
|
| 167 |
+
xmax = 3.49
|
| 168 |
+
text = "ᄃ"
|
| 169 |
+
intervals [29]:
|
| 170 |
+
xmin = 3.49
|
| 171 |
+
xmax = 3.55
|
| 172 |
+
text = "ᅬ"
|
| 173 |
+
intervals [30]:
|
| 174 |
+
xmin = 3.55
|
| 175 |
+
xmax = 3.56
|
| 176 |
+
text = "ᄋ"
|
| 177 |
+
intervals [31]:
|
| 178 |
+
xmin = 3.56
|
| 179 |
+
xmax = 3.67
|
| 180 |
+
text = "ᅥ"
|
| 181 |
+
intervals [32]:
|
| 182 |
+
xmin = 3.67
|
| 183 |
+
xmax = 3.68
|
| 184 |
+
text = "ᄋ"
|
| 185 |
+
intervals [33]:
|
| 186 |
+
xmin = 3.68
|
| 187 |
+
xmax = 3.72
|
| 188 |
+
text = "ᅵ"
|
| 189 |
+
intervals [34]:
|
| 190 |
+
xmin = 3.72
|
| 191 |
+
xmax = 3.81
|
| 192 |
+
text = "ᆮ"
|
| 193 |
+
intervals [35]:
|
| 194 |
+
xmin = 3.81
|
| 195 |
+
xmax = 3.99
|
| 196 |
+
text = "ᄄ"
|
| 197 |
+
intervals [36]:
|
| 198 |
+
xmin = 3.99
|
| 199 |
+
xmax = 4.02
|
| 200 |
+
text = "ᅡ"
|
| 201 |
+
intervals [37]:
|
| 202 |
+
xmin = 4.02
|
| 203 |
+
xmax = 5.82
|
| 204 |
+
text = "sil"
|
preprocessed/kss_elena/TextGrid/1_0013.TextGrid
ADDED
|
@@ -0,0 +1,260 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
File type = "ooTextFile"
|
| 2 |
+
Object class = "TextGrid"
|
| 3 |
+
|
| 4 |
+
xmin = 0
|
| 5 |
+
xmax = 6.78
|
| 6 |
+
tiers? <exists>
|
| 7 |
+
size = 2
|
| 8 |
+
item []:
|
| 9 |
+
item [1]:
|
| 10 |
+
class = "IntervalTier"
|
| 11 |
+
name = "words"
|
| 12 |
+
xmin = 0
|
| 13 |
+
xmax = 6.78
|
| 14 |
+
intervals: size = 13
|
| 15 |
+
intervals [1]:
|
| 16 |
+
xmin = 0
|
| 17 |
+
xmax = 0.9
|
| 18 |
+
text = "<eps>"
|
| 19 |
+
intervals [2]:
|
| 20 |
+
xmin = 0.9
|
| 21 |
+
xmax = 1.64
|
| 22 |
+
text = "그녀는"
|
| 23 |
+
intervals [3]:
|
| 24 |
+
xmin = 1.64
|
| 25 |
+
xmax = 1.85
|
| 26 |
+
text = "<eps>"
|
| 27 |
+
intervals [4]:
|
| 28 |
+
xmin = 1.85
|
| 29 |
+
xmax = 2.47
|
| 30 |
+
text = "이유를"
|
| 31 |
+
intervals [5]:
|
| 32 |
+
xmin = 2.47
|
| 33 |
+
xmax = 2.83
|
| 34 |
+
text = "묻지"
|
| 35 |
+
intervals [6]:
|
| 36 |
+
xmin = 2.83
|
| 37 |
+
xmax = 3.33
|
| 38 |
+
text = "않고"
|
| 39 |
+
intervals [7]:
|
| 40 |
+
xmin = 3.33
|
| 41 |
+
xmax = 3.91
|
| 42 |
+
text = "<eps>"
|
| 43 |
+
intervals [8]:
|
| 44 |
+
xmin = 3.91
|
| 45 |
+
xmax = 4.55
|
| 46 |
+
text = "돈을"
|
| 47 |
+
intervals [9]:
|
| 48 |
+
xmin = 4.55
|
| 49 |
+
xmax = 4.65
|
| 50 |
+
text = "<eps>"
|
| 51 |
+
intervals [10]:
|
| 52 |
+
xmin = 4.65
|
| 53 |
+
xmax = 5.1
|
| 54 |
+
text = "빌려"
|
| 55 |
+
intervals [11]:
|
| 56 |
+
xmin = 5.1
|
| 57 |
+
xmax = 5.17
|
| 58 |
+
text = "<eps>"
|
| 59 |
+
intervals [12]:
|
| 60 |
+
xmin = 5.17
|
| 61 |
+
xmax = 5.69
|
| 62 |
+
text = "주었다"
|
| 63 |
+
intervals [13]:
|
| 64 |
+
xmin = 5.69
|
| 65 |
+
xmax = 6.78
|
| 66 |
+
text = "<eps>"
|
| 67 |
+
item [2]:
|
| 68 |
+
class = "IntervalTier"
|
| 69 |
+
name = "phones"
|
| 70 |
+
xmin = 0
|
| 71 |
+
xmax = 6.78
|
| 72 |
+
intervals: size = 47
|
| 73 |
+
intervals [1]:
|
| 74 |
+
xmin = 0
|
| 75 |
+
xmax = 0.9
|
| 76 |
+
text = "sil"
|
| 77 |
+
intervals [2]:
|
| 78 |
+
xmin = 0.9
|
| 79 |
+
xmax = 0.93
|
| 80 |
+
text = "ᄀ"
|
| 81 |
+
intervals [3]:
|
| 82 |
+
xmin = 0.93
|
| 83 |
+
xmax = 1.08
|
| 84 |
+
text = "ᅳ"
|
| 85 |
+
intervals [4]:
|
| 86 |
+
xmin = 1.08
|
| 87 |
+
xmax = 1.24
|
| 88 |
+
text = "ᄂ"
|
| 89 |
+
intervals [5]:
|
| 90 |
+
xmin = 1.24
|
| 91 |
+
xmax = 1.28
|
| 92 |
+
text = "ᅧ"
|
| 93 |
+
intervals [6]:
|
| 94 |
+
xmin = 1.28
|
| 95 |
+
xmax = 1.57
|
| 96 |
+
text = "ᄂ"
|
| 97 |
+
intervals [7]:
|
| 98 |
+
xmin = 1.57
|
| 99 |
+
xmax = 1.61
|
| 100 |
+
text = "ᅳ"
|
| 101 |
+
intervals [8]:
|
| 102 |
+
xmin = 1.61
|
| 103 |
+
xmax = 1.64
|
| 104 |
+
text = "ᆫ"
|
| 105 |
+
intervals [9]:
|
| 106 |
+
xmin = 1.64
|
| 107 |
+
xmax = 1.85
|
| 108 |
+
text = "sil"
|
| 109 |
+
intervals [10]:
|
| 110 |
+
xmin = 1.85
|
| 111 |
+
xmax = 1.88
|
| 112 |
+
text = "ᄂ"
|
| 113 |
+
intervals [11]:
|
| 114 |
+
xmin = 1.88
|
| 115 |
+
xmax = 2.07
|
| 116 |
+
text = "ᅵ"
|
| 117 |
+
intervals [12]:
|
| 118 |
+
xmin = 2.07
|
| 119 |
+
xmax = 2.08
|
| 120 |
+
text = "ᄋ"
|
| 121 |
+
intervals [13]:
|
| 122 |
+
xmin = 2.08
|
| 123 |
+
xmax = 2.23
|
| 124 |
+
text = "ᅲ"
|
| 125 |
+
intervals [14]:
|
| 126 |
+
xmin = 2.23
|
| 127 |
+
xmax = 2.26
|
| 128 |
+
text = "ᄅ"
|
| 129 |
+
intervals [15]:
|
| 130 |
+
xmin = 2.26
|
| 131 |
+
xmax = 2.3
|
| 132 |
+
text = "ᅳ"
|
| 133 |
+
intervals [16]:
|
| 134 |
+
xmin = 2.3
|
| 135 |
+
xmax = 2.47
|
| 136 |
+
text = "ᆯ"
|
| 137 |
+
intervals [17]:
|
| 138 |
+
xmin = 2.47
|
| 139 |
+
xmax = 2.54
|
| 140 |
+
text = "ᄆ"
|
| 141 |
+
intervals [18]:
|
| 142 |
+
xmin = 2.54
|
| 143 |
+
xmax = 2.62
|
| 144 |
+
text = "ᅮ"
|
| 145 |
+
intervals [19]:
|
| 146 |
+
xmin = 2.62
|
| 147 |
+
xmax = 2.67
|
| 148 |
+
text = "ᆮ"
|
| 149 |
+
intervals [20]:
|
| 150 |
+
xmin = 2.67
|
| 151 |
+
xmax = 2.77
|
| 152 |
+
text = "ᄍ"
|
| 153 |
+
intervals [21]:
|
| 154 |
+
xmin = 2.77
|
| 155 |
+
xmax = 2.83
|
| 156 |
+
text = "ᅵ"
|
| 157 |
+
intervals [22]:
|
| 158 |
+
xmin = 2.83
|
| 159 |
+
xmax = 2.84
|
| 160 |
+
text = "ᄋ"
|
| 161 |
+
intervals [23]:
|
| 162 |
+
xmin = 2.84
|
| 163 |
+
xmax = 2.91
|
| 164 |
+
text = "ᅡ"
|
| 165 |
+
intervals [24]:
|
| 166 |
+
xmin = 2.91
|
| 167 |
+
xmax = 3.04
|
| 168 |
+
text = "ᆫ"
|
| 169 |
+
intervals [25]:
|
| 170 |
+
xmin = 3.04
|
| 171 |
+
xmax = 3.15
|
| 172 |
+
text = "ᄏ"
|
| 173 |
+
intervals [26]:
|
| 174 |
+
xmin = 3.15
|
| 175 |
+
xmax = 3.33
|
| 176 |
+
text = "ᅩ"
|
| 177 |
+
intervals [27]:
|
| 178 |
+
xmin = 3.33
|
| 179 |
+
xmax = 3.91
|
| 180 |
+
text = "sil"
|
| 181 |
+
intervals [28]:
|
| 182 |
+
xmin = 3.91
|
| 183 |
+
xmax = 3.99
|
| 184 |
+
text = "ᄃ"
|
| 185 |
+
intervals [29]:
|
| 186 |
+
xmin = 3.99
|
| 187 |
+
xmax = 4.11
|
| 188 |
+
text = "ᅩ"
|
| 189 |
+
intervals [30]:
|
| 190 |
+
xmin = 4.11
|
| 191 |
+
xmax = 4.25
|
| 192 |
+
text = "ᄂ"
|
| 193 |
+
intervals [31]:
|
| 194 |
+
xmin = 4.25
|
| 195 |
+
xmax = 4.31
|
| 196 |
+
text = "ᅳ"
|
| 197 |
+
intervals [32]:
|
| 198 |
+
xmin = 4.31
|
| 199 |
+
xmax = 4.55
|
| 200 |
+
text = "ᆯ"
|
| 201 |
+
intervals [33]:
|
| 202 |
+
xmin = 4.55
|
| 203 |
+
xmax = 4.65
|
| 204 |
+
text = "sil"
|
| 205 |
+
intervals [34]:
|
| 206 |
+
xmin = 4.65
|
| 207 |
+
xmax = 4.77
|
| 208 |
+
text = "ᄇ"
|
| 209 |
+
intervals [35]:
|
| 210 |
+
xmin = 4.77
|
| 211 |
+
xmax = 4.82
|
| 212 |
+
text = "ᅵ"
|
| 213 |
+
intervals [36]:
|
| 214 |
+
xmin = 4.82
|
| 215 |
+
xmax = 4.86
|
| 216 |
+
text = "ᆯ"
|
| 217 |
+
intervals [37]:
|
| 218 |
+
xmin = 4.86
|
| 219 |
+
xmax = 4.89
|
| 220 |
+
text = "ᄅ"
|
| 221 |
+
intervals [38]:
|
| 222 |
+
xmin = 4.89
|
| 223 |
+
xmax = 5.1
|
| 224 |
+
text = "ᅧ"
|
| 225 |
+
intervals [39]:
|
| 226 |
+
xmin = 5.1
|
| 227 |
+
xmax = 5.17
|
| 228 |
+
text = "sil"
|
| 229 |
+
intervals [40]:
|
| 230 |
+
xmin = 5.17
|
| 231 |
+
xmax = 5.25
|
| 232 |
+
text = "ᄌ"
|
| 233 |
+
intervals [41]:
|
| 234 |
+
xmin = 5.25
|
| 235 |
+
xmax = 5.29
|
| 236 |
+
text = "ᅮ"
|
| 237 |
+
intervals [42]:
|
| 238 |
+
xmin = 5.29
|
| 239 |
+
xmax = 5.3
|
| 240 |
+
text = "ᄋ"
|
| 241 |
+
intervals [43]:
|
| 242 |
+
xmin = 5.3
|
| 243 |
+
xmax = 5.41
|
| 244 |
+
text = "ᅥ"
|
| 245 |
+
intervals [44]:
|
| 246 |
+
xmin = 5.41
|
| 247 |
+
xmax = 5.46
|
| 248 |
+
text = "ᆮ"
|
| 249 |
+
intervals [45]:
|
| 250 |
+
xmin = 5.46
|
| 251 |
+
xmax = 5.66
|
| 252 |
+
text = "ᄄ"
|
| 253 |
+
intervals [46]:
|
| 254 |
+
xmin = 5.66
|
| 255 |
+
xmax = 5.69
|
| 256 |
+
text = "ᅡ"
|
| 257 |
+
intervals [47]:
|
| 258 |
+
xmin = 5.69
|
| 259 |
+
xmax = 6.78
|
| 260 |
+
text = "sil"
|
preprocessed/kss_elena/TextGrid/1_0014.TextGrid
ADDED
|
@@ -0,0 +1,148 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
File type = "ooTextFile"
|
| 2 |
+
Object class = "TextGrid"
|
| 3 |
+
|
| 4 |
+
xmin = 0
|
| 5 |
+
xmax = 4.62
|
| 6 |
+
tiers? <exists>
|
| 7 |
+
size = 2
|
| 8 |
+
item []:
|
| 9 |
+
item [1]:
|
| 10 |
+
class = "IntervalTier"
|
| 11 |
+
name = "words"
|
| 12 |
+
xmin = 0
|
| 13 |
+
xmax = 4.62
|
| 14 |
+
intervals: size = 7
|
| 15 |
+
intervals [1]:
|
| 16 |
+
xmin = 0
|
| 17 |
+
xmax = 0.99
|
| 18 |
+
text = "<eps>"
|
| 19 |
+
intervals [2]:
|
| 20 |
+
xmin = 0.99
|
| 21 |
+
xmax = 1.24
|
| 22 |
+
text = "내가"
|
| 23 |
+
intervals [3]:
|
| 24 |
+
xmin = 1.24
|
| 25 |
+
xmax = 2.15
|
| 26 |
+
text = "아기를"
|
| 27 |
+
intervals [4]:
|
| 28 |
+
xmin = 2.15
|
| 29 |
+
xmax = 2.36
|
| 30 |
+
text = "<eps>"
|
| 31 |
+
intervals [5]:
|
| 32 |
+
xmin = 2.36
|
| 33 |
+
xmax = 2.93
|
| 34 |
+
text = "안고"
|
| 35 |
+
intervals [6]:
|
| 36 |
+
xmin = 2.93
|
| 37 |
+
xmax = 3.79
|
| 38 |
+
text = "있을게"
|
| 39 |
+
intervals [7]:
|
| 40 |
+
xmin = 3.79
|
| 41 |
+
xmax = 4.62
|
| 42 |
+
text = "<eps>"
|
| 43 |
+
item [2]:
|
| 44 |
+
class = "IntervalTier"
|
| 45 |
+
name = "phones"
|
| 46 |
+
xmin = 0
|
| 47 |
+
xmax = 4.62
|
| 48 |
+
intervals: size = 25
|
| 49 |
+
intervals [1]:
|
| 50 |
+
xmin = 0
|
| 51 |
+
xmax = 0.99
|
| 52 |
+
text = "sil"
|
| 53 |
+
intervals [2]:
|
| 54 |
+
xmin = 0.99
|
| 55 |
+
xmax = 1.03
|
| 56 |
+
text = "ᄂ"
|
| 57 |
+
intervals [3]:
|
| 58 |
+
xmin = 1.03
|
| 59 |
+
xmax = 1.11
|
| 60 |
+
text = "ᅢ"
|
| 61 |
+
intervals [4]:
|
| 62 |
+
xmin = 1.11
|
| 63 |
+
xmax = 1.18
|
| 64 |
+
text = "ᄀ"
|
| 65 |
+
intervals [5]:
|
| 66 |
+
xmin = 1.18
|
| 67 |
+
xmax = 1.24
|
| 68 |
+
text = "ᅡ"
|
| 69 |
+
intervals [6]:
|
| 70 |
+
xmin = 1.24
|
| 71 |
+
xmax = 1.25
|
| 72 |
+
text = "ᄋ"
|
| 73 |
+
intervals [7]:
|
| 74 |
+
xmin = 1.25
|
| 75 |
+
xmax = 1.43
|
| 76 |
+
text = "ᅡ"
|
| 77 |
+
intervals [8]:
|
| 78 |
+
xmin = 1.43
|
| 79 |
+
xmax = 1.62
|
| 80 |
+
text = "ᄀ"
|
| 81 |
+
intervals [9]:
|
| 82 |
+
xmin = 1.62
|
| 83 |
+
xmax = 1.75
|
| 84 |
+
text = "ᅵ"
|
| 85 |
+
intervals [10]:
|
| 86 |
+
xmin = 1.75
|
| 87 |
+
xmax = 1.79
|
| 88 |
+
text = "ᄅ"
|
| 89 |
+
intervals [11]:
|
| 90 |
+
xmin = 1.79
|
| 91 |
+
xmax = 2.15
|
| 92 |
+
text = "ᅳ"
|
| 93 |
+
intervals [12]:
|
| 94 |
+
xmin = 2.15
|
| 95 |
+
xmax = 2.36
|
| 96 |
+
text = "sil"
|
| 97 |
+
intervals [13]:
|
| 98 |
+
xmin = 2.36
|
| 99 |
+
xmax = 2.39
|
| 100 |
+
text = "ᄅ"
|
| 101 |
+
intervals [14]:
|
| 102 |
+
xmin = 2.39
|
| 103 |
+
xmax = 2.49
|
| 104 |
+
text = "ᅡ"
|
| 105 |
+
intervals [15]:
|
| 106 |
+
xmin = 2.49
|
| 107 |
+
xmax = 2.67
|
| 108 |
+
text = "ᆫ"
|
| 109 |
+
intervals [16]:
|
| 110 |
+
xmin = 2.67
|
| 111 |
+
xmax = 2.78
|
| 112 |
+
text = "ᄁ"
|
| 113 |
+
intervals [17]:
|
| 114 |
+
xmin = 2.78
|
| 115 |
+
xmax = 2.93
|
| 116 |
+
text = "ᅩ"
|
| 117 |
+
intervals [18]:
|
| 118 |
+
xmin = 2.93
|
| 119 |
+
xmax = 2.94
|
| 120 |
+
text = "ᄋ"
|
| 121 |
+
intervals [19]:
|
| 122 |
+
xmin = 2.94
|
| 123 |
+
xmax = 3.13
|
| 124 |
+
text = "ᅵ"
|
| 125 |
+
intervals [20]:
|
| 126 |
+
xmin = 3.13
|
| 127 |
+
xmax = 3.35
|
| 128 |
+
text = "ᄊ"
|
| 129 |
+
intervals [21]:
|
| 130 |
+
xmin = 3.35
|
| 131 |
+
xmax = 3.38
|
| 132 |
+
text = "ᅳ"
|
| 133 |
+
intervals [22]:
|
| 134 |
+
xmin = 3.38
|
| 135 |
+
xmax = 3.47
|
| 136 |
+
text = "ᆯ"
|
| 137 |
+
intervals [23]:
|
| 138 |
+
xmin = 3.47
|
| 139 |
+
xmax = 3.66
|
| 140 |
+
text = "ᄀ"
|
| 141 |
+
intervals [24]:
|
| 142 |
+
xmin = 3.66
|
| 143 |
+
xmax = 3.79
|
| 144 |
+
text = "ᅦ"
|
| 145 |
+
intervals [25]:
|
| 146 |
+
xmin = 3.79
|
| 147 |
+
xmax = 4.62
|
| 148 |
+
text = "sil"
|
preprocessed/kss_elena/TextGrid/1_0015.TextGrid
ADDED
|
@@ -0,0 +1,208 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
File type = "ooTextFile"
|
| 2 |
+
Object class = "TextGrid"
|
| 3 |
+
|
| 4 |
+
xmin = 0
|
| 5 |
+
xmax = 5.88
|
| 6 |
+
tiers? <exists>
|
| 7 |
+
size = 2
|
| 8 |
+
item []:
|
| 9 |
+
item [1]:
|
| 10 |
+
class = "IntervalTier"
|
| 11 |
+
name = "words"
|
| 12 |
+
xmin = 0
|
| 13 |
+
xmax = 5.88
|
| 14 |
+
intervals: size = 10
|
| 15 |
+
intervals [1]:
|
| 16 |
+
xmin = 0
|
| 17 |
+
xmax = 0.82
|
| 18 |
+
text = "<eps>"
|
| 19 |
+
intervals [2]:
|
| 20 |
+
xmin = 0.82
|
| 21 |
+
xmax = 1.72
|
| 22 |
+
text = "엄마는"
|
| 23 |
+
intervals [3]:
|
| 24 |
+
xmin = 1.72
|
| 25 |
+
xmax = 2.72
|
| 26 |
+
text = "말없이"
|
| 27 |
+
intervals [4]:
|
| 28 |
+
xmin = 2.72
|
| 29 |
+
xmax = 3.18
|
| 30 |
+
text = "나를"
|
| 31 |
+
intervals [5]:
|
| 32 |
+
xmin = 3.18
|
| 33 |
+
xmax = 3.46
|
| 34 |
+
text = "꼭"
|
| 35 |
+
intervals [6]:
|
| 36 |
+
xmin = 3.46
|
| 37 |
+
xmax = 3.7
|
| 38 |
+
text = "<eps>"
|
| 39 |
+
intervals [7]:
|
| 40 |
+
xmin = 3.7
|
| 41 |
+
xmax = 4.32
|
| 42 |
+
text = "안아"
|
| 43 |
+
intervals [8]:
|
| 44 |
+
xmin = 4.32
|
| 45 |
+
xmax = 4.48
|
| 46 |
+
text = "<eps>"
|
| 47 |
+
intervals [9]:
|
| 48 |
+
xmin = 4.48
|
| 49 |
+
xmax = 5.13
|
| 50 |
+
text = "주셨다"
|
| 51 |
+
intervals [10]:
|
| 52 |
+
xmin = 5.13
|
| 53 |
+
xmax = 5.88
|
| 54 |
+
text = "<eps>"
|
| 55 |
+
item [2]:
|
| 56 |
+
class = "IntervalTier"
|
| 57 |
+
name = "phones"
|
| 58 |
+
xmin = 0
|
| 59 |
+
xmax = 5.88
|
| 60 |
+
intervals: size = 37
|
| 61 |
+
intervals [1]:
|
| 62 |
+
xmin = 0
|
| 63 |
+
xmax = 0.82
|
| 64 |
+
text = "sil"
|
| 65 |
+
intervals [2]:
|
| 66 |
+
xmin = 0.82
|
| 67 |
+
xmax = 0.83
|
| 68 |
+
text = "ᄋ"
|
| 69 |
+
intervals [3]:
|
| 70 |
+
xmin = 0.83
|
| 71 |
+
xmax = 0.9
|
| 72 |
+
text = "ᅥ"
|
| 73 |
+
intervals [4]:
|
| 74 |
+
xmin = 0.9
|
| 75 |
+
xmax = 0.93
|
| 76 |
+
text = "ᆷ"
|
| 77 |
+
intervals [5]:
|
| 78 |
+
xmin = 0.93
|
| 79 |
+
xmax = 1.17
|
| 80 |
+
text = "ᄆ"
|
| 81 |
+
intervals [6]:
|
| 82 |
+
xmin = 1.17
|
| 83 |
+
xmax = 1.33
|
| 84 |
+
text = "ᅡ"
|
| 85 |
+
intervals [7]:
|
| 86 |
+
xmin = 1.33
|
| 87 |
+
xmax = 1.59
|
| 88 |
+
text = "ᄂ"
|
| 89 |
+
intervals [8]:
|
| 90 |
+
xmin = 1.59
|
| 91 |
+
xmax = 1.68
|
| 92 |
+
text = "ᅳ"
|
| 93 |
+
intervals [9]:
|
| 94 |
+
xmin = 1.68
|
| 95 |
+
xmax = 1.72
|
| 96 |
+
text = "ᆫ"
|
| 97 |
+
intervals [10]:
|
| 98 |
+
xmin = 1.72
|
| 99 |
+
xmax = 1.84
|
| 100 |
+
text = "ᄆ"
|
| 101 |
+
intervals [11]:
|
| 102 |
+
xmin = 1.84
|
| 103 |
+
xmax = 1.95
|
| 104 |
+
text = "ᅡ"
|
| 105 |
+
intervals [12]:
|
| 106 |
+
xmin = 1.95
|
| 107 |
+
xmax = 2.06
|
| 108 |
+
text = "ᄅ"
|
| 109 |
+
intervals [13]:
|
| 110 |
+
xmin = 2.06
|
| 111 |
+
xmax = 2.14
|
| 112 |
+
text = "ᅥ"
|
| 113 |
+
intervals [14]:
|
| 114 |
+
xmin = 2.14
|
| 115 |
+
xmax = 2.29
|
| 116 |
+
text = "ᆸ"
|
| 117 |
+
intervals [15]:
|
| 118 |
+
xmin = 2.29
|
| 119 |
+
xmax = 2.48
|
| 120 |
+
text = "ᄊ"
|
| 121 |
+
intervals [16]:
|
| 122 |
+
xmin = 2.48
|
| 123 |
+
xmax = 2.72
|
| 124 |
+
text = "ᅵ"
|
| 125 |
+
intervals [17]:
|
| 126 |
+
xmin = 2.72
|
| 127 |
+
xmax = 2.8
|
| 128 |
+
text = "ᄂ"
|
| 129 |
+
intervals [18]:
|
| 130 |
+
xmin = 2.8
|
| 131 |
+
xmax = 3
|
| 132 |
+
text = "ᅡ"
|
| 133 |
+
intervals [19]:
|
| 134 |
+
xmin = 3
|
| 135 |
+
xmax = 3.03
|
| 136 |
+
text = "ᄅ"
|
| 137 |
+
intervals [20]:
|
| 138 |
+
xmin = 3.03
|
| 139 |
+
xmax = 3.06
|
| 140 |
+
text = "ᅳ"
|
| 141 |
+
intervals [21]:
|
| 142 |
+
xmin = 3.06
|
| 143 |
+
xmax = 3.18
|
| 144 |
+
text = "ᆯ"
|
| 145 |
+
intervals [22]:
|
| 146 |
+
xmin = 3.18
|
| 147 |
+
xmax = 3.34
|
| 148 |
+
text = "ᄁ"
|
| 149 |
+
intervals [23]:
|
| 150 |
+
xmin = 3.34
|
| 151 |
+
xmax = 3.46
|
| 152 |
+
text = "ᅩ"
|
| 153 |
+
intervals [24]:
|
| 154 |
+
xmin = 3.46
|
| 155 |
+
xmax = 3.7
|
| 156 |
+
text = "sil"
|
| 157 |
+
intervals [25]:
|
| 158 |
+
xmin = 3.7
|
| 159 |
+
xmax = 3.73
|
| 160 |
+
text = "ᄀ"
|
| 161 |
+
intervals [26]:
|
| 162 |
+
xmin = 3.73
|
| 163 |
+
xmax = 3.92
|
| 164 |
+
text = "ᅡ"
|
| 165 |
+
intervals [27]:
|
| 166 |
+
xmin = 3.92
|
| 167 |
+
xmax = 4.01
|
| 168 |
+
text = "ᄂ"
|
| 169 |
+
intervals [28]:
|
| 170 |
+
xmin = 4.01
|
| 171 |
+
xmax = 4.32
|
| 172 |
+
text = "ᅡ"
|
| 173 |
+
intervals [29]:
|
| 174 |
+
xmin = 4.32
|
| 175 |
+
xmax = 4.48
|
| 176 |
+
text = "sil"
|
| 177 |
+
intervals [30]:
|
| 178 |
+
xmin = 4.48
|
| 179 |
+
xmax = 4.57
|
| 180 |
+
text = "ᄌ"
|
| 181 |
+
intervals [31]:
|
| 182 |
+
xmin = 4.57
|
| 183 |
+
xmax = 4.6
|
| 184 |
+
text = "ᅮ"
|
| 185 |
+
intervals [32]:
|
| 186 |
+
xmin = 4.6
|
| 187 |
+
xmax = 4.76
|
| 188 |
+
text = "ᄉ"
|
| 189 |
+
intervals [33]:
|
| 190 |
+
xmin = 4.76
|
| 191 |
+
xmax = 4.83
|
| 192 |
+
text = "ᅧ"
|
| 193 |
+
intervals [34]:
|
| 194 |
+
xmin = 4.83
|
| 195 |
+
xmax = 4.88
|
| 196 |
+
text = "ᆮ"
|
| 197 |
+
intervals [35]:
|
| 198 |
+
xmin = 4.88
|
| 199 |
+
xmax = 5.09
|
| 200 |
+
text = "ᄄ"
|
| 201 |
+
intervals [36]:
|
| 202 |
+
xmin = 5.09
|
| 203 |
+
xmax = 5.13
|
| 204 |
+
text = "ᅡ"
|
| 205 |
+
intervals [37]:
|
| 206 |
+
xmin = 5.13
|
| 207 |
+
xmax = 5.88
|
| 208 |
+
text = "sil"
|
preprocessed/kss_elena/TextGrid/1_0016.TextGrid
ADDED
|
@@ -0,0 +1,104 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
File type = "ooTextFile"
|
| 2 |
+
Object class = "TextGrid"
|
| 3 |
+
|
| 4 |
+
xmin = 0
|
| 5 |
+
xmax = 2.94
|
| 6 |
+
tiers? <exists>
|
| 7 |
+
size = 2
|
| 8 |
+
item []:
|
| 9 |
+
item [1]:
|
| 10 |
+
class = "IntervalTier"
|
| 11 |
+
name = "words"
|
| 12 |
+
xmin = 0
|
| 13 |
+
xmax = 2.94
|
| 14 |
+
intervals: size = 4
|
| 15 |
+
intervals [1]:
|
| 16 |
+
xmin = 0
|
| 17 |
+
xmax = 0.77
|
| 18 |
+
text = "<eps>"
|
| 19 |
+
intervals [2]:
|
| 20 |
+
xmin = 0.77
|
| 21 |
+
xmax = 1.32
|
| 22 |
+
text = "자리에"
|
| 23 |
+
intervals [3]:
|
| 24 |
+
xmin = 1.32
|
| 25 |
+
xmax = 2.03
|
| 26 |
+
text = "앉으세요"
|
| 27 |
+
intervals [4]:
|
| 28 |
+
xmin = 2.03
|
| 29 |
+
xmax = 2.94
|
| 30 |
+
text = "<eps>"
|
| 31 |
+
item [2]:
|
| 32 |
+
class = "IntervalTier"
|
| 33 |
+
name = "phones"
|
| 34 |
+
xmin = 0
|
| 35 |
+
xmax = 2.94
|
| 36 |
+
intervals: size = 17
|
| 37 |
+
intervals [1]:
|
| 38 |
+
xmin = 0
|
| 39 |
+
xmax = 0.77
|
| 40 |
+
text = "sil"
|
| 41 |
+
intervals [2]:
|
| 42 |
+
xmin = 0.77
|
| 43 |
+
xmax = 0.88
|
| 44 |
+
text = "ᄌ"
|
| 45 |
+
intervals [3]:
|
| 46 |
+
xmin = 0.88
|
| 47 |
+
xmax = 0.97
|
| 48 |
+
text = "ᅡ"
|
| 49 |
+
intervals [4]:
|
| 50 |
+
xmin = 0.97
|
| 51 |
+
xmax = 1.03
|
| 52 |
+
text = "ᄅ"
|
| 53 |
+
intervals [5]:
|
| 54 |
+
xmin = 1.03
|
| 55 |
+
xmax = 1.06
|
| 56 |
+
text = "ᅵ"
|
| 57 |
+
intervals [6]:
|
| 58 |
+
xmin = 1.06
|
| 59 |
+
xmax = 1.07
|
| 60 |
+
text = "ᄋ"
|
| 61 |
+
intervals [7]:
|
| 62 |
+
xmin = 1.07
|
| 63 |
+
xmax = 1.32
|
| 64 |
+
text = "ᅦ"
|
| 65 |
+
intervals [8]:
|
| 66 |
+
xmin = 1.32
|
| 67 |
+
xmax = 1.33
|
| 68 |
+
text = "ᄋ"
|
| 69 |
+
intervals [9]:
|
| 70 |
+
xmin = 1.33
|
| 71 |
+
xmax = 1.45
|
| 72 |
+
text = "ᅡ"
|
| 73 |
+
intervals [10]:
|
| 74 |
+
xmin = 1.45
|
| 75 |
+
xmax = 1.54
|
| 76 |
+
text = "ᆫ"
|
| 77 |
+
intervals [11]:
|
| 78 |
+
xmin = 1.54
|
| 79 |
+
xmax = 1.67
|
| 80 |
+
text = "ᄌ"
|
| 81 |
+
intervals [12]:
|
| 82 |
+
xmin = 1.67
|
| 83 |
+
xmax = 1.73
|
| 84 |
+
text = "ᅳ"
|
| 85 |
+
intervals [13]:
|
| 86 |
+
xmin = 1.73
|
| 87 |
+
xmax = 1.82
|
| 88 |
+
text = "ᄉ"
|
| 89 |
+
intervals [14]:
|
| 90 |
+
xmin = 1.82
|
| 91 |
+
xmax = 1.93
|
| 92 |
+
text = "ᅦ"
|
| 93 |
+
intervals [15]:
|
| 94 |
+
xmin = 1.93
|
| 95 |
+
xmax = 1.94
|
| 96 |
+
text = "ᄋ"
|
| 97 |
+
intervals [16]:
|
| 98 |
+
xmin = 1.94
|
| 99 |
+
xmax = 2.03
|
| 100 |
+
text = "ᅭ"
|
| 101 |
+
intervals [17]:
|
| 102 |
+
xmin = 2.03
|
| 103 |
+
xmax = 2.94
|
| 104 |
+
text = "sil"
|
preprocessed/kss_elena/TextGrid/1_0017.TextGrid
ADDED
|
@@ -0,0 +1,156 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
File type = "ooTextFile"
|
| 2 |
+
Object class = "TextGrid"
|
| 3 |
+
|
| 4 |
+
xmin = 0
|
| 5 |
+
xmax = 4.38
|
| 6 |
+
tiers? <exists>
|
| 7 |
+
size = 2
|
| 8 |
+
item []:
|
| 9 |
+
item [1]:
|
| 10 |
+
class = "IntervalTier"
|
| 11 |
+
name = "words"
|
| 12 |
+
xmin = 0
|
| 13 |
+
xmax = 4.38
|
| 14 |
+
intervals: size = 8
|
| 15 |
+
intervals [1]:
|
| 16 |
+
xmin = 0
|
| 17 |
+
xmax = 0.72
|
| 18 |
+
text = "<eps>"
|
| 19 |
+
intervals [2]:
|
| 20 |
+
xmin = 0.72
|
| 21 |
+
xmax = 1.06
|
| 22 |
+
text = "한"
|
| 23 |
+
intervals [3]:
|
| 24 |
+
xmin = 1.06
|
| 25 |
+
xmax = 1.85
|
| 26 |
+
text = "여자가"
|
| 27 |
+
intervals [4]:
|
| 28 |
+
xmin = 1.85
|
| 29 |
+
xmax = 2.07
|
| 30 |
+
text = "내"
|
| 31 |
+
intervals [5]:
|
| 32 |
+
xmin = 2.07
|
| 33 |
+
xmax = 2.68
|
| 34 |
+
text = "옆에"
|
| 35 |
+
intervals [6]:
|
| 36 |
+
xmin = 2.68
|
| 37 |
+
xmax = 2.77
|
| 38 |
+
text = "<eps>"
|
| 39 |
+
intervals [7]:
|
| 40 |
+
xmin = 2.77
|
| 41 |
+
xmax = 3.43
|
| 42 |
+
text = "앉았다"
|
| 43 |
+
intervals [8]:
|
| 44 |
+
xmin = 3.43
|
| 45 |
+
xmax = 4.38
|
| 46 |
+
text = "<eps>"
|
| 47 |
+
item [2]:
|
| 48 |
+
class = "IntervalTier"
|
| 49 |
+
name = "phones"
|
| 50 |
+
xmin = 0
|
| 51 |
+
xmax = 4.38
|
| 52 |
+
intervals: size = 26
|
| 53 |
+
intervals [1]:
|
| 54 |
+
xmin = 0
|
| 55 |
+
xmax = 0.72
|
| 56 |
+
text = "sil"
|
| 57 |
+
intervals [2]:
|
| 58 |
+
xmin = 0.72
|
| 59 |
+
xmax = 0.83
|
| 60 |
+
text = "ᄒ"
|
| 61 |
+
intervals [3]:
|
| 62 |
+
xmin = 0.83
|
| 63 |
+
xmax = 0.92
|
| 64 |
+
text = "ᅡ"
|
| 65 |
+
intervals [4]:
|
| 66 |
+
xmin = 0.92
|
| 67 |
+
xmax = 1.06
|
| 68 |
+
text = "ᆫ"
|
| 69 |
+
intervals [5]:
|
| 70 |
+
xmin = 1.06
|
| 71 |
+
xmax = 1.07
|
| 72 |
+
text = "ᄋ"
|
| 73 |
+
intervals [6]:
|
| 74 |
+
xmin = 1.07
|
| 75 |
+
xmax = 1.23
|
| 76 |
+
text = "ᅧ"
|
| 77 |
+
intervals [7]:
|
| 78 |
+
xmin = 1.23
|
| 79 |
+
xmax = 1.33
|
| 80 |
+
text = "ᄌ"
|
| 81 |
+
intervals [8]:
|
| 82 |
+
xmin = 1.33
|
| 83 |
+
xmax = 1.51
|
| 84 |
+
text = "ᅡ"
|
| 85 |
+
intervals [9]:
|
| 86 |
+
xmin = 1.51
|
| 87 |
+
xmax = 1.62
|
| 88 |
+
text = "ᄀ"
|
| 89 |
+
intervals [10]:
|
| 90 |
+
xmin = 1.62
|
| 91 |
+
xmax = 1.85
|
| 92 |
+
text = "ᅡ"
|
| 93 |
+
intervals [11]:
|
| 94 |
+
xmin = 1.85
|
| 95 |
+
xmax = 1.94
|
| 96 |
+
text = "ᄂ"
|
| 97 |
+
intervals [12]:
|
| 98 |
+
xmin = 1.94
|
| 99 |
+
xmax = 2.07
|
| 100 |
+
text = "ᅢ"
|
| 101 |
+
intervals [13]:
|
| 102 |
+
xmin = 2.07
|
| 103 |
+
xmax = 2.08
|
| 104 |
+
text = "ᄋ"
|
| 105 |
+
intervals [14]:
|
| 106 |
+
xmin = 2.08
|
| 107 |
+
xmax = 2.17
|
| 108 |
+
text = "ᅧ"
|
| 109 |
+
intervals [15]:
|
| 110 |
+
xmin = 2.17
|
| 111 |
+
xmax = 2.39
|
| 112 |
+
text = "ᄑ"
|
| 113 |
+
intervals [16]:
|
| 114 |
+
xmin = 2.39
|
| 115 |
+
xmax = 2.68
|
| 116 |
+
text = "ᅦ"
|
| 117 |
+
intervals [17]:
|
| 118 |
+
xmin = 2.68
|
| 119 |
+
xmax = 2.77
|
| 120 |
+
text = "sil"
|
| 121 |
+
intervals [18]:
|
| 122 |
+
xmin = 2.77
|
| 123 |
+
xmax = 2.78
|
| 124 |
+
text = "ᄋ"
|
| 125 |
+
intervals [19]:
|
| 126 |
+
xmin = 2.78
|
| 127 |
+
xmax = 2.85
|
| 128 |
+
text = "ᅡ"
|
| 129 |
+
intervals [20]:
|
| 130 |
+
xmin = 2.85
|
| 131 |
+
xmax = 3
|
| 132 |
+
text = "ᆫ"
|
| 133 |
+
intervals [21]:
|
| 134 |
+
xmin = 3
|
| 135 |
+
xmax = 3.09
|
| 136 |
+
text = "ᄌ"
|
| 137 |
+
intervals [22]:
|
| 138 |
+
xmin = 3.09
|
| 139 |
+
xmax = 3.16
|
| 140 |
+
text = "ᅡ"
|
| 141 |
+
intervals [23]:
|
| 142 |
+
xmin = 3.16
|
| 143 |
+
xmax = 3.21
|
| 144 |
+
text = "ᆮ"
|
| 145 |
+
intervals [24]:
|
| 146 |
+
xmin = 3.21
|
| 147 |
+
xmax = 3.39
|
| 148 |
+
text = "ᄄ"
|
| 149 |
+
intervals [25]:
|
| 150 |
+
xmin = 3.39
|
| 151 |
+
xmax = 3.43
|
| 152 |
+
text = "ᅡ"
|
| 153 |
+
intervals [26]:
|
| 154 |
+
xmin = 3.43
|
| 155 |
+
xmax = 4.38
|
| 156 |
+
text = "sil"
|
preprocessed/kss_elena/TextGrid/1_0018.TextGrid
ADDED
|
@@ -0,0 +1,268 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
File type = "ooTextFile"
|
| 2 |
+
Object class = "TextGrid"
|
| 3 |
+
|
| 4 |
+
xmin = 0
|
| 5 |
+
xmax = 7.92
|
| 6 |
+
tiers? <exists>
|
| 7 |
+
size = 2
|
| 8 |
+
item []:
|
| 9 |
+
item [1]:
|
| 10 |
+
class = "IntervalTier"
|
| 11 |
+
name = "words"
|
| 12 |
+
xmin = 0
|
| 13 |
+
xmax = 7.92
|
| 14 |
+
intervals: size = 11
|
| 15 |
+
intervals [1]:
|
| 16 |
+
xmin = 0
|
| 17 |
+
xmax = 1.24
|
| 18 |
+
text = "<eps>"
|
| 19 |
+
intervals [2]:
|
| 20 |
+
xmin = 1.24
|
| 21 |
+
xmax = 2.08
|
| 22 |
+
text = "일일사에"
|
| 23 |
+
intervals [3]:
|
| 24 |
+
xmin = 2.08
|
| 25 |
+
xmax = 2.24
|
| 26 |
+
text = "<eps>"
|
| 27 |
+
intervals [4]:
|
| 28 |
+
xmin = 2.24
|
| 29 |
+
xmax = 2.94
|
| 30 |
+
text = "전화를"
|
| 31 |
+
intervals [5]:
|
| 32 |
+
xmin = 2.94
|
| 33 |
+
xmax = 3.4
|
| 34 |
+
text = "해서"
|
| 35 |
+
intervals [6]:
|
| 36 |
+
xmin = 3.4
|
| 37 |
+
xmax = 3.96
|
| 38 |
+
text = "<eps>"
|
| 39 |
+
intervals [7]:
|
| 40 |
+
xmin = 3.96
|
| 41 |
+
xmax = 4.54
|
| 42 |
+
text = "번호를"
|
| 43 |
+
intervals [8]:
|
| 44 |
+
xmin = 4.54
|
| 45 |
+
xmax = 5.9
|
| 46 |
+
text = "알아보시지"
|
| 47 |
+
intervals [9]:
|
| 48 |
+
xmin = 5.9
|
| 49 |
+
xmax = 6.35
|
| 50 |
+
text = "<eps>"
|
| 51 |
+
intervals [10]:
|
| 52 |
+
xmin = 6.35
|
| 53 |
+
xmax = 7.27
|
| 54 |
+
text = "그러세요"
|
| 55 |
+
intervals [11]:
|
| 56 |
+
xmin = 7.27
|
| 57 |
+
xmax = 7.92
|
| 58 |
+
text = "<eps>"
|
| 59 |
+
item [2]:
|
| 60 |
+
class = "IntervalTier"
|
| 61 |
+
name = "phones"
|
| 62 |
+
xmin = 0
|
| 63 |
+
xmax = 7.92
|
| 64 |
+
intervals: size = 51
|
| 65 |
+
intervals [1]:
|
| 66 |
+
xmin = 0
|
| 67 |
+
xmax = 1.24
|
| 68 |
+
text = "sil"
|
| 69 |
+
intervals [2]:
|
| 70 |
+
xmin = 1.24
|
| 71 |
+
xmax = 1.25
|
| 72 |
+
text = "ᄋ"
|
| 73 |
+
intervals [3]:
|
| 74 |
+
xmin = 1.25
|
| 75 |
+
xmax = 1.36
|
| 76 |
+
text = "ᅵ"
|
| 77 |
+
intervals [4]:
|
| 78 |
+
xmin = 1.36
|
| 79 |
+
xmax = 1.4
|
| 80 |
+
text = "ᄅ"
|
| 81 |
+
intervals [5]:
|
| 82 |
+
xmin = 1.4
|
| 83 |
+
xmax = 1.53
|
| 84 |
+
text = "ᅵ"
|
| 85 |
+
intervals [6]:
|
| 86 |
+
xmin = 1.53
|
| 87 |
+
xmax = 1.57
|
| 88 |
+
text = "ᆯ"
|
| 89 |
+
intervals [7]:
|
| 90 |
+
xmin = 1.57
|
| 91 |
+
xmax = 1.65
|
| 92 |
+
text = "ᄉ"
|
| 93 |
+
intervals [8]:
|
| 94 |
+
xmin = 1.65
|
| 95 |
+
xmax = 1.78
|
| 96 |
+
text = "ᅡ"
|
| 97 |
+
intervals [9]:
|
| 98 |
+
xmin = 1.78
|
| 99 |
+
xmax = 1.79
|
| 100 |
+
text = "ᄋ"
|
| 101 |
+
intervals [10]:
|
| 102 |
+
xmin = 1.79
|
| 103 |
+
xmax = 2.08
|
| 104 |
+
text = "ᅦ"
|
| 105 |
+
intervals [11]:
|
| 106 |
+
xmin = 2.08
|
| 107 |
+
xmax = 2.24
|
| 108 |
+
text = "sil"
|
| 109 |
+
intervals [12]:
|
| 110 |
+
xmin = 2.24
|
| 111 |
+
xmax = 2.34
|
| 112 |
+
text = "ᄌ"
|
| 113 |
+
intervals [13]:
|
| 114 |
+
xmin = 2.34
|
| 115 |
+
xmax = 2.39
|
| 116 |
+
text = "ᅥ"
|
| 117 |
+
intervals [14]:
|
| 118 |
+
xmin = 2.39
|
| 119 |
+
xmax = 2.52
|
| 120 |
+
text = "ᆫ"
|
| 121 |
+
intervals [15]:
|
| 122 |
+
xmin = 2.52
|
| 123 |
+
xmax = 2.59
|
| 124 |
+
text = "ᄒ"
|
| 125 |
+
intervals [16]:
|
| 126 |
+
xmin = 2.59
|
| 127 |
+
xmax = 2.74
|
| 128 |
+
text = "ᅪ"
|
| 129 |
+
intervals [17]:
|
| 130 |
+
xmin = 2.74
|
| 131 |
+
xmax = 2.81
|
| 132 |
+
text = "ᄅ"
|
| 133 |
+
intervals [18]:
|
| 134 |
+
xmin = 2.81
|
| 135 |
+
xmax = 2.87
|
| 136 |
+
text = "ᅳ"
|
| 137 |
+
intervals [19]:
|
| 138 |
+
xmin = 2.87
|
| 139 |
+
xmax = 2.94
|
| 140 |
+
text = "ᆯ"
|
| 141 |
+
intervals [20]:
|
| 142 |
+
xmin = 2.94
|
| 143 |
+
xmax = 2.98
|
| 144 |
+
text = "ᄒ"
|
| 145 |
+
intervals [21]:
|
| 146 |
+
xmin = 2.98
|
| 147 |
+
xmax = 3.13
|
| 148 |
+
text = "ᅢ"
|
| 149 |
+
intervals [22]:
|
| 150 |
+
xmin = 3.13
|
| 151 |
+
xmax = 3.21
|
| 152 |
+
text = "ᄉ"
|
| 153 |
+
intervals [23]:
|
| 154 |
+
xmin = 3.21
|
| 155 |
+
xmax = 3.4
|
| 156 |
+
text = "ᅥ"
|
| 157 |
+
intervals [24]:
|
| 158 |
+
xmin = 3.4
|
| 159 |
+
xmax = 3.96
|
| 160 |
+
text = "sil"
|
| 161 |
+
intervals [25]:
|
| 162 |
+
xmin = 3.96
|
| 163 |
+
xmax = 3.99
|
| 164 |
+
text = "ᄇ"
|
| 165 |
+
intervals [26]:
|
| 166 |
+
xmin = 3.99
|
| 167 |
+
xmax = 4.2
|
| 168 |
+
text = "ᅥ"
|
| 169 |
+
intervals [27]:
|
| 170 |
+
xmin = 4.2
|
| 171 |
+
xmax = 4.23
|
| 172 |
+
text = "ᆫ"
|
| 173 |
+
intervals [28]:
|
| 174 |
+
xmin = 4.23
|
| 175 |
+
xmax = 4.26
|
| 176 |
+
text = "ᄒ"
|
| 177 |
+
intervals [29]:
|
| 178 |
+
xmin = 4.26
|
| 179 |
+
xmax = 4.42
|
| 180 |
+
text = "ᅩ"
|
| 181 |
+
intervals [30]:
|
| 182 |
+
xmin = 4.42
|
| 183 |
+
xmax = 4.47
|
| 184 |
+
text = "ᄅ"
|
| 185 |
+
intervals [31]:
|
| 186 |
+
xmin = 4.47
|
| 187 |
+
xmax = 4.54
|
| 188 |
+
text = "ᅳ"
|
| 189 |
+
intervals [32]:
|
| 190 |
+
xmin = 4.54
|
| 191 |
+
xmax = 4.71
|
| 192 |
+
text = "ᄅ"
|
| 193 |
+
intervals [33]:
|
| 194 |
+
xmin = 4.71
|
| 195 |
+
xmax = 4.88
|
| 196 |
+
text = "ᅡ"
|
| 197 |
+
intervals [34]:
|
| 198 |
+
xmin = 4.88
|
| 199 |
+
xmax = 4.93
|
| 200 |
+
text = "ᄅ"
|
| 201 |
+
intervals [35]:
|
| 202 |
+
xmin = 4.93
|
| 203 |
+
xmax = 5.08
|
| 204 |
+
text = "ᅡ"
|
| 205 |
+
intervals [36]:
|
| 206 |
+
xmin = 5.08
|
| 207 |
+
xmax = 5.24
|
| 208 |
+
text = "ᄇ"
|
| 209 |
+
intervals [37]:
|
| 210 |
+
xmin = 5.24
|
| 211 |
+
xmax = 5.32
|
| 212 |
+
text = "ᅩ"
|
| 213 |
+
intervals [38]:
|
| 214 |
+
xmin = 5.32
|
| 215 |
+
xmax = 5.51
|
| 216 |
+
text = "ᄉ"
|
| 217 |
+
intervals [39]:
|
| 218 |
+
xmin = 5.51
|
| 219 |
+
xmax = 5.6
|
| 220 |
+
text = "ᅵ"
|
| 221 |
+
intervals [40]:
|
| 222 |
+
xmin = 5.6
|
| 223 |
+
xmax = 5.72
|
| 224 |
+
text = "ᄌ"
|
| 225 |
+
intervals [41]:
|
| 226 |
+
xmin = 5.72
|
| 227 |
+
xmax = 5.9
|
| 228 |
+
text = "ᅵ"
|
| 229 |
+
intervals [42]:
|
| 230 |
+
xmin = 5.9
|
| 231 |
+
xmax = 6.35
|
| 232 |
+
text = "sil"
|
| 233 |
+
intervals [43]:
|
| 234 |
+
xmin = 6.35
|
| 235 |
+
xmax = 6.52
|
| 236 |
+
text = "ᄀ"
|
| 237 |
+
intervals [44]:
|
| 238 |
+
xmin = 6.52
|
| 239 |
+
xmax = 6.55
|
| 240 |
+
text = "ᅳ"
|
| 241 |
+
intervals [45]:
|
| 242 |
+
xmin = 6.55
|
| 243 |
+
xmax = 6.61
|
| 244 |
+
text = "ᄅ"
|
| 245 |
+
intervals [46]:
|
| 246 |
+
xmin = 6.61
|
| 247 |
+
xmax = 6.72
|
| 248 |
+
text = "ᅥ"
|
| 249 |
+
intervals [47]:
|
| 250 |
+
xmin = 6.72
|
| 251 |
+
xmax = 7.07
|
| 252 |
+
text = "ᄉ"
|
| 253 |
+
intervals [48]:
|
| 254 |
+
xmin = 7.07
|
| 255 |
+
xmax = 7.18
|
| 256 |
+
text = "ᅦ"
|
| 257 |
+
intervals [49]:
|
| 258 |
+
xmin = 7.18
|
| 259 |
+
xmax = 7.19
|
| 260 |
+
text = "ᄋ"
|
| 261 |
+
intervals [50]:
|
| 262 |
+
xmin = 7.19
|
| 263 |
+
xmax = 7.27
|
| 264 |
+
text = "ᅭ"
|
| 265 |
+
intervals [51]:
|
| 266 |
+
xmin = 7.27
|
| 267 |
+
xmax = 7.92
|
| 268 |
+
text = "sil"
|
preprocessed/kss_elena/TextGrid/1_0019.TextGrid
ADDED
|
@@ -0,0 +1,144 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
File type = "ooTextFile"
|
| 2 |
+
Object class = "TextGrid"
|
| 3 |
+
|
| 4 |
+
xmin = 0
|
| 5 |
+
xmax = 4.38
|
| 6 |
+
tiers? <exists>
|
| 7 |
+
size = 2
|
| 8 |
+
item []:
|
| 9 |
+
item [1]:
|
| 10 |
+
class = "IntervalTier"
|
| 11 |
+
name = "words"
|
| 12 |
+
xmin = 0
|
| 13 |
+
xmax = 4.38
|
| 14 |
+
intervals: size = 6
|
| 15 |
+
intervals [1]:
|
| 16 |
+
xmin = 0
|
| 17 |
+
xmax = 0.76
|
| 18 |
+
text = "<eps>"
|
| 19 |
+
intervals [2]:
|
| 20 |
+
xmin = 0.76
|
| 21 |
+
xmax = 1.29
|
| 22 |
+
text = "내가"
|
| 23 |
+
intervals [3]:
|
| 24 |
+
xmin = 1.29
|
| 25 |
+
xmax = 2.34
|
| 26 |
+
text = "누군지"
|
| 27 |
+
intervals [4]:
|
| 28 |
+
xmin = 2.34
|
| 29 |
+
xmax = 2.43
|
| 30 |
+
text = "<eps>"
|
| 31 |
+
intervals [5]:
|
| 32 |
+
xmin = 2.43
|
| 33 |
+
xmax = 3.57
|
| 34 |
+
text = "알아보겠니"
|
| 35 |
+
intervals [6]:
|
| 36 |
+
xmin = 3.57
|
| 37 |
+
xmax = 4.38
|
| 38 |
+
text = "<eps>"
|
| 39 |
+
item [2]:
|
| 40 |
+
class = "IntervalTier"
|
| 41 |
+
name = "phones"
|
| 42 |
+
xmin = 0
|
| 43 |
+
xmax = 4.38
|
| 44 |
+
intervals: size = 25
|
| 45 |
+
intervals [1]:
|
| 46 |
+
xmin = 0
|
| 47 |
+
xmax = 0.76
|
| 48 |
+
text = "sil"
|
| 49 |
+
intervals [2]:
|
| 50 |
+
xmin = 0.76
|
| 51 |
+
xmax = 0.8
|
| 52 |
+
text = "ᄂ"
|
| 53 |
+
intervals [3]:
|
| 54 |
+
xmin = 0.8
|
| 55 |
+
xmax = 0.92
|
| 56 |
+
text = "ᅢ"
|
| 57 |
+
intervals [4]:
|
| 58 |
+
xmin = 0.92
|
| 59 |
+
xmax = 1.01
|
| 60 |
+
text = "ᄀ"
|
| 61 |
+
intervals [5]:
|
| 62 |
+
xmin = 1.01
|
| 63 |
+
xmax = 1.29
|
| 64 |
+
text = "ᅡ"
|
| 65 |
+
intervals [6]:
|
| 66 |
+
xmin = 1.29
|
| 67 |
+
xmax = 1.4
|
| 68 |
+
text = "ᄂ"
|
| 69 |
+
intervals [7]:
|
| 70 |
+
xmin = 1.4
|
| 71 |
+
xmax = 1.5
|
| 72 |
+
text = "ᅮ"
|
| 73 |
+
intervals [8]:
|
| 74 |
+
xmin = 1.5
|
| 75 |
+
xmax = 1.63
|
| 76 |
+
text = "ᄀ"
|
| 77 |
+
intervals [9]:
|
| 78 |
+
xmin = 1.63
|
| 79 |
+
xmax = 1.7
|
| 80 |
+
text = "ᅮ"
|
| 81 |
+
intervals [10]:
|
| 82 |
+
xmin = 1.7
|
| 83 |
+
xmax = 1.86
|
| 84 |
+
text = "ᆫ"
|
| 85 |
+
intervals [11]:
|
| 86 |
+
xmin = 1.86
|
| 87 |
+
xmax = 1.98
|
| 88 |
+
text = "ᄌ"
|
| 89 |
+
intervals [12]:
|
| 90 |
+
xmin = 1.98
|
| 91 |
+
xmax = 2.34
|
| 92 |
+
text = "ᅵ"
|
| 93 |
+
intervals [13]:
|
| 94 |
+
xmin = 2.34
|
| 95 |
+
xmax = 2.43
|
| 96 |
+
text = "sil"
|
| 97 |
+
intervals [14]:
|
| 98 |
+
xmin = 2.43
|
| 99 |
+
xmax = 2.44
|
| 100 |
+
text = "ᄋ"
|
| 101 |
+
intervals [15]:
|
| 102 |
+
xmin = 2.44
|
| 103 |
+
xmax = 2.58
|
| 104 |
+
text = "ᅡ"
|
| 105 |
+
intervals [16]:
|
| 106 |
+
xmin = 2.58
|
| 107 |
+
xmax = 2.64
|
| 108 |
+
text = "ᄅ"
|
| 109 |
+
intervals [17]:
|
| 110 |
+
xmin = 2.64
|
| 111 |
+
xmax = 2.89
|
| 112 |
+
text = "ᅡ"
|
| 113 |
+
intervals [18]:
|
| 114 |
+
xmin = 2.89
|
| 115 |
+
xmax = 3.05
|
| 116 |
+
text = "ᄇ"
|
| 117 |
+
intervals [19]:
|
| 118 |
+
xmin = 3.05
|
| 119 |
+
xmax = 3.09
|
| 120 |
+
text = "ᅩ"
|
| 121 |
+
intervals [20]:
|
| 122 |
+
xmin = 3.09
|
| 123 |
+
xmax = 3.23
|
| 124 |
+
text = "ᄀ"
|
| 125 |
+
intervals [21]:
|
| 126 |
+
xmin = 3.23
|
| 127 |
+
xmax = 3.34
|
| 128 |
+
text = "ᅦ"
|
| 129 |
+
intervals [22]:
|
| 130 |
+
xmin = 3.34
|
| 131 |
+
xmax = 3.41
|
| 132 |
+
text = "ᆫ"
|
| 133 |
+
intervals [23]:
|
| 134 |
+
xmin = 3.41
|
| 135 |
+
xmax = 3.44
|
| 136 |
+
text = "ᄂ"
|
| 137 |
+
intervals [24]:
|
| 138 |
+
xmin = 3.44
|
| 139 |
+
xmax = 3.57
|
| 140 |
+
text = "ᅵ"
|
| 141 |
+
intervals [25]:
|
| 142 |
+
xmin = 3.57
|
| 143 |
+
xmax = 4.38
|
| 144 |
+
text = "sil"
|
preprocessed/kss_elena/TextGrid/1_0020.TextGrid
ADDED
|
@@ -0,0 +1,280 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
File type = "ooTextFile"
|
| 2 |
+
Object class = "TextGrid"
|
| 3 |
+
|
| 4 |
+
xmin = 0
|
| 5 |
+
xmax = 7.56
|
| 6 |
+
tiers? <exists>
|
| 7 |
+
size = 2
|
| 8 |
+
item []:
|
| 9 |
+
item [1]:
|
| 10 |
+
class = "IntervalTier"
|
| 11 |
+
name = "words"
|
| 12 |
+
xmin = 0
|
| 13 |
+
xmax = 7.56
|
| 14 |
+
intervals: size = 13
|
| 15 |
+
intervals [1]:
|
| 16 |
+
xmin = 0
|
| 17 |
+
xmax = 0.63
|
| 18 |
+
text = "<eps>"
|
| 19 |
+
intervals [2]:
|
| 20 |
+
xmin = 0.63
|
| 21 |
+
xmax = 1.27
|
| 22 |
+
text = "그는"
|
| 23 |
+
intervals [3]:
|
| 24 |
+
xmin = 1.27
|
| 25 |
+
xmax = 2.1
|
| 26 |
+
text = "절대"
|
| 27 |
+
intervals [4]:
|
| 28 |
+
xmin = 2.1
|
| 29 |
+
xmax = 2.34
|
| 30 |
+
text = "<eps>"
|
| 31 |
+
intervals [5]:
|
| 32 |
+
xmin = 2.34
|
| 33 |
+
xmax = 2.71
|
| 34 |
+
text = "다른"
|
| 35 |
+
intervals [6]:
|
| 36 |
+
xmin = 2.71
|
| 37 |
+
xmax = 3.32
|
| 38 |
+
text = "사람의"
|
| 39 |
+
intervals [7]:
|
| 40 |
+
xmin = 3.32
|
| 41 |
+
xmax = 3.45
|
| 42 |
+
text = "<eps>"
|
| 43 |
+
intervals [8]:
|
| 44 |
+
xmin = 3.45
|
| 45 |
+
xmax = 4.3
|
| 46 |
+
text = "의견을"
|
| 47 |
+
intervals [9]:
|
| 48 |
+
xmin = 4.3
|
| 49 |
+
xmax = 4.44
|
| 50 |
+
text = "<eps>"
|
| 51 |
+
intervals [10]:
|
| 52 |
+
xmin = 4.44
|
| 53 |
+
xmax = 6.05
|
| 54 |
+
text = "받아들이지"
|
| 55 |
+
intervals [11]:
|
| 56 |
+
xmin = 6.05
|
| 57 |
+
xmax = 6.24
|
| 58 |
+
text = "<eps>"
|
| 59 |
+
intervals [12]:
|
| 60 |
+
xmin = 6.24
|
| 61 |
+
xmax = 6.73
|
| 62 |
+
text = "않는다"
|
| 63 |
+
intervals [13]:
|
| 64 |
+
xmin = 6.73
|
| 65 |
+
xmax = 7.56
|
| 66 |
+
text = "<eps>"
|
| 67 |
+
item [2]:
|
| 68 |
+
class = "IntervalTier"
|
| 69 |
+
name = "phones"
|
| 70 |
+
xmin = 0
|
| 71 |
+
xmax = 7.56
|
| 72 |
+
intervals: size = 52
|
| 73 |
+
intervals [1]:
|
| 74 |
+
xmin = 0
|
| 75 |
+
xmax = 0.63
|
| 76 |
+
text = "sil"
|
| 77 |
+
intervals [2]:
|
| 78 |
+
xmin = 0.63
|
| 79 |
+
xmax = 0.66
|
| 80 |
+
text = "ᄀ"
|
| 81 |
+
intervals [3]:
|
| 82 |
+
xmin = 0.66
|
| 83 |
+
xmax = 0.81
|
| 84 |
+
text = "ᅳ"
|
| 85 |
+
intervals [4]:
|
| 86 |
+
xmin = 0.81
|
| 87 |
+
xmax = 1.08
|
| 88 |
+
text = "ᄂ"
|
| 89 |
+
intervals [5]:
|
| 90 |
+
xmin = 1.08
|
| 91 |
+
xmax = 1.12
|
| 92 |
+
text = "ᅳ"
|
| 93 |
+
intervals [6]:
|
| 94 |
+
xmin = 1.12
|
| 95 |
+
xmax = 1.27
|
| 96 |
+
text = "ᆫ"
|
| 97 |
+
intervals [7]:
|
| 98 |
+
xmin = 1.27
|
| 99 |
+
xmax = 1.4
|
| 100 |
+
text = "ᄌ"
|
| 101 |
+
intervals [8]:
|
| 102 |
+
xmin = 1.4
|
| 103 |
+
xmax = 1.44
|
| 104 |
+
text = "ᅥ"
|
| 105 |
+
intervals [9]:
|
| 106 |
+
xmin = 1.44
|
| 107 |
+
xmax = 1.55
|
| 108 |
+
text = "ᆯ"
|
| 109 |
+
intervals [10]:
|
| 110 |
+
xmin = 1.55
|
| 111 |
+
xmax = 1.9
|
| 112 |
+
text = "ᄃ"
|
| 113 |
+
intervals [11]:
|
| 114 |
+
xmin = 1.9
|
| 115 |
+
xmax = 2.1
|
| 116 |
+
text = "ᅢ"
|
| 117 |
+
intervals [12]:
|
| 118 |
+
xmin = 2.1
|
| 119 |
+
xmax = 2.34
|
| 120 |
+
text = "sil"
|
| 121 |
+
intervals [13]:
|
| 122 |
+
xmin = 2.34
|
| 123 |
+
xmax = 2.42
|
| 124 |
+
text = "ᄃ"
|
| 125 |
+
intervals [14]:
|
| 126 |
+
xmin = 2.42
|
| 127 |
+
xmax = 2.51
|
| 128 |
+
text = "ᅡ"
|
| 129 |
+
intervals [15]:
|
| 130 |
+
xmin = 2.51
|
| 131 |
+
xmax = 2.55
|
| 132 |
+
text = "ᄅ"
|
| 133 |
+
intervals [16]:
|
| 134 |
+
xmin = 2.55
|
| 135 |
+
xmax = 2.6
|
| 136 |
+
text = "ᅳ"
|
| 137 |
+
intervals [17]:
|
| 138 |
+
xmin = 2.6
|
| 139 |
+
xmax = 2.71
|
| 140 |
+
text = "ᆫ"
|
| 141 |
+
intervals [18]:
|
| 142 |
+
xmin = 2.71
|
| 143 |
+
xmax = 2.81
|
| 144 |
+
text = "ᄉ"
|
| 145 |
+
intervals [19]:
|
| 146 |
+
xmin = 2.81
|
| 147 |
+
xmax = 2.9
|
| 148 |
+
text = "ᅡ"
|
| 149 |
+
intervals [20]:
|
| 150 |
+
xmin = 2.9
|
| 151 |
+
xmax = 2.93
|
| 152 |
+
text = "ᄅ"
|
| 153 |
+
intervals [21]:
|
| 154 |
+
xmin = 2.93
|
| 155 |
+
xmax = 3.05
|
| 156 |
+
text = "ᅡ"
|
| 157 |
+
intervals [22]:
|
| 158 |
+
xmin = 3.05
|
| 159 |
+
xmax = 3.17
|
| 160 |
+
text = "ᄆ"
|
| 161 |
+
intervals [23]:
|
| 162 |
+
xmin = 3.17
|
| 163 |
+
xmax = 3.32
|
| 164 |
+
text = "ᅴ"
|
| 165 |
+
intervals [24]:
|
| 166 |
+
xmin = 3.32
|
| 167 |
+
xmax = 3.45
|
| 168 |
+
text = "sil"
|
| 169 |
+
intervals [25]:
|
| 170 |
+
xmin = 3.45
|
| 171 |
+
xmax = 3.54
|
| 172 |
+
text = "ᄋ"
|
| 173 |
+
intervals [26]:
|
| 174 |
+
xmin = 3.54
|
| 175 |
+
xmax = 3.68
|
| 176 |
+
text = "ᅴ"
|
| 177 |
+
intervals [27]:
|
| 178 |
+
xmin = 3.68
|
| 179 |
+
xmax = 3.77
|
| 180 |
+
text = "ᄀ"
|
| 181 |
+
intervals [28]:
|
| 182 |
+
xmin = 3.77
|
| 183 |
+
xmax = 3.89
|
| 184 |
+
text = "ᅧ"
|
| 185 |
+
intervals [29]:
|
| 186 |
+
xmin = 3.89
|
| 187 |
+
xmax = 4.04
|
| 188 |
+
text = "ᄂ"
|
| 189 |
+
intervals [30]:
|
| 190 |
+
xmin = 4.04
|
| 191 |
+
xmax = 4.09
|
| 192 |
+
text = "ᅳ"
|
| 193 |
+
intervals [31]:
|
| 194 |
+
xmin = 4.09
|
| 195 |
+
xmax = 4.3
|
| 196 |
+
text = "ᆯ"
|
| 197 |
+
intervals [32]:
|
| 198 |
+
xmin = 4.3
|
| 199 |
+
xmax = 4.44
|
| 200 |
+
text = "sil"
|
| 201 |
+
intervals [33]:
|
| 202 |
+
xmin = 4.44
|
| 203 |
+
xmax = 4.53
|
| 204 |
+
text = "ᄇ"
|
| 205 |
+
intervals [34]:
|
| 206 |
+
xmin = 4.53
|
| 207 |
+
xmax = 4.59
|
| 208 |
+
text = "ᅡ"
|
| 209 |
+
intervals [35]:
|
| 210 |
+
xmin = 4.59
|
| 211 |
+
xmax = 4.84
|
| 212 |
+
text = "ᄃ"
|
| 213 |
+
intervals [36]:
|
| 214 |
+
xmin = 4.84
|
| 215 |
+
xmax = 5.12
|
| 216 |
+
text = "ᅡ"
|
| 217 |
+
intervals [37]:
|
| 218 |
+
xmin = 5.12
|
| 219 |
+
xmax = 5.27
|
| 220 |
+
text = "ᄃ"
|
| 221 |
+
intervals [38]:
|
| 222 |
+
xmin = 5.27
|
| 223 |
+
xmax = 5.31
|
| 224 |
+
text = "ᅳ"
|
| 225 |
+
intervals [39]:
|
| 226 |
+
xmin = 5.31
|
| 227 |
+
xmax = 5.35
|
| 228 |
+
text = "ᄅ"
|
| 229 |
+
intervals [40]:
|
| 230 |
+
xmin = 5.35
|
| 231 |
+
xmax = 5.48
|
| 232 |
+
text = "ᅵ"
|
| 233 |
+
intervals [41]:
|
| 234 |
+
xmin = 5.48
|
| 235 |
+
xmax = 5.81
|
| 236 |
+
text = "ᄌ"
|
| 237 |
+
intervals [42]:
|
| 238 |
+
xmin = 5.81
|
| 239 |
+
xmax = 6.05
|
| 240 |
+
text = "ᅵ"
|
| 241 |
+
intervals [43]:
|
| 242 |
+
xmin = 6.05
|
| 243 |
+
xmax = 6.24
|
| 244 |
+
text = "sil"
|
| 245 |
+
intervals [44]:
|
| 246 |
+
xmin = 6.24
|
| 247 |
+
xmax = 6.25
|
| 248 |
+
text = "ᄋ"
|
| 249 |
+
intervals [45]:
|
| 250 |
+
xmin = 6.25
|
| 251 |
+
xmax = 6.34
|
| 252 |
+
text = "ᅡ"
|
| 253 |
+
intervals [46]:
|
| 254 |
+
xmin = 6.34
|
| 255 |
+
xmax = 6.42
|
| 256 |
+
text = "ᆫ"
|
| 257 |
+
intervals [47]:
|
| 258 |
+
xmin = 6.42
|
| 259 |
+
xmax = 6.45
|
| 260 |
+
text = "ᄂ"
|
| 261 |
+
intervals [48]:
|
| 262 |
+
xmin = 6.45
|
| 263 |
+
xmax = 6.51
|
| 264 |
+
text = "ᅳ"
|
| 265 |
+
intervals [49]:
|
| 266 |
+
xmin = 6.51
|
| 267 |
+
xmax = 6.65
|
| 268 |
+
text = "ᆫ"
|
| 269 |
+
intervals [50]:
|
| 270 |
+
xmin = 6.65
|
| 271 |
+
xmax = 6.7
|
| 272 |
+
text = "ᄃ"
|
| 273 |
+
intervals [51]:
|
| 274 |
+
xmin = 6.7
|
| 275 |
+
xmax = 6.73
|
| 276 |
+
text = "ᅡ"
|
| 277 |
+
intervals [52]:
|
| 278 |
+
xmin = 6.73
|
| 279 |
+
xmax = 7.56
|
| 280 |
+
text = "sil"
|
preprocessed/kss_elena/TextGrid/1_0022.TextGrid
ADDED
|
@@ -0,0 +1,152 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
File type = "ooTextFile"
|
| 2 |
+
Object class = "TextGrid"
|
| 3 |
+
|
| 4 |
+
xmin = 0
|
| 5 |
+
xmax = 4.62
|
| 6 |
+
tiers? <exists>
|
| 7 |
+
size = 2
|
| 8 |
+
item []:
|
| 9 |
+
item [1]:
|
| 10 |
+
class = "IntervalTier"
|
| 11 |
+
name = "words"
|
| 12 |
+
xmin = 0
|
| 13 |
+
xmax = 4.62
|
| 14 |
+
intervals: size = 5
|
| 15 |
+
intervals [1]:
|
| 16 |
+
xmin = 0
|
| 17 |
+
xmax = 0.97
|
| 18 |
+
text = "<eps>"
|
| 19 |
+
intervals [2]:
|
| 20 |
+
xmin = 0.97
|
| 21 |
+
xmax = 1.7
|
| 22 |
+
text = "어디에서"
|
| 23 |
+
intervals [3]:
|
| 24 |
+
xmin = 1.7
|
| 25 |
+
xmax = 2.45
|
| 26 |
+
text = "영어를"
|
| 27 |
+
intervals [4]:
|
| 28 |
+
xmin = 2.45
|
| 29 |
+
xmax = 3.55
|
| 30 |
+
text = "배우셨어요"
|
| 31 |
+
intervals [5]:
|
| 32 |
+
xmin = 3.55
|
| 33 |
+
xmax = 4.62
|
| 34 |
+
text = "<eps>"
|
| 35 |
+
item [2]:
|
| 36 |
+
class = "IntervalTier"
|
| 37 |
+
name = "phones"
|
| 38 |
+
xmin = 0
|
| 39 |
+
xmax = 4.62
|
| 40 |
+
intervals: size = 28
|
| 41 |
+
intervals [1]:
|
| 42 |
+
xmin = 0
|
| 43 |
+
xmax = 0.97
|
| 44 |
+
text = "sil"
|
| 45 |
+
intervals [2]:
|
| 46 |
+
xmin = 0.97
|
| 47 |
+
xmax = 0.98
|
| 48 |
+
text = "ᄋ"
|
| 49 |
+
intervals [3]:
|
| 50 |
+
xmin = 0.98
|
| 51 |
+
xmax = 1.14
|
| 52 |
+
text = "ᅥ"
|
| 53 |
+
intervals [4]:
|
| 54 |
+
xmin = 1.14
|
| 55 |
+
xmax = 1.2
|
| 56 |
+
text = "ᄃ"
|
| 57 |
+
intervals [5]:
|
| 58 |
+
xmin = 1.2
|
| 59 |
+
xmax = 1.34
|
| 60 |
+
text = "ᅵ"
|
| 61 |
+
intervals [6]:
|
| 62 |
+
xmin = 1.34
|
| 63 |
+
xmax = 1.35
|
| 64 |
+
text = "ᄋ"
|
| 65 |
+
intervals [7]:
|
| 66 |
+
xmin = 1.35
|
| 67 |
+
xmax = 1.51
|
| 68 |
+
text = "ᅦ"
|
| 69 |
+
intervals [8]:
|
| 70 |
+
xmin = 1.51
|
| 71 |
+
xmax = 1.59
|
| 72 |
+
text = "ᄉ"
|
| 73 |
+
intervals [9]:
|
| 74 |
+
xmin = 1.59
|
| 75 |
+
xmax = 1.7
|
| 76 |
+
text = "ᅥ"
|
| 77 |
+
intervals [10]:
|
| 78 |
+
xmin = 1.7
|
| 79 |
+
xmax = 1.71
|
| 80 |
+
text = "ᄋ"
|
| 81 |
+
intervals [11]:
|
| 82 |
+
xmin = 1.71
|
| 83 |
+
xmax = 1.88
|
| 84 |
+
text = "ᅧ"
|
| 85 |
+
intervals [12]:
|
| 86 |
+
xmin = 1.88
|
| 87 |
+
xmax = 1.99
|
| 88 |
+
text = "ᆼ"
|
| 89 |
+
intervals [13]:
|
| 90 |
+
xmin = 1.99
|
| 91 |
+
xmax = 2
|
| 92 |
+
text = "ᄋ"
|
| 93 |
+
intervals [14]:
|
| 94 |
+
xmin = 2
|
| 95 |
+
xmax = 2.17
|
| 96 |
+
text = "ᅥ"
|
| 97 |
+
intervals [15]:
|
| 98 |
+
xmin = 2.17
|
| 99 |
+
xmax = 2.25
|
| 100 |
+
text = "ᄅ"
|
| 101 |
+
intervals [16]:
|
| 102 |
+
xmin = 2.25
|
| 103 |
+
xmax = 2.29
|
| 104 |
+
text = "ᅳ"
|
| 105 |
+
intervals [17]:
|
| 106 |
+
xmin = 2.29
|
| 107 |
+
xmax = 2.45
|
| 108 |
+
text = "ᆯ"
|
| 109 |
+
intervals [18]:
|
| 110 |
+
xmin = 2.45
|
| 111 |
+
xmax = 2.62
|
| 112 |
+
text = "ᄇ"
|
| 113 |
+
intervals [19]:
|
| 114 |
+
xmin = 2.62
|
| 115 |
+
xmax = 2.69
|
| 116 |
+
text = "ᅢ"
|
| 117 |
+
intervals [20]:
|
| 118 |
+
xmin = 2.69
|
| 119 |
+
xmax = 2.7
|
| 120 |
+
text = "ᄋ"
|
| 121 |
+
intervals [21]:
|
| 122 |
+
xmin = 2.7
|
| 123 |
+
xmax = 2.87
|
| 124 |
+
text = "ᅮ"
|
| 125 |
+
intervals [22]:
|
| 126 |
+
xmin = 2.87
|
| 127 |
+
xmax = 2.98
|
| 128 |
+
text = "ᄉ"
|
| 129 |
+
intervals [23]:
|
| 130 |
+
xmin = 2.98
|
| 131 |
+
xmax = 3.03
|
| 132 |
+
text = "ᅧ"
|
| 133 |
+
intervals [24]:
|
| 134 |
+
xmin = 3.03
|
| 135 |
+
xmax = 3.24
|
| 136 |
+
text = "ᄊ"
|
| 137 |
+
intervals [25]:
|
| 138 |
+
xmin = 3.24
|
| 139 |
+
xmax = 3.27
|
| 140 |
+
text = "ᅥ"
|
| 141 |
+
intervals [26]:
|
| 142 |
+
xmin = 3.27
|
| 143 |
+
xmax = 3.42
|
| 144 |
+
text = "ᄋ"
|
| 145 |
+
intervals [27]:
|
| 146 |
+
xmin = 3.42
|
| 147 |
+
xmax = 3.55
|
| 148 |
+
text = "ᅭ"
|
| 149 |
+
intervals [28]:
|
| 150 |
+
xmin = 3.55
|
| 151 |
+
xmax = 4.62
|
| 152 |
+
text = "sil"
|
preprocessed/kss_elena/TextGrid/1_0023.TextGrid
ADDED
|
@@ -0,0 +1,196 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
File type = "ooTextFile"
|
| 2 |
+
Object class = "TextGrid"
|
| 3 |
+
|
| 4 |
+
xmin = 0
|
| 5 |
+
xmax = 5.7
|
| 6 |
+
tiers? <exists>
|
| 7 |
+
size = 2
|
| 8 |
+
item []:
|
| 9 |
+
item [1]:
|
| 10 |
+
class = "IntervalTier"
|
| 11 |
+
name = "words"
|
| 12 |
+
xmin = 0
|
| 13 |
+
xmax = 5.7
|
| 14 |
+
intervals: size = 7
|
| 15 |
+
intervals [1]:
|
| 16 |
+
xmin = 0
|
| 17 |
+
xmax = 1.16
|
| 18 |
+
text = "<eps>"
|
| 19 |
+
intervals [2]:
|
| 20 |
+
xmin = 1.16
|
| 21 |
+
xmax = 2.4
|
| 22 |
+
text = "동료에게서"
|
| 23 |
+
intervals [3]:
|
| 24 |
+
xmin = 2.4
|
| 25 |
+
xmax = 2.94
|
| 26 |
+
text = "<eps>"
|
| 27 |
+
intervals [4]:
|
| 28 |
+
xmin = 2.94
|
| 29 |
+
xmax = 3.82
|
| 30 |
+
text = "수화를"
|
| 31 |
+
intervals [5]:
|
| 32 |
+
xmin = 3.82
|
| 33 |
+
xmax = 4.45
|
| 34 |
+
text = "배우고"
|
| 35 |
+
intervals [6]:
|
| 36 |
+
xmin = 4.45
|
| 37 |
+
xmax = 5.13
|
| 38 |
+
text = "있습니다"
|
| 39 |
+
intervals [7]:
|
| 40 |
+
xmin = 5.13
|
| 41 |
+
xmax = 5.7
|
| 42 |
+
text = "<eps>"
|
| 43 |
+
item [2]:
|
| 44 |
+
class = "IntervalTier"
|
| 45 |
+
name = "phones"
|
| 46 |
+
xmin = 0
|
| 47 |
+
xmax = 5.7
|
| 48 |
+
intervals: size = 37
|
| 49 |
+
intervals [1]:
|
| 50 |
+
xmin = 0
|
| 51 |
+
xmax = 1.16
|
| 52 |
+
text = "sil"
|
| 53 |
+
intervals [2]:
|
| 54 |
+
xmin = 1.16
|
| 55 |
+
xmax = 1.24
|
| 56 |
+
text = "ᄃ"
|
| 57 |
+
intervals [3]:
|
| 58 |
+
xmin = 1.24
|
| 59 |
+
xmax = 1.28
|
| 60 |
+
text = "ᅩ"
|
| 61 |
+
intervals [4]:
|
| 62 |
+
xmin = 1.28
|
| 63 |
+
xmax = 1.47
|
| 64 |
+
text = "ᆼ"
|
| 65 |
+
intervals [5]:
|
| 66 |
+
xmin = 1.47
|
| 67 |
+
xmax = 1.51
|
| 68 |
+
text = "ᄂ"
|
| 69 |
+
intervals [6]:
|
| 70 |
+
xmin = 1.51
|
| 71 |
+
xmax = 1.73
|
| 72 |
+
text = "ᅭ"
|
| 73 |
+
intervals [7]:
|
| 74 |
+
xmin = 1.73
|
| 75 |
+
xmax = 1.74
|
| 76 |
+
text = "ᄋ"
|
| 77 |
+
intervals [8]:
|
| 78 |
+
xmin = 1.74
|
| 79 |
+
xmax = 1.9
|
| 80 |
+
text = "ᅦ"
|
| 81 |
+
intervals [9]:
|
| 82 |
+
xmin = 1.9
|
| 83 |
+
xmax = 1.95
|
| 84 |
+
text = "ᄀ"
|
| 85 |
+
intervals [10]:
|
| 86 |
+
xmin = 1.95
|
| 87 |
+
xmax = 2.09
|
| 88 |
+
text = "ᅦ"
|
| 89 |
+
intervals [11]:
|
| 90 |
+
xmin = 2.09
|
| 91 |
+
xmax = 2.19
|
| 92 |
+
text = "ᄉ"
|
| 93 |
+
intervals [12]:
|
| 94 |
+
xmin = 2.19
|
| 95 |
+
xmax = 2.4
|
| 96 |
+
text = "ᅥ"
|
| 97 |
+
intervals [13]:
|
| 98 |
+
xmin = 2.4
|
| 99 |
+
xmax = 2.94
|
| 100 |
+
text = "sil"
|
| 101 |
+
intervals [14]:
|
| 102 |
+
xmin = 2.94
|
| 103 |
+
xmax = 3.12
|
| 104 |
+
text = "ᄉ"
|
| 105 |
+
intervals [15]:
|
| 106 |
+
xmin = 3.12
|
| 107 |
+
xmax = 3.28
|
| 108 |
+
text = "ᅮ"
|
| 109 |
+
intervals [16]:
|
| 110 |
+
xmin = 3.28
|
| 111 |
+
xmax = 3.32
|
| 112 |
+
text = "ᄒ"
|
| 113 |
+
intervals [17]:
|
| 114 |
+
xmin = 3.32
|
| 115 |
+
xmax = 3.51
|
| 116 |
+
text = "ᅪ"
|
| 117 |
+
intervals [18]:
|
| 118 |
+
xmin = 3.51
|
| 119 |
+
xmax = 3.58
|
| 120 |
+
text = "ᄅ"
|
| 121 |
+
intervals [19]:
|
| 122 |
+
xmin = 3.58
|
| 123 |
+
xmax = 3.64
|
| 124 |
+
text = "ᅳ"
|
| 125 |
+
intervals [20]:
|
| 126 |
+
xmin = 3.64
|
| 127 |
+
xmax = 3.82
|
| 128 |
+
text = "ᆯ"
|
| 129 |
+
intervals [21]:
|
| 130 |
+
xmin = 3.82
|
| 131 |
+
xmax = 3.95
|
| 132 |
+
text = "ᄇ"
|
| 133 |
+
intervals [22]:
|
| 134 |
+
xmin = 3.95
|
| 135 |
+
xmax = 4.02
|
| 136 |
+
text = "ᅢ"
|
| 137 |
+
intervals [23]:
|
| 138 |
+
xmin = 4.02
|
| 139 |
+
xmax = 4.03
|
| 140 |
+
text = "ᄋ"
|
| 141 |
+
intervals [24]:
|
| 142 |
+
xmin = 4.03
|
| 143 |
+
xmax = 4.25
|
| 144 |
+
text = "ᅮ"
|
| 145 |
+
intervals [25]:
|
| 146 |
+
xmin = 4.25
|
| 147 |
+
xmax = 4.33
|
| 148 |
+
text = "ᄀ"
|
| 149 |
+
intervals [26]:
|
| 150 |
+
xmin = 4.33
|
| 151 |
+
xmax = 4.45
|
| 152 |
+
text = "ᅩ"
|
| 153 |
+
intervals [27]:
|
| 154 |
+
xmin = 4.45
|
| 155 |
+
xmax = 4.46
|
| 156 |
+
text = "ᄋ"
|
| 157 |
+
intervals [28]:
|
| 158 |
+
xmin = 4.46
|
| 159 |
+
xmax = 4.54
|
| 160 |
+
text = "ᅵ"
|
| 161 |
+
intervals [29]:
|
| 162 |
+
xmin = 4.54
|
| 163 |
+
xmax = 4.57
|
| 164 |
+
text = "ᆮ"
|
| 165 |
+
intervals [30]:
|
| 166 |
+
xmin = 4.57
|
| 167 |
+
xmax = 4.8
|
| 168 |
+
text = "ᄊ"
|
| 169 |
+
intervals [31]:
|
| 170 |
+
xmin = 4.8
|
| 171 |
+
xmax = 4.84
|
| 172 |
+
text = "ᅳ"
|
| 173 |
+
intervals [32]:
|
| 174 |
+
xmin = 4.84
|
| 175 |
+
xmax = 4.89
|
| 176 |
+
text = "ᆷ"
|
| 177 |
+
intervals [33]:
|
| 178 |
+
xmin = 4.89
|
| 179 |
+
xmax = 4.92
|
| 180 |
+
text = "ᄂ"
|
| 181 |
+
intervals [34]:
|
| 182 |
+
xmin = 4.92
|
| 183 |
+
xmax = 5.05
|
| 184 |
+
text = "ᅵ"
|
| 185 |
+
intervals [35]:
|
| 186 |
+
xmin = 5.05
|
| 187 |
+
xmax = 5.1
|
| 188 |
+
text = "ᄃ"
|
| 189 |
+
intervals [36]:
|
| 190 |
+
xmin = 5.1
|
| 191 |
+
xmax = 5.13
|
| 192 |
+
text = "ᅡ"
|
| 193 |
+
intervals [37]:
|
| 194 |
+
xmin = 5.13
|
| 195 |
+
xmax = 5.7
|
| 196 |
+
text = "sil"
|
preprocessed/kss_elena/TextGrid/1_0024.TextGrid
ADDED
|
@@ -0,0 +1,188 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
File type = "ooTextFile"
|
| 2 |
+
Object class = "TextGrid"
|
| 3 |
+
|
| 4 |
+
xmin = 0
|
| 5 |
+
xmax = 5.82
|
| 6 |
+
tiers? <exists>
|
| 7 |
+
size = 2
|
| 8 |
+
item []:
|
| 9 |
+
item [1]:
|
| 10 |
+
class = "IntervalTier"
|
| 11 |
+
name = "words"
|
| 12 |
+
xmin = 0
|
| 13 |
+
xmax = 5.82
|
| 14 |
+
intervals: size = 9
|
| 15 |
+
intervals [1]:
|
| 16 |
+
xmin = 0
|
| 17 |
+
xmax = 1.14
|
| 18 |
+
text = "<eps>"
|
| 19 |
+
intervals [2]:
|
| 20 |
+
xmin = 1.14
|
| 21 |
+
xmax = 1.77
|
| 22 |
+
text = "이거"
|
| 23 |
+
intervals [3]:
|
| 24 |
+
xmin = 1.77
|
| 25 |
+
xmax = 2.33
|
| 26 |
+
text = "다른"
|
| 27 |
+
intervals [4]:
|
| 28 |
+
xmin = 2.33
|
| 29 |
+
xmax = 2.79
|
| 30 |
+
text = "걸로"
|
| 31 |
+
intervals [5]:
|
| 32 |
+
xmin = 2.79
|
| 33 |
+
xmax = 2.88
|
| 34 |
+
text = "<eps>"
|
| 35 |
+
intervals [6]:
|
| 36 |
+
xmin = 2.88
|
| 37 |
+
xmax = 3.43
|
| 38 |
+
text = "바꿀"
|
| 39 |
+
intervals [7]:
|
| 40 |
+
xmin = 3.43
|
| 41 |
+
xmax = 3.86
|
| 42 |
+
text = "수"
|
| 43 |
+
intervals [8]:
|
| 44 |
+
xmin = 3.86
|
| 45 |
+
xmax = 5.04
|
| 46 |
+
text = "있을까요"
|
| 47 |
+
intervals [9]:
|
| 48 |
+
xmin = 5.04
|
| 49 |
+
xmax = 5.82
|
| 50 |
+
text = "<eps>"
|
| 51 |
+
item [2]:
|
| 52 |
+
class = "IntervalTier"
|
| 53 |
+
name = "phones"
|
| 54 |
+
xmin = 0
|
| 55 |
+
xmax = 5.82
|
| 56 |
+
intervals: size = 33
|
| 57 |
+
intervals [1]:
|
| 58 |
+
xmin = 0
|
| 59 |
+
xmax = 1.14
|
| 60 |
+
text = "sil"
|
| 61 |
+
intervals [2]:
|
| 62 |
+
xmin = 1.14
|
| 63 |
+
xmax = 1.15
|
| 64 |
+
text = "ᄋ"
|
| 65 |
+
intervals [3]:
|
| 66 |
+
xmin = 1.15
|
| 67 |
+
xmax = 1.29
|
| 68 |
+
text = "ᅵ"
|
| 69 |
+
intervals [4]:
|
| 70 |
+
xmin = 1.29
|
| 71 |
+
xmax = 1.37
|
| 72 |
+
text = "ᄀ"
|
| 73 |
+
intervals [5]:
|
| 74 |
+
xmin = 1.37
|
| 75 |
+
xmax = 1.77
|
| 76 |
+
text = "ᅥ"
|
| 77 |
+
intervals [6]:
|
| 78 |
+
xmin = 1.77
|
| 79 |
+
xmax = 1.9
|
| 80 |
+
text = "ᄃ"
|
| 81 |
+
intervals [7]:
|
| 82 |
+
xmin = 1.9
|
| 83 |
+
xmax = 2.01
|
| 84 |
+
text = "ᅡ"
|
| 85 |
+
intervals [8]:
|
| 86 |
+
xmin = 2.01
|
| 87 |
+
xmax = 2.06
|
| 88 |
+
text = "ᄅ"
|
| 89 |
+
intervals [9]:
|
| 90 |
+
xmin = 2.06
|
| 91 |
+
xmax = 2.12
|
| 92 |
+
text = "ᅳ"
|
| 93 |
+
intervals [10]:
|
| 94 |
+
xmin = 2.12
|
| 95 |
+
xmax = 2.33
|
| 96 |
+
text = "ᆫ"
|
| 97 |
+
intervals [11]:
|
| 98 |
+
xmin = 2.33
|
| 99 |
+
xmax = 2.39
|
| 100 |
+
text = "ᄀ"
|
| 101 |
+
intervals [12]:
|
| 102 |
+
xmin = 2.39
|
| 103 |
+
xmax = 2.48
|
| 104 |
+
text = "ᅥ"
|
| 105 |
+
intervals [13]:
|
| 106 |
+
xmin = 2.48
|
| 107 |
+
xmax = 2.52
|
| 108 |
+
text = "ᆯ"
|
| 109 |
+
intervals [14]:
|
| 110 |
+
xmin = 2.52
|
| 111 |
+
xmax = 2.57
|
| 112 |
+
text = "ᄅ"
|
| 113 |
+
intervals [15]:
|
| 114 |
+
xmin = 2.57
|
| 115 |
+
xmax = 2.79
|
| 116 |
+
text = "ᅩ"
|
| 117 |
+
intervals [16]:
|
| 118 |
+
xmin = 2.79
|
| 119 |
+
xmax = 2.88
|
| 120 |
+
text = "sil"
|
| 121 |
+
intervals [17]:
|
| 122 |
+
xmin = 2.88
|
| 123 |
+
xmax = 2.97
|
| 124 |
+
text = "ᄇ"
|
| 125 |
+
intervals [18]:
|
| 126 |
+
xmin = 2.97
|
| 127 |
+
xmax = 3.04
|
| 128 |
+
text = "ᅡ"
|
| 129 |
+
intervals [19]:
|
| 130 |
+
xmin = 3.04
|
| 131 |
+
xmax = 3.25
|
| 132 |
+
text = "ᄁ"
|
| 133 |
+
intervals [20]:
|
| 134 |
+
xmin = 3.25
|
| 135 |
+
xmax = 3.29
|
| 136 |
+
text = "ᅮ"
|
| 137 |
+
intervals [21]:
|
| 138 |
+
xmin = 3.29
|
| 139 |
+
xmax = 3.43
|
| 140 |
+
text = "ᆯ"
|
| 141 |
+
intervals [22]:
|
| 142 |
+
xmin = 3.43
|
| 143 |
+
xmax = 3.72
|
| 144 |
+
text = "ᄊ"
|
| 145 |
+
intervals [23]:
|
| 146 |
+
xmin = 3.72
|
| 147 |
+
xmax = 3.86
|
| 148 |
+
text = "ᅮ"
|
| 149 |
+
intervals [24]:
|
| 150 |
+
xmin = 3.86
|
| 151 |
+
xmax = 3.87
|
| 152 |
+
text = "ᄋ"
|
| 153 |
+
intervals [25]:
|
| 154 |
+
xmin = 3.87
|
| 155 |
+
xmax = 4.31
|
| 156 |
+
text = "ᅵ"
|
| 157 |
+
intervals [26]:
|
| 158 |
+
xmin = 4.31
|
| 159 |
+
xmax = 4.49
|
| 160 |
+
text = "ᄊ"
|
| 161 |
+
intervals [27]:
|
| 162 |
+
xmin = 4.49
|
| 163 |
+
xmax = 4.52
|
| 164 |
+
text = "ᅳ"
|
| 165 |
+
intervals [28]:
|
| 166 |
+
xmin = 4.52
|
| 167 |
+
xmax = 4.67
|
| 168 |
+
text = "ᆯ"
|
| 169 |
+
intervals [29]:
|
| 170 |
+
xmin = 4.67
|
| 171 |
+
xmax = 4.74
|
| 172 |
+
text = "ᄁ"
|
| 173 |
+
intervals [30]:
|
| 174 |
+
xmin = 4.74
|
| 175 |
+
xmax = 4.89
|
| 176 |
+
text = "ᅡ"
|
| 177 |
+
intervals [31]:
|
| 178 |
+
xmin = 4.89
|
| 179 |
+
xmax = 4.95
|
| 180 |
+
text = "ᄋ"
|
| 181 |
+
intervals [32]:
|
| 182 |
+
xmin = 4.95
|
| 183 |
+
xmax = 5.04
|
| 184 |
+
text = "ᅭ"
|
| 185 |
+
intervals [33]:
|
| 186 |
+
xmin = 5.04
|
| 187 |
+
xmax = 5.82
|
| 188 |
+
text = "sil"
|
preprocessed/kss_elena/TextGrid/1_0025.TextGrid
ADDED
|
@@ -0,0 +1,180 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
File type = "ooTextFile"
|
| 2 |
+
Object class = "TextGrid"
|
| 3 |
+
|
| 4 |
+
xmin = 0
|
| 5 |
+
xmax = 4.8
|
| 6 |
+
tiers? <exists>
|
| 7 |
+
size = 2
|
| 8 |
+
item []:
|
| 9 |
+
item [1]:
|
| 10 |
+
class = "IntervalTier"
|
| 11 |
+
name = "words"
|
| 12 |
+
xmin = 0
|
| 13 |
+
xmax = 4.8
|
| 14 |
+
intervals: size = 9
|
| 15 |
+
intervals [1]:
|
| 16 |
+
xmin = 0
|
| 17 |
+
xmax = 0.81
|
| 18 |
+
text = "<eps>"
|
| 19 |
+
intervals [2]:
|
| 20 |
+
xmin = 0.81
|
| 21 |
+
xmax = 1.66
|
| 22 |
+
text = "색깔을"
|
| 23 |
+
intervals [3]:
|
| 24 |
+
xmin = 1.66
|
| 25 |
+
xmax = 1.74
|
| 26 |
+
text = "<eps>"
|
| 27 |
+
intervals [4]:
|
| 28 |
+
xmin = 1.74
|
| 29 |
+
xmax = 2.47
|
| 30 |
+
text = "바꾸는"
|
| 31 |
+
intervals [5]:
|
| 32 |
+
xmin = 2.47
|
| 33 |
+
xmax = 2.81
|
| 34 |
+
text = "게"
|
| 35 |
+
intervals [6]:
|
| 36 |
+
xmin = 2.81
|
| 37 |
+
xmax = 3.26
|
| 38 |
+
text = "나을"
|
| 39 |
+
intervals [7]:
|
| 40 |
+
xmin = 3.26
|
| 41 |
+
xmax = 3.49
|
| 42 |
+
text = "거"
|
| 43 |
+
intervals [8]:
|
| 44 |
+
xmin = 3.49
|
| 45 |
+
xmax = 3.92
|
| 46 |
+
text = "같아"
|
| 47 |
+
intervals [9]:
|
| 48 |
+
xmin = 3.92
|
| 49 |
+
xmax = 4.8
|
| 50 |
+
text = "<eps>"
|
| 51 |
+
item [2]:
|
| 52 |
+
class = "IntervalTier"
|
| 53 |
+
name = "phones"
|
| 54 |
+
xmin = 0
|
| 55 |
+
xmax = 4.8
|
| 56 |
+
intervals: size = 31
|
| 57 |
+
intervals [1]:
|
| 58 |
+
xmin = 0
|
| 59 |
+
xmax = 0.81
|
| 60 |
+
text = "sil"
|
| 61 |
+
intervals [2]:
|
| 62 |
+
xmin = 0.81
|
| 63 |
+
xmax = 0.92
|
| 64 |
+
text = "ᄉ"
|
| 65 |
+
intervals [3]:
|
| 66 |
+
xmin = 0.92
|
| 67 |
+
xmax = 0.97
|
| 68 |
+
text = "ᅢ"
|
| 69 |
+
intervals [4]:
|
| 70 |
+
xmin = 0.97
|
| 71 |
+
xmax = 1.06
|
| 72 |
+
text = "ᆨ"
|
| 73 |
+
intervals [5]:
|
| 74 |
+
xmin = 1.06
|
| 75 |
+
xmax = 1.18
|
| 76 |
+
text = "ᄁ"
|
| 77 |
+
intervals [6]:
|
| 78 |
+
xmin = 1.18
|
| 79 |
+
xmax = 1.42
|
| 80 |
+
text = "ᅡ"
|
| 81 |
+
intervals [7]:
|
| 82 |
+
xmin = 1.42
|
| 83 |
+
xmax = 1.47
|
| 84 |
+
text = "ᄅ"
|
| 85 |
+
intervals [8]:
|
| 86 |
+
xmin = 1.47
|
| 87 |
+
xmax = 1.55
|
| 88 |
+
text = "ᅳ"
|
| 89 |
+
intervals [9]:
|
| 90 |
+
xmin = 1.55
|
| 91 |
+
xmax = 1.66
|
| 92 |
+
text = "ᆯ"
|
| 93 |
+
intervals [10]:
|
| 94 |
+
xmin = 1.66
|
| 95 |
+
xmax = 1.74
|
| 96 |
+
text = "sil"
|
| 97 |
+
intervals [11]:
|
| 98 |
+
xmin = 1.74
|
| 99 |
+
xmax = 1.83
|
| 100 |
+
text = "ᄇ"
|
| 101 |
+
intervals [12]:
|
| 102 |
+
xmin = 1.83
|
| 103 |
+
xmax = 1.93
|
| 104 |
+
text = "ᅡ"
|
| 105 |
+
intervals [13]:
|
| 106 |
+
xmin = 1.93
|
| 107 |
+
xmax = 2.06
|
| 108 |
+
text = "ᄁ"
|
| 109 |
+
intervals [14]:
|
| 110 |
+
xmin = 2.06
|
| 111 |
+
xmax = 2.17
|
| 112 |
+
text = "ᅮ"
|
| 113 |
+
intervals [15]:
|
| 114 |
+
xmin = 2.17
|
| 115 |
+
xmax = 2.27
|
| 116 |
+
text = "ᄂ"
|
| 117 |
+
intervals [16]:
|
| 118 |
+
xmin = 2.27
|
| 119 |
+
xmax = 2.31
|
| 120 |
+
text = "ᅳ"
|
| 121 |
+
intervals [17]:
|
| 122 |
+
xmin = 2.31
|
| 123 |
+
xmax = 2.47
|
| 124 |
+
text = "ᆫ"
|
| 125 |
+
intervals [18]:
|
| 126 |
+
xmin = 2.47
|
| 127 |
+
xmax = 2.5
|
| 128 |
+
text = "ᄀ"
|
| 129 |
+
intervals [19]:
|
| 130 |
+
xmin = 2.5
|
| 131 |
+
xmax = 2.81
|
| 132 |
+
text = "ᅦ"
|
| 133 |
+
intervals [20]:
|
| 134 |
+
xmin = 2.81
|
| 135 |
+
xmax = 2.94
|
| 136 |
+
text = "ᄂ"
|
| 137 |
+
intervals [21]:
|
| 138 |
+
xmin = 2.94
|
| 139 |
+
xmax = 3.08
|
| 140 |
+
text = "ᅡ"
|
| 141 |
+
intervals [22]:
|
| 142 |
+
xmin = 3.08
|
| 143 |
+
xmax = 3.09
|
| 144 |
+
text = "ᄋ"
|
| 145 |
+
intervals [23]:
|
| 146 |
+
xmin = 3.09
|
| 147 |
+
xmax = 3.12
|
| 148 |
+
text = "ᅳ"
|
| 149 |
+
intervals [24]:
|
| 150 |
+
xmin = 3.12
|
| 151 |
+
xmax = 3.26
|
| 152 |
+
text = "ᆯ"
|
| 153 |
+
intervals [25]:
|
| 154 |
+
xmin = 3.26
|
| 155 |
+
xmax = 3.37
|
| 156 |
+
text = "ᄀ"
|
| 157 |
+
intervals [26]:
|
| 158 |
+
xmin = 3.37
|
| 159 |
+
xmax = 3.49
|
| 160 |
+
text = "ᅥ"
|
| 161 |
+
intervals [27]:
|
| 162 |
+
xmin = 3.49
|
| 163 |
+
xmax = 3.59
|
| 164 |
+
text = "ᄀ"
|
| 165 |
+
intervals [28]:
|
| 166 |
+
xmin = 3.59
|
| 167 |
+
xmax = 3.64
|
| 168 |
+
text = "ᅡ"
|
| 169 |
+
intervals [29]:
|
| 170 |
+
xmin = 3.64
|
| 171 |
+
xmax = 3.88
|
| 172 |
+
text = "ᄐ"
|
| 173 |
+
intervals [30]:
|
| 174 |
+
xmin = 3.88
|
| 175 |
+
xmax = 3.92
|
| 176 |
+
text = "ᅡ"
|
| 177 |
+
intervals [31]:
|
| 178 |
+
xmin = 3.92
|
| 179 |
+
xmax = 4.8
|
| 180 |
+
text = "sil"
|
preprocessed/kss_elena/TextGrid/1_0026.TextGrid
ADDED
|
@@ -0,0 +1,156 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
File type = "ooTextFile"
|
| 2 |
+
Object class = "TextGrid"
|
| 3 |
+
|
| 4 |
+
xmin = 0
|
| 5 |
+
xmax = 4.62
|
| 6 |
+
tiers? <exists>
|
| 7 |
+
size = 2
|
| 8 |
+
item []:
|
| 9 |
+
item [1]:
|
| 10 |
+
class = "IntervalTier"
|
| 11 |
+
name = "words"
|
| 12 |
+
xmin = 0
|
| 13 |
+
xmax = 4.62
|
| 14 |
+
intervals: size = 9
|
| 15 |
+
intervals [1]:
|
| 16 |
+
xmin = 0
|
| 17 |
+
xmax = 0.99
|
| 18 |
+
text = "<eps>"
|
| 19 |
+
intervals [2]:
|
| 20 |
+
xmin = 0.99
|
| 21 |
+
xmax = 1.92
|
| 22 |
+
text = "소영이"
|
| 23 |
+
intervals [3]:
|
| 24 |
+
xmin = 1.92
|
| 25 |
+
xmax = 2.13
|
| 26 |
+
text = "<eps>"
|
| 27 |
+
intervals [4]:
|
| 28 |
+
xmin = 2.13
|
| 29 |
+
xmax = 2.49
|
| 30 |
+
text = "좀"
|
| 31 |
+
intervals [5]:
|
| 32 |
+
xmin = 2.49
|
| 33 |
+
xmax = 2.55
|
| 34 |
+
text = "<eps>"
|
| 35 |
+
intervals [6]:
|
| 36 |
+
xmin = 2.55
|
| 37 |
+
xmax = 2.81
|
| 38 |
+
text = "바꿔"
|
| 39 |
+
intervals [7]:
|
| 40 |
+
xmin = 2.81
|
| 41 |
+
xmax = 2.93
|
| 42 |
+
text = "<eps>"
|
| 43 |
+
intervals [8]:
|
| 44 |
+
xmin = 2.93
|
| 45 |
+
xmax = 3.35
|
| 46 |
+
text = "주세요"
|
| 47 |
+
intervals [9]:
|
| 48 |
+
xmin = 3.35
|
| 49 |
+
xmax = 4.62
|
| 50 |
+
text = "<eps>"
|
| 51 |
+
item [2]:
|
| 52 |
+
class = "IntervalTier"
|
| 53 |
+
name = "phones"
|
| 54 |
+
xmin = 0
|
| 55 |
+
xmax = 4.62
|
| 56 |
+
intervals: size = 25
|
| 57 |
+
intervals [1]:
|
| 58 |
+
xmin = 0
|
| 59 |
+
xmax = 0.99
|
| 60 |
+
text = "sil"
|
| 61 |
+
intervals [2]:
|
| 62 |
+
xmin = 0.99
|
| 63 |
+
xmax = 1.11
|
| 64 |
+
text = "ᄉ"
|
| 65 |
+
intervals [3]:
|
| 66 |
+
xmin = 1.11
|
| 67 |
+
xmax = 1.24
|
| 68 |
+
text = "ᅩ"
|
| 69 |
+
intervals [4]:
|
| 70 |
+
xmin = 1.24
|
| 71 |
+
xmax = 1.25
|
| 72 |
+
text = "ᄋ"
|
| 73 |
+
intervals [5]:
|
| 74 |
+
xmin = 1.25
|
| 75 |
+
xmax = 1.4
|
| 76 |
+
text = "ᅧ"
|
| 77 |
+
intervals [6]:
|
| 78 |
+
xmin = 1.4
|
| 79 |
+
xmax = 1.54
|
| 80 |
+
text = "ᆼ"
|
| 81 |
+
intervals [7]:
|
| 82 |
+
xmin = 1.54
|
| 83 |
+
xmax = 1.55
|
| 84 |
+
text = "ᄋ"
|
| 85 |
+
intervals [8]:
|
| 86 |
+
xmin = 1.55
|
| 87 |
+
xmax = 1.92
|
| 88 |
+
text = "ᅵ"
|
| 89 |
+
intervals [9]:
|
| 90 |
+
xmin = 1.92
|
| 91 |
+
xmax = 2.13
|
| 92 |
+
text = "sil"
|
| 93 |
+
intervals [10]:
|
| 94 |
+
xmin = 2.13
|
| 95 |
+
xmax = 2.21
|
| 96 |
+
text = "ᄍ"
|
| 97 |
+
intervals [11]:
|
| 98 |
+
xmin = 2.21
|
| 99 |
+
xmax = 2.25
|
| 100 |
+
text = "ᅩ"
|
| 101 |
+
intervals [12]:
|
| 102 |
+
xmin = 2.25
|
| 103 |
+
xmax = 2.49
|
| 104 |
+
text = "ᆷ"
|
| 105 |
+
intervals [13]:
|
| 106 |
+
xmin = 2.49
|
| 107 |
+
xmax = 2.55
|
| 108 |
+
text = "sil"
|
| 109 |
+
intervals [14]:
|
| 110 |
+
xmin = 2.55
|
| 111 |
+
xmax = 2.64
|
| 112 |
+
text = "ᄇ"
|
| 113 |
+
intervals [15]:
|
| 114 |
+
xmin = 2.64
|
| 115 |
+
xmax = 2.7
|
| 116 |
+
text = "ᅡ"
|
| 117 |
+
intervals [16]:
|
| 118 |
+
xmin = 2.7
|
| 119 |
+
xmax = 2.8
|
| 120 |
+
text = "ᄁ"
|
| 121 |
+
intervals [17]:
|
| 122 |
+
xmin = 2.8
|
| 123 |
+
xmax = 2.81
|
| 124 |
+
text = "ᅯ"
|
| 125 |
+
intervals [18]:
|
| 126 |
+
xmin = 2.81
|
| 127 |
+
xmax = 2.93
|
| 128 |
+
text = "sil"
|
| 129 |
+
intervals [19]:
|
| 130 |
+
xmin = 2.93
|
| 131 |
+
xmax = 2.99
|
| 132 |
+
text = "ᄌ"
|
| 133 |
+
intervals [20]:
|
| 134 |
+
xmin = 2.99
|
| 135 |
+
xmax = 3.03
|
| 136 |
+
text = "ᅮ"
|
| 137 |
+
intervals [21]:
|
| 138 |
+
xmin = 3.03
|
| 139 |
+
xmax = 3.15
|
| 140 |
+
text = "ᄉ"
|
| 141 |
+
intervals [22]:
|
| 142 |
+
xmin = 3.15
|
| 143 |
+
xmax = 3.26
|
| 144 |
+
text = "ᅦ"
|
| 145 |
+
intervals [23]:
|
| 146 |
+
xmin = 3.26
|
| 147 |
+
xmax = 3.27
|
| 148 |
+
text = "ᄋ"
|
| 149 |
+
intervals [24]:
|
| 150 |
+
xmin = 3.27
|
| 151 |
+
xmax = 3.35
|
| 152 |
+
text = "ᅭ"
|
| 153 |
+
intervals [25]:
|
| 154 |
+
xmin = 3.35
|
| 155 |
+
xmax = 4.62
|
| 156 |
+
text = "sil"
|
preprocessed/kss_elena/TextGrid/1_0027.TextGrid
ADDED
|
@@ -0,0 +1,144 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
File type = "ooTextFile"
|
| 2 |
+
Object class = "TextGrid"
|
| 3 |
+
|
| 4 |
+
xmin = 0
|
| 5 |
+
xmax = 4.56
|
| 6 |
+
tiers? <exists>
|
| 7 |
+
size = 2
|
| 8 |
+
item []:
|
| 9 |
+
item [1]:
|
| 10 |
+
class = "IntervalTier"
|
| 11 |
+
name = "words"
|
| 12 |
+
xmin = 0
|
| 13 |
+
xmax = 4.56
|
| 14 |
+
intervals: size = 7
|
| 15 |
+
intervals [1]:
|
| 16 |
+
xmin = 0
|
| 17 |
+
xmax = 0.92
|
| 18 |
+
text = "<eps>"
|
| 19 |
+
intervals [2]:
|
| 20 |
+
xmin = 0.92
|
| 21 |
+
xmax = 1.53
|
| 22 |
+
text = "눈이"
|
| 23 |
+
intervals [3]:
|
| 24 |
+
xmin = 1.53
|
| 25 |
+
xmax = 1.57
|
| 26 |
+
text = "<eps>"
|
| 27 |
+
intervals [4]:
|
| 28 |
+
xmin = 1.57
|
| 29 |
+
xmax = 2.48
|
| 30 |
+
text = "얼음으로"
|
| 31 |
+
intervals [5]:
|
| 32 |
+
xmin = 2.48
|
| 33 |
+
xmax = 2.64
|
| 34 |
+
text = "<eps>"
|
| 35 |
+
intervals [6]:
|
| 36 |
+
xmin = 2.64
|
| 37 |
+
xmax = 3.4
|
| 38 |
+
text = "바뀌었어"
|
| 39 |
+
intervals [7]:
|
| 40 |
+
xmin = 3.4
|
| 41 |
+
xmax = 4.56
|
| 42 |
+
text = "<eps>"
|
| 43 |
+
item [2]:
|
| 44 |
+
class = "IntervalTier"
|
| 45 |
+
name = "phones"
|
| 46 |
+
xmin = 0
|
| 47 |
+
xmax = 4.56
|
| 48 |
+
intervals: size = 24
|
| 49 |
+
intervals [1]:
|
| 50 |
+
xmin = 0
|
| 51 |
+
xmax = 0.92
|
| 52 |
+
text = "sil"
|
| 53 |
+
intervals [2]:
|
| 54 |
+
xmin = 0.92
|
| 55 |
+
xmax = 1.07
|
| 56 |
+
text = "ᄂ"
|
| 57 |
+
intervals [3]:
|
| 58 |
+
xmin = 1.07
|
| 59 |
+
xmax = 1.1
|
| 60 |
+
text = "ᅮ"
|
| 61 |
+
intervals [4]:
|
| 62 |
+
xmin = 1.1
|
| 63 |
+
xmax = 1.27
|
| 64 |
+
text = "ᄂ"
|
| 65 |
+
intervals [5]:
|
| 66 |
+
xmin = 1.27
|
| 67 |
+
xmax = 1.53
|
| 68 |
+
text = "ᅵ"
|
| 69 |
+
intervals [6]:
|
| 70 |
+
xmin = 1.53
|
| 71 |
+
xmax = 1.57
|
| 72 |
+
text = "sil"
|
| 73 |
+
intervals [7]:
|
| 74 |
+
xmin = 1.57
|
| 75 |
+
xmax = 1.58
|
| 76 |
+
text = "ᄋ"
|
| 77 |
+
intervals [8]:
|
| 78 |
+
xmin = 1.58
|
| 79 |
+
xmax = 1.79
|
| 80 |
+
text = "ᅥ"
|
| 81 |
+
intervals [9]:
|
| 82 |
+
xmin = 1.79
|
| 83 |
+
xmax = 1.88
|
| 84 |
+
text = "ᄅ"
|
| 85 |
+
intervals [10]:
|
| 86 |
+
xmin = 1.88
|
| 87 |
+
xmax = 1.96
|
| 88 |
+
text = "ᅳ"
|
| 89 |
+
intervals [11]:
|
| 90 |
+
xmin = 1.96
|
| 91 |
+
xmax = 2.18
|
| 92 |
+
text = "ᄆ"
|
| 93 |
+
intervals [12]:
|
| 94 |
+
xmin = 2.18
|
| 95 |
+
xmax = 2.21
|
| 96 |
+
text = "ᅳ"
|
| 97 |
+
intervals [13]:
|
| 98 |
+
xmin = 2.21
|
| 99 |
+
xmax = 2.28
|
| 100 |
+
text = "ᄅ"
|
| 101 |
+
intervals [14]:
|
| 102 |
+
xmin = 2.28
|
| 103 |
+
xmax = 2.48
|
| 104 |
+
text = "ᅩ"
|
| 105 |
+
intervals [15]:
|
| 106 |
+
xmin = 2.48
|
| 107 |
+
xmax = 2.64
|
| 108 |
+
text = "sil"
|
| 109 |
+
intervals [16]:
|
| 110 |
+
xmin = 2.64
|
| 111 |
+
xmax = 2.73
|
| 112 |
+
text = "ᄇ"
|
| 113 |
+
intervals [17]:
|
| 114 |
+
xmin = 2.73
|
| 115 |
+
xmax = 2.81
|
| 116 |
+
text = "ᅡ"
|
| 117 |
+
intervals [18]:
|
| 118 |
+
xmin = 2.81
|
| 119 |
+
xmax = 2.96
|
| 120 |
+
text = "ᄁ"
|
| 121 |
+
intervals [19]:
|
| 122 |
+
xmin = 2.96
|
| 123 |
+
xmax = 2.97
|
| 124 |
+
text = "ᅱ"
|
| 125 |
+
intervals [20]:
|
| 126 |
+
xmin = 2.97
|
| 127 |
+
xmax = 2.98
|
| 128 |
+
text = "ᄋ"
|
| 129 |
+
intervals [21]:
|
| 130 |
+
xmin = 2.98
|
| 131 |
+
xmax = 3.13
|
| 132 |
+
text = "ᅥ"
|
| 133 |
+
intervals [22]:
|
| 134 |
+
xmin = 3.13
|
| 135 |
+
xmax = 3.36
|
| 136 |
+
text = "ᄊ"
|
| 137 |
+
intervals [23]:
|
| 138 |
+
xmin = 3.36
|
| 139 |
+
xmax = 3.4
|
| 140 |
+
text = "ᅥ"
|
| 141 |
+
intervals [24]:
|
| 142 |
+
xmin = 3.4
|
| 143 |
+
xmax = 4.56
|
| 144 |
+
text = "sil"
|
preprocessed/kss_elena/TextGrid/1_0028.TextGrid
ADDED
|
@@ -0,0 +1,184 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
File type = "ooTextFile"
|
| 2 |
+
Object class = "TextGrid"
|
| 3 |
+
|
| 4 |
+
xmin = 0
|
| 5 |
+
xmax = 6.54
|
| 6 |
+
tiers? <exists>
|
| 7 |
+
size = 2
|
| 8 |
+
item []:
|
| 9 |
+
item [1]:
|
| 10 |
+
class = "IntervalTier"
|
| 11 |
+
name = "words"
|
| 12 |
+
xmin = 0
|
| 13 |
+
xmax = 6.54
|
| 14 |
+
intervals: size = 10
|
| 15 |
+
intervals [1]:
|
| 16 |
+
xmin = 0
|
| 17 |
+
xmax = 1.16
|
| 18 |
+
text = "<eps>"
|
| 19 |
+
intervals [2]:
|
| 20 |
+
xmin = 1.16
|
| 21 |
+
xmax = 2.27
|
| 22 |
+
text = "핸드폰이"
|
| 23 |
+
intervals [3]:
|
| 24 |
+
xmin = 2.27
|
| 25 |
+
xmax = 3.09
|
| 26 |
+
text = "<eps>"
|
| 27 |
+
intervals [4]:
|
| 28 |
+
xmin = 3.09
|
| 29 |
+
xmax = 3.52
|
| 30 |
+
text = "네"
|
| 31 |
+
intervals [5]:
|
| 32 |
+
xmin = 3.52
|
| 33 |
+
xmax = 4.1
|
| 34 |
+
text = "거랑"
|
| 35 |
+
intervals [6]:
|
| 36 |
+
xmin = 4.1
|
| 37 |
+
xmax = 4.3
|
| 38 |
+
text = "<eps>"
|
| 39 |
+
intervals [7]:
|
| 40 |
+
xmin = 4.3
|
| 41 |
+
xmax = 5.18
|
| 42 |
+
text = "바뀐"
|
| 43 |
+
intervals [8]:
|
| 44 |
+
xmin = 5.18
|
| 45 |
+
xmax = 5.35
|
| 46 |
+
text = "거"
|
| 47 |
+
intervals [9]:
|
| 48 |
+
xmin = 5.35
|
| 49 |
+
xmax = 5.85
|
| 50 |
+
text = "같아"
|
| 51 |
+
intervals [10]:
|
| 52 |
+
xmin = 5.85
|
| 53 |
+
xmax = 6.54
|
| 54 |
+
text = "<eps>"
|
| 55 |
+
item [2]:
|
| 56 |
+
class = "IntervalTier"
|
| 57 |
+
name = "phones"
|
| 58 |
+
xmin = 0
|
| 59 |
+
xmax = 6.54
|
| 60 |
+
intervals: size = 31
|
| 61 |
+
intervals [1]:
|
| 62 |
+
xmin = 0
|
| 63 |
+
xmax = 1.16
|
| 64 |
+
text = "sil"
|
| 65 |
+
intervals [2]:
|
| 66 |
+
xmin = 1.16
|
| 67 |
+
xmax = 1.23
|
| 68 |
+
text = "ᄒ"
|
| 69 |
+
intervals [3]:
|
| 70 |
+
xmin = 1.23
|
| 71 |
+
xmax = 1.29
|
| 72 |
+
text = "ᅢ"
|
| 73 |
+
intervals [4]:
|
| 74 |
+
xmin = 1.29
|
| 75 |
+
xmax = 1.45
|
| 76 |
+
text = "ᆫ"
|
| 77 |
+
intervals [5]:
|
| 78 |
+
xmin = 1.45
|
| 79 |
+
xmax = 1.5
|
| 80 |
+
text = "ᄃ"
|
| 81 |
+
intervals [6]:
|
| 82 |
+
xmin = 1.5
|
| 83 |
+
xmax = 1.62
|
| 84 |
+
text = "ᅳ"
|
| 85 |
+
intervals [7]:
|
| 86 |
+
xmin = 1.62
|
| 87 |
+
xmax = 1.63
|
| 88 |
+
text = "ᄑ"
|
| 89 |
+
intervals [8]:
|
| 90 |
+
xmin = 1.63
|
| 91 |
+
xmax = 1.86
|
| 92 |
+
text = "ᅩ"
|
| 93 |
+
intervals [9]:
|
| 94 |
+
xmin = 1.86
|
| 95 |
+
xmax = 2.02
|
| 96 |
+
text = "ᄂ"
|
| 97 |
+
intervals [10]:
|
| 98 |
+
xmin = 2.02
|
| 99 |
+
xmax = 2.27
|
| 100 |
+
text = "ᅵ"
|
| 101 |
+
intervals [11]:
|
| 102 |
+
xmin = 2.27
|
| 103 |
+
xmax = 3.09
|
| 104 |
+
text = "sil"
|
| 105 |
+
intervals [12]:
|
| 106 |
+
xmin = 3.09
|
| 107 |
+
xmax = 3.28
|
| 108 |
+
text = "ᄂ"
|
| 109 |
+
intervals [13]:
|
| 110 |
+
xmin = 3.28
|
| 111 |
+
xmax = 3.52
|
| 112 |
+
text = "ᅦ"
|
| 113 |
+
intervals [14]:
|
| 114 |
+
xmin = 3.52
|
| 115 |
+
xmax = 3.56
|
| 116 |
+
text = "ᄀ"
|
| 117 |
+
intervals [15]:
|
| 118 |
+
xmin = 3.56
|
| 119 |
+
xmax = 3.8
|
| 120 |
+
text = "ᅥ"
|
| 121 |
+
intervals [16]:
|
| 122 |
+
xmin = 3.8
|
| 123 |
+
xmax = 3.85
|
| 124 |
+
text = "ᄅ"
|
| 125 |
+
intervals [17]:
|
| 126 |
+
xmin = 3.85
|
| 127 |
+
xmax = 3.99
|
| 128 |
+
text = "ᅡ"
|
| 129 |
+
intervals [18]:
|
| 130 |
+
xmin = 3.99
|
| 131 |
+
xmax = 4.1
|
| 132 |
+
text = "ᆼ"
|
| 133 |
+
intervals [19]:
|
| 134 |
+
xmin = 4.1
|
| 135 |
+
xmax = 4.3
|
| 136 |
+
text = "sil"
|
| 137 |
+
intervals [20]:
|
| 138 |
+
xmin = 4.3
|
| 139 |
+
xmax = 4.43
|
| 140 |
+
text = "ᄇ"
|
| 141 |
+
intervals [21]:
|
| 142 |
+
xmin = 4.43
|
| 143 |
+
xmax = 4.5
|
| 144 |
+
text = "ᅡ"
|
| 145 |
+
intervals [22]:
|
| 146 |
+
xmin = 4.5
|
| 147 |
+
xmax = 4.79
|
| 148 |
+
text = "ᄁ"
|
| 149 |
+
intervals [23]:
|
| 150 |
+
xmin = 4.79
|
| 151 |
+
xmax = 5
|
| 152 |
+
text = "ᅱ"
|
| 153 |
+
intervals [24]:
|
| 154 |
+
xmin = 5
|
| 155 |
+
xmax = 5.18
|
| 156 |
+
text = "ᆫ"
|
| 157 |
+
intervals [25]:
|
| 158 |
+
xmin = 5.18
|
| 159 |
+
xmax = 5.23
|
| 160 |
+
text = "ᄀ"
|
| 161 |
+
intervals [26]:
|
| 162 |
+
xmin = 5.23
|
| 163 |
+
xmax = 5.35
|
| 164 |
+
text = "ᅥ"
|
| 165 |
+
intervals [27]:
|
| 166 |
+
xmin = 5.35
|
| 167 |
+
xmax = 5.48
|
| 168 |
+
text = "ᄀ"
|
| 169 |
+
intervals [28]:
|
| 170 |
+
xmin = 5.48
|
| 171 |
+
xmax = 5.55
|
| 172 |
+
text = "ᅡ"
|
| 173 |
+
intervals [29]:
|
| 174 |
+
xmin = 5.55
|
| 175 |
+
xmax = 5.8
|
| 176 |
+
text = "ᄐ"
|
| 177 |
+
intervals [30]:
|
| 178 |
+
xmin = 5.8
|
| 179 |
+
xmax = 5.85
|
| 180 |
+
text = "ᅡ"
|
| 181 |
+
intervals [31]:
|
| 182 |
+
xmin = 5.85
|
| 183 |
+
xmax = 6.54
|
| 184 |
+
text = "sil"
|
preprocessed/kss_elena/TextGrid/1_0029.TextGrid
ADDED
|
@@ -0,0 +1,228 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
File type = "ooTextFile"
|
| 2 |
+
Object class = "TextGrid"
|
| 3 |
+
|
| 4 |
+
xmin = 0
|
| 5 |
+
xmax = 7.26
|
| 6 |
+
tiers? <exists>
|
| 7 |
+
size = 2
|
| 8 |
+
item []:
|
| 9 |
+
item [1]:
|
| 10 |
+
class = "IntervalTier"
|
| 11 |
+
name = "words"
|
| 12 |
+
xmin = 0
|
| 13 |
+
xmax = 7.26
|
| 14 |
+
intervals: size = 12
|
| 15 |
+
intervals [1]:
|
| 16 |
+
xmin = 0
|
| 17 |
+
xmax = 1.39
|
| 18 |
+
text = "<eps>"
|
| 19 |
+
intervals [2]:
|
| 20 |
+
xmin = 1.39
|
| 21 |
+
xmax = 1.61
|
| 22 |
+
text = "그"
|
| 23 |
+
intervals [3]:
|
| 24 |
+
xmin = 1.61
|
| 25 |
+
xmax = 1.74
|
| 26 |
+
text = "<eps>"
|
| 27 |
+
intervals [4]:
|
| 28 |
+
xmin = 1.74
|
| 29 |
+
xmax = 2.48
|
| 30 |
+
text = "차는"
|
| 31 |
+
intervals [5]:
|
| 32 |
+
xmin = 2.48
|
| 33 |
+
xmax = 2.87
|
| 34 |
+
text = "<eps>"
|
| 35 |
+
intervals [6]:
|
| 36 |
+
xmin = 2.87
|
| 37 |
+
xmax = 3.81
|
| 38 |
+
text = "들판에"
|
| 39 |
+
intervals [7]:
|
| 40 |
+
xmin = 3.81
|
| 41 |
+
xmax = 4.31
|
| 42 |
+
text = "<eps>"
|
| 43 |
+
intervals [8]:
|
| 44 |
+
xmin = 4.31
|
| 45 |
+
xmax = 5.17
|
| 46 |
+
text = "버려진"
|
| 47 |
+
intervals [9]:
|
| 48 |
+
xmin = 5.17
|
| 49 |
+
xmax = 5.43
|
| 50 |
+
text = "채"
|
| 51 |
+
intervals [10]:
|
| 52 |
+
xmin = 5.43
|
| 53 |
+
xmax = 5.87
|
| 54 |
+
text = "<eps>"
|
| 55 |
+
intervals [11]:
|
| 56 |
+
xmin = 5.87
|
| 57 |
+
xmax = 6.83
|
| 58 |
+
text = "발견됐다"
|
| 59 |
+
intervals [12]:
|
| 60 |
+
xmin = 6.83
|
| 61 |
+
xmax = 7.26
|
| 62 |
+
text = "<eps>"
|
| 63 |
+
item [2]:
|
| 64 |
+
class = "IntervalTier"
|
| 65 |
+
name = "phones"
|
| 66 |
+
xmin = 0
|
| 67 |
+
xmax = 7.26
|
| 68 |
+
intervals: size = 40
|
| 69 |
+
intervals [1]:
|
| 70 |
+
xmin = 0
|
| 71 |
+
xmax = 1.39
|
| 72 |
+
text = "sil"
|
| 73 |
+
intervals [2]:
|
| 74 |
+
xmin = 1.39
|
| 75 |
+
xmax = 1.42
|
| 76 |
+
text = "ᄀ"
|
| 77 |
+
intervals [3]:
|
| 78 |
+
xmin = 1.42
|
| 79 |
+
xmax = 1.61
|
| 80 |
+
text = "ᅳ"
|
| 81 |
+
intervals [4]:
|
| 82 |
+
xmin = 1.61
|
| 83 |
+
xmax = 1.74
|
| 84 |
+
text = "sil"
|
| 85 |
+
intervals [5]:
|
| 86 |
+
xmin = 1.74
|
| 87 |
+
xmax = 1.84
|
| 88 |
+
text = "ᄎ"
|
| 89 |
+
intervals [6]:
|
| 90 |
+
xmin = 1.84
|
| 91 |
+
xmax = 1.99
|
| 92 |
+
text = "ᅡ"
|
| 93 |
+
intervals [7]:
|
| 94 |
+
xmin = 1.99
|
| 95 |
+
xmax = 2.36
|
| 96 |
+
text = "ᄂ"
|
| 97 |
+
intervals [8]:
|
| 98 |
+
xmin = 2.36
|
| 99 |
+
xmax = 2.43
|
| 100 |
+
text = "ᅳ"
|
| 101 |
+
intervals [9]:
|
| 102 |
+
xmin = 2.43
|
| 103 |
+
xmax = 2.48
|
| 104 |
+
text = "ᆫ"
|
| 105 |
+
intervals [10]:
|
| 106 |
+
xmin = 2.48
|
| 107 |
+
xmax = 2.87
|
| 108 |
+
text = "sil"
|
| 109 |
+
intervals [11]:
|
| 110 |
+
xmin = 2.87
|
| 111 |
+
xmax = 2.98
|
| 112 |
+
text = "ᄃ"
|
| 113 |
+
intervals [12]:
|
| 114 |
+
xmin = 2.98
|
| 115 |
+
xmax = 3.01
|
| 116 |
+
text = "ᅳ"
|
| 117 |
+
intervals [13]:
|
| 118 |
+
xmin = 3.01
|
| 119 |
+
xmax = 3.16
|
| 120 |
+
text = "ᆯ"
|
| 121 |
+
intervals [14]:
|
| 122 |
+
xmin = 3.16
|
| 123 |
+
xmax = 3.24
|
| 124 |
+
text = "ᄑ"
|
| 125 |
+
intervals [15]:
|
| 126 |
+
xmin = 3.24
|
| 127 |
+
xmax = 3.37
|
| 128 |
+
text = "ᅡ"
|
| 129 |
+
intervals [16]:
|
| 130 |
+
xmin = 3.37
|
| 131 |
+
xmax = 3.52
|
| 132 |
+
text = "ᄂ"
|
| 133 |
+
intervals [17]:
|
| 134 |
+
xmin = 3.52
|
| 135 |
+
xmax = 3.81
|
| 136 |
+
text = "ᅦ"
|
| 137 |
+
intervals [18]:
|
| 138 |
+
xmin = 3.81
|
| 139 |
+
xmax = 4.31
|
| 140 |
+
text = "sil"
|
| 141 |
+
intervals [19]:
|
| 142 |
+
xmin = 4.31
|
| 143 |
+
xmax = 4.43
|
| 144 |
+
text = "ᄇ"
|
| 145 |
+
intervals [20]:
|
| 146 |
+
xmin = 4.43
|
| 147 |
+
xmax = 4.55
|
| 148 |
+
text = "ᅥ"
|
| 149 |
+
intervals [21]:
|
| 150 |
+
xmin = 4.55
|
| 151 |
+
xmax = 4.62
|
| 152 |
+
text = "ᄅ"
|
| 153 |
+
intervals [22]:
|
| 154 |
+
xmin = 4.62
|
| 155 |
+
xmax = 4.85
|
| 156 |
+
text = "ᅧ"
|
| 157 |
+
intervals [23]:
|
| 158 |
+
xmin = 4.85
|
| 159 |
+
xmax = 4.98
|
| 160 |
+
text = "ᄌ"
|
| 161 |
+
intervals [24]:
|
| 162 |
+
xmin = 4.98
|
| 163 |
+
xmax = 5.04
|
| 164 |
+
text = "ᅵ"
|
| 165 |
+
intervals [25]:
|
| 166 |
+
xmin = 5.04
|
| 167 |
+
xmax = 5.17
|
| 168 |
+
text = "ᆫ"
|
| 169 |
+
intervals [26]:
|
| 170 |
+
xmin = 5.17
|
| 171 |
+
xmax = 5.29
|
| 172 |
+
text = "ᄎ"
|
| 173 |
+
intervals [27]:
|
| 174 |
+
xmin = 5.29
|
| 175 |
+
xmax = 5.43
|
| 176 |
+
text = "ᅢ"
|
| 177 |
+
intervals [28]:
|
| 178 |
+
xmin = 5.43
|
| 179 |
+
xmax = 5.87
|
| 180 |
+
text = "sil"
|
| 181 |
+
intervals [29]:
|
| 182 |
+
xmin = 5.87
|
| 183 |
+
xmax = 5.97
|
| 184 |
+
text = "ᄇ"
|
| 185 |
+
intervals [30]:
|
| 186 |
+
xmin = 5.97
|
| 187 |
+
xmax = 6.01
|
| 188 |
+
text = "ᅡ"
|
| 189 |
+
intervals [31]:
|
| 190 |
+
xmin = 6.01
|
| 191 |
+
xmax = 6.17
|
| 192 |
+
text = "ᆯ"
|
| 193 |
+
intervals [32]:
|
| 194 |
+
xmin = 6.17
|
| 195 |
+
xmax = 6.21
|
| 196 |
+
text = "ᄀ"
|
| 197 |
+
intervals [33]:
|
| 198 |
+
xmin = 6.21
|
| 199 |
+
xmax = 6.36
|
| 200 |
+
text = "ᅧ"
|
| 201 |
+
intervals [34]:
|
| 202 |
+
xmin = 6.36
|
| 203 |
+
xmax = 6.39
|
| 204 |
+
text = "ᆫ"
|
| 205 |
+
intervals [35]:
|
| 206 |
+
xmin = 6.39
|
| 207 |
+
xmax = 6.52
|
| 208 |
+
text = "ᄃ"
|
| 209 |
+
intervals [36]:
|
| 210 |
+
xmin = 6.52
|
| 211 |
+
xmax = 6.55
|
| 212 |
+
text = "ᅫ"
|
| 213 |
+
intervals [37]:
|
| 214 |
+
xmin = 6.55
|
| 215 |
+
xmax = 6.6
|
| 216 |
+
text = "ᆮ"
|
| 217 |
+
intervals [38]:
|
| 218 |
+
xmin = 6.6
|
| 219 |
+
xmax = 6.79
|
| 220 |
+
text = "ᄄ"
|
| 221 |
+
intervals [39]:
|
| 222 |
+
xmin = 6.79
|
| 223 |
+
xmax = 6.83
|
| 224 |
+
text = "ᅡ"
|
| 225 |
+
intervals [40]:
|
| 226 |
+
xmin = 6.83
|
| 227 |
+
xmax = 7.26
|
| 228 |
+
text = "sil"
|
preprocessed/kss_elena/TextGrid/1_0030.TextGrid
ADDED
|
@@ -0,0 +1,264 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
File type = "ooTextFile"
|
| 2 |
+
Object class = "TextGrid"
|
| 3 |
+
|
| 4 |
+
xmin = 0
|
| 5 |
+
xmax = 7.68
|
| 6 |
+
tiers? <exists>
|
| 7 |
+
size = 2
|
| 8 |
+
item []:
|
| 9 |
+
item [1]:
|
| 10 |
+
class = "IntervalTier"
|
| 11 |
+
name = "words"
|
| 12 |
+
xmin = 0
|
| 13 |
+
xmax = 7.68
|
| 14 |
+
intervals: size = 12
|
| 15 |
+
intervals [1]:
|
| 16 |
+
xmin = 0
|
| 17 |
+
xmax = 0.97
|
| 18 |
+
text = "<eps>"
|
| 19 |
+
intervals [2]:
|
| 20 |
+
xmin = 0.97
|
| 21 |
+
xmax = 1.42
|
| 22 |
+
text = "이번"
|
| 23 |
+
intervals [3]:
|
| 24 |
+
xmin = 1.42
|
| 25 |
+
xmax = 1.66
|
| 26 |
+
text = "달"
|
| 27 |
+
intervals [4]:
|
| 28 |
+
xmin = 1.66
|
| 29 |
+
xmax = 1.73
|
| 30 |
+
text = "<eps>"
|
| 31 |
+
intervals [5]:
|
| 32 |
+
xmin = 1.73
|
| 33 |
+
xmax = 2.48
|
| 34 |
+
text = "초에"
|
| 35 |
+
intervals [6]:
|
| 36 |
+
xmin = 2.48
|
| 37 |
+
xmax = 2.66
|
| 38 |
+
text = "<eps>"
|
| 39 |
+
intervals [7]:
|
| 40 |
+
xmin = 2.66
|
| 41 |
+
xmax = 3.9
|
| 42 |
+
text = "상어떼가"
|
| 43 |
+
intervals [8]:
|
| 44 |
+
xmin = 3.9
|
| 45 |
+
xmax = 4.4
|
| 46 |
+
text = "<eps>"
|
| 47 |
+
intervals [9]:
|
| 48 |
+
xmin = 4.4
|
| 49 |
+
xmax = 5.89
|
| 50 |
+
text = "해안가에서"
|
| 51 |
+
intervals [10]:
|
| 52 |
+
xmin = 5.89
|
| 53 |
+
xmax = 6.03
|
| 54 |
+
text = "<eps>"
|
| 55 |
+
intervals [11]:
|
| 56 |
+
xmin = 6.03
|
| 57 |
+
xmax = 7.18
|
| 58 |
+
text = "발견됐다"
|
| 59 |
+
intervals [12]:
|
| 60 |
+
xmin = 7.18
|
| 61 |
+
xmax = 7.68
|
| 62 |
+
text = "<eps>"
|
| 63 |
+
item [2]:
|
| 64 |
+
class = "IntervalTier"
|
| 65 |
+
name = "phones"
|
| 66 |
+
xmin = 0
|
| 67 |
+
xmax = 7.68
|
| 68 |
+
intervals: size = 49
|
| 69 |
+
intervals [1]:
|
| 70 |
+
xmin = 0
|
| 71 |
+
xmax = 0.97
|
| 72 |
+
text = "sil"
|
| 73 |
+
intervals [2]:
|
| 74 |
+
xmin = 0.97
|
| 75 |
+
xmax = 0.98
|
| 76 |
+
text = "ᄋ"
|
| 77 |
+
intervals [3]:
|
| 78 |
+
xmin = 0.98
|
| 79 |
+
xmax = 1.14
|
| 80 |
+
text = "ᅵ"
|
| 81 |
+
intervals [4]:
|
| 82 |
+
xmin = 1.14
|
| 83 |
+
xmax = 1.2
|
| 84 |
+
text = "ᄇ"
|
| 85 |
+
intervals [5]:
|
| 86 |
+
xmin = 1.2
|
| 87 |
+
xmax = 1.32
|
| 88 |
+
text = "ᅥ"
|
| 89 |
+
intervals [6]:
|
| 90 |
+
xmin = 1.32
|
| 91 |
+
xmax = 1.42
|
| 92 |
+
text = "ᆫ"
|
| 93 |
+
intervals [7]:
|
| 94 |
+
xmin = 1.42
|
| 95 |
+
xmax = 1.46
|
| 96 |
+
text = "ᄃ"
|
| 97 |
+
intervals [8]:
|
| 98 |
+
xmin = 1.46
|
| 99 |
+
xmax = 1.52
|
| 100 |
+
text = "ᅡ"
|
| 101 |
+
intervals [9]:
|
| 102 |
+
xmin = 1.52
|
| 103 |
+
xmax = 1.66
|
| 104 |
+
text = "ᆯ"
|
| 105 |
+
intervals [10]:
|
| 106 |
+
xmin = 1.66
|
| 107 |
+
xmax = 1.73
|
| 108 |
+
text = "sil"
|
| 109 |
+
intervals [11]:
|
| 110 |
+
xmin = 1.73
|
| 111 |
+
xmax = 1.89
|
| 112 |
+
text = "ᄎ"
|
| 113 |
+
intervals [12]:
|
| 114 |
+
xmin = 1.89
|
| 115 |
+
xmax = 2.01
|
| 116 |
+
text = "ᅩ"
|
| 117 |
+
intervals [13]:
|
| 118 |
+
xmin = 2.01
|
| 119 |
+
xmax = 2.02
|
| 120 |
+
text = "ᄋ"
|
| 121 |
+
intervals [14]:
|
| 122 |
+
xmin = 2.02
|
| 123 |
+
xmax = 2.48
|
| 124 |
+
text = "ᅦ"
|
| 125 |
+
intervals [15]:
|
| 126 |
+
xmin = 2.48
|
| 127 |
+
xmax = 2.66
|
| 128 |
+
text = "sil"
|
| 129 |
+
intervals [16]:
|
| 130 |
+
xmin = 2.66
|
| 131 |
+
xmax = 2.81
|
| 132 |
+
text = "ᄉ"
|
| 133 |
+
intervals [17]:
|
| 134 |
+
xmin = 2.81
|
| 135 |
+
xmax = 2.88
|
| 136 |
+
text = "ᅡ"
|
| 137 |
+
intervals [18]:
|
| 138 |
+
xmin = 2.88
|
| 139 |
+
xmax = 3.04
|
| 140 |
+
text = "ᆼ"
|
| 141 |
+
intervals [19]:
|
| 142 |
+
xmin = 3.04
|
| 143 |
+
xmax = 3.05
|
| 144 |
+
text = "ᄋ"
|
| 145 |
+
intervals [20]:
|
| 146 |
+
xmin = 3.05
|
| 147 |
+
xmax = 3.29
|
| 148 |
+
text = "ᅥ"
|
| 149 |
+
intervals [21]:
|
| 150 |
+
xmin = 3.29
|
| 151 |
+
xmax = 3.34
|
| 152 |
+
text = "ᄄ"
|
| 153 |
+
intervals [22]:
|
| 154 |
+
xmin = 3.34
|
| 155 |
+
xmax = 3.48
|
| 156 |
+
text = "ᅦ"
|
| 157 |
+
intervals [23]:
|
| 158 |
+
xmin = 3.48
|
| 159 |
+
xmax = 3.62
|
| 160 |
+
text = "ᄀ"
|
| 161 |
+
intervals [24]:
|
| 162 |
+
xmin = 3.62
|
| 163 |
+
xmax = 3.9
|
| 164 |
+
text = "ᅡ"
|
| 165 |
+
intervals [25]:
|
| 166 |
+
xmin = 3.9
|
| 167 |
+
xmax = 4.4
|
| 168 |
+
text = "sil"
|
| 169 |
+
intervals [26]:
|
| 170 |
+
xmin = 4.4
|
| 171 |
+
xmax = 4.49
|
| 172 |
+
text = "ᄒ"
|
| 173 |
+
intervals [27]:
|
| 174 |
+
xmin = 4.49
|
| 175 |
+
xmax = 4.7
|
| 176 |
+
text = "ᅢ"
|
| 177 |
+
intervals [28]:
|
| 178 |
+
xmin = 4.7
|
| 179 |
+
xmax = 4.71
|
| 180 |
+
text = "ᄋ"
|
| 181 |
+
intervals [29]:
|
| 182 |
+
xmin = 4.71
|
| 183 |
+
xmax = 4.87
|
| 184 |
+
text = "ᅡ"
|
| 185 |
+
intervals [30]:
|
| 186 |
+
xmin = 4.87
|
| 187 |
+
xmax = 5.1
|
| 188 |
+
text = "ᆫ"
|
| 189 |
+
intervals [31]:
|
| 190 |
+
xmin = 5.1
|
| 191 |
+
xmax = 5.16
|
| 192 |
+
text = "ᄀ"
|
| 193 |
+
intervals [32]:
|
| 194 |
+
xmin = 5.16
|
| 195 |
+
xmax = 5.34
|
| 196 |
+
text = "ᅡ"
|
| 197 |
+
intervals [33]:
|
| 198 |
+
xmin = 5.34
|
| 199 |
+
xmax = 5.35
|
| 200 |
+
text = "ᄋ"
|
| 201 |
+
intervals [34]:
|
| 202 |
+
xmin = 5.35
|
| 203 |
+
xmax = 5.51
|
| 204 |
+
text = "ᅦ"
|
| 205 |
+
intervals [35]:
|
| 206 |
+
xmin = 5.51
|
| 207 |
+
xmax = 5.61
|
| 208 |
+
text = "ᄉ"
|
| 209 |
+
intervals [36]:
|
| 210 |
+
xmin = 5.61
|
| 211 |
+
xmax = 5.89
|
| 212 |
+
text = "ᅥ"
|
| 213 |
+
intervals [37]:
|
| 214 |
+
xmin = 5.89
|
| 215 |
+
xmax = 6.03
|
| 216 |
+
text = "sil"
|
| 217 |
+
intervals [38]:
|
| 218 |
+
xmin = 6.03
|
| 219 |
+
xmax = 6.12
|
| 220 |
+
text = "ᄇ"
|
| 221 |
+
intervals [39]:
|
| 222 |
+
xmin = 6.12
|
| 223 |
+
xmax = 6.15
|
| 224 |
+
text = "ᅡ"
|
| 225 |
+
intervals [40]:
|
| 226 |
+
xmin = 6.15
|
| 227 |
+
xmax = 6.32
|
| 228 |
+
text = "ᆯ"
|
| 229 |
+
intervals [41]:
|
| 230 |
+
xmin = 6.32
|
| 231 |
+
xmax = 6.35
|
| 232 |
+
text = "ᄀ"
|
| 233 |
+
intervals [42]:
|
| 234 |
+
xmin = 6.35
|
| 235 |
+
xmax = 6.46
|
| 236 |
+
text = "ᅧ"
|
| 237 |
+
intervals [43]:
|
| 238 |
+
xmin = 6.46
|
| 239 |
+
xmax = 6.49
|
| 240 |
+
text = "ᆫ"
|
| 241 |
+
intervals [44]:
|
| 242 |
+
xmin = 6.49
|
| 243 |
+
xmax = 6.62
|
| 244 |
+
text = "ᄃ"
|
| 245 |
+
intervals [45]:
|
| 246 |
+
xmin = 6.62
|
| 247 |
+
xmax = 6.66
|
| 248 |
+
text = "ᅫ"
|
| 249 |
+
intervals [46]:
|
| 250 |
+
xmin = 6.66
|
| 251 |
+
xmax = 6.7
|
| 252 |
+
text = "ᆮ"
|
| 253 |
+
intervals [47]:
|
| 254 |
+
xmin = 6.7
|
| 255 |
+
xmax = 6.95
|
| 256 |
+
text = "ᄄ"
|
| 257 |
+
intervals [48]:
|
| 258 |
+
xmin = 6.95
|
| 259 |
+
xmax = 7.18
|
| 260 |
+
text = "ᅡ"
|
| 261 |
+
intervals [49]:
|
| 262 |
+
xmin = 7.18
|
| 263 |
+
xmax = 7.68
|
| 264 |
+
text = "sil"
|
preprocessed/kss_elena/TextGrid/1_0031.TextGrid
ADDED
|
@@ -0,0 +1,216 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
File type = "ooTextFile"
|
| 2 |
+
Object class = "TextGrid"
|
| 3 |
+
|
| 4 |
+
xmin = 0
|
| 5 |
+
xmax = 5.88
|
| 6 |
+
tiers? <exists>
|
| 7 |
+
size = 2
|
| 8 |
+
item []:
|
| 9 |
+
item [1]:
|
| 10 |
+
class = "IntervalTier"
|
| 11 |
+
name = "words"
|
| 12 |
+
xmin = 0
|
| 13 |
+
xmax = 5.88
|
| 14 |
+
intervals: size = 6
|
| 15 |
+
intervals [1]:
|
| 16 |
+
xmin = 0
|
| 17 |
+
xmax = 0.75
|
| 18 |
+
text = "<eps>"
|
| 19 |
+
intervals [2]:
|
| 20 |
+
xmin = 0.75
|
| 21 |
+
xmax = 1.66
|
| 22 |
+
text = "오타를"
|
| 23 |
+
intervals [3]:
|
| 24 |
+
xmin = 1.66
|
| 25 |
+
xmax = 2.91
|
| 26 |
+
text = "발견하시는"
|
| 27 |
+
intervals [4]:
|
| 28 |
+
xmin = 2.91
|
| 29 |
+
xmax = 3.64
|
| 30 |
+
text = "분께"
|
| 31 |
+
intervals [5]:
|
| 32 |
+
xmin = 3.64
|
| 33 |
+
xmax = 4.88
|
| 34 |
+
text = "사례하겠습니다"
|
| 35 |
+
intervals [6]:
|
| 36 |
+
xmin = 4.88
|
| 37 |
+
xmax = 5.88
|
| 38 |
+
text = "<eps>"
|
| 39 |
+
item [2]:
|
| 40 |
+
class = "IntervalTier"
|
| 41 |
+
name = "phones"
|
| 42 |
+
xmin = 0
|
| 43 |
+
xmax = 5.88
|
| 44 |
+
intervals: size = 43
|
| 45 |
+
intervals [1]:
|
| 46 |
+
xmin = 0
|
| 47 |
+
xmax = 0.75
|
| 48 |
+
text = "sil"
|
| 49 |
+
intervals [2]:
|
| 50 |
+
xmin = 0.75
|
| 51 |
+
xmax = 0.76
|
| 52 |
+
text = "ᄋ"
|
| 53 |
+
intervals [3]:
|
| 54 |
+
xmin = 0.76
|
| 55 |
+
xmax = 0.81
|
| 56 |
+
text = "ᅩ"
|
| 57 |
+
intervals [4]:
|
| 58 |
+
xmin = 0.81
|
| 59 |
+
xmax = 1.08
|
| 60 |
+
text = "ᄐ"
|
| 61 |
+
intervals [5]:
|
| 62 |
+
xmin = 1.08
|
| 63 |
+
xmax = 1.28
|
| 64 |
+
text = "ᅡ"
|
| 65 |
+
intervals [6]:
|
| 66 |
+
xmin = 1.28
|
| 67 |
+
xmax = 1.33
|
| 68 |
+
text = "ᄅ"
|
| 69 |
+
intervals [7]:
|
| 70 |
+
xmin = 1.33
|
| 71 |
+
xmax = 1.62
|
| 72 |
+
text = "ᅳ"
|
| 73 |
+
intervals [8]:
|
| 74 |
+
xmin = 1.62
|
| 75 |
+
xmax = 1.66
|
| 76 |
+
text = "ᆯ"
|
| 77 |
+
intervals [9]:
|
| 78 |
+
xmin = 1.66
|
| 79 |
+
xmax = 1.82
|
| 80 |
+
text = "ᄇ"
|
| 81 |
+
intervals [10]:
|
| 82 |
+
xmin = 1.82
|
| 83 |
+
xmax = 1.86
|
| 84 |
+
text = "ᅡ"
|
| 85 |
+
intervals [11]:
|
| 86 |
+
xmin = 1.86
|
| 87 |
+
xmax = 2.03
|
| 88 |
+
text = "ᆯ"
|
| 89 |
+
intervals [12]:
|
| 90 |
+
xmin = 2.03
|
| 91 |
+
xmax = 2.09
|
| 92 |
+
text = "ᄀ"
|
| 93 |
+
intervals [13]:
|
| 94 |
+
xmin = 2.09
|
| 95 |
+
xmax = 2.25
|
| 96 |
+
text = "ᅧ"
|
| 97 |
+
intervals [14]:
|
| 98 |
+
xmin = 2.25
|
| 99 |
+
xmax = 2.28
|
| 100 |
+
text = "ᆫ"
|
| 101 |
+
intervals [15]:
|
| 102 |
+
xmin = 2.28
|
| 103 |
+
xmax = 2.32
|
| 104 |
+
text = "ᄒ"
|
| 105 |
+
intervals [16]:
|
| 106 |
+
xmin = 2.32
|
| 107 |
+
xmax = 2.42
|
| 108 |
+
text = "ᅡ"
|
| 109 |
+
intervals [17]:
|
| 110 |
+
xmin = 2.42
|
| 111 |
+
xmax = 2.59
|
| 112 |
+
text = "ᄉ"
|
| 113 |
+
intervals [18]:
|
| 114 |
+
xmin = 2.59
|
| 115 |
+
xmax = 2.66
|
| 116 |
+
text = "ᅵ"
|
| 117 |
+
intervals [19]:
|
| 118 |
+
xmin = 2.66
|
| 119 |
+
xmax = 2.74
|
| 120 |
+
text = "ᄂ"
|
| 121 |
+
intervals [20]:
|
| 122 |
+
xmin = 2.74
|
| 123 |
+
xmax = 2.81
|
| 124 |
+
text = "ᅳ"
|
| 125 |
+
intervals [21]:
|
| 126 |
+
xmin = 2.81
|
| 127 |
+
xmax = 2.91
|
| 128 |
+
text = "ᆫ"
|
| 129 |
+
intervals [22]:
|
| 130 |
+
xmin = 2.91
|
| 131 |
+
xmax = 2.98
|
| 132 |
+
text = "ᄇ"
|
| 133 |
+
intervals [23]:
|
| 134 |
+
xmin = 2.98
|
| 135 |
+
xmax = 3.07
|
| 136 |
+
text = "ᅮ"
|
| 137 |
+
intervals [24]:
|
| 138 |
+
xmin = 3.07
|
| 139 |
+
xmax = 3.25
|
| 140 |
+
text = "ᆫ"
|
| 141 |
+
intervals [25]:
|
| 142 |
+
xmin = 3.25
|
| 143 |
+
xmax = 3.36
|
| 144 |
+
text = "ᄁ"
|
| 145 |
+
intervals [26]:
|
| 146 |
+
xmin = 3.36
|
| 147 |
+
xmax = 3.64
|
| 148 |
+
text = "ᅦ"
|
| 149 |
+
intervals [27]:
|
| 150 |
+
xmin = 3.64
|
| 151 |
+
xmax = 3.75
|
| 152 |
+
text = "ᄉ"
|
| 153 |
+
intervals [28]:
|
| 154 |
+
xmin = 3.75
|
| 155 |
+
xmax = 3.88
|
| 156 |
+
text = "ᅡ"
|
| 157 |
+
intervals [29]:
|
| 158 |
+
xmin = 3.88
|
| 159 |
+
xmax = 3.96
|
| 160 |
+
text = "ᄅ"
|
| 161 |
+
intervals [30]:
|
| 162 |
+
xmin = 3.96
|
| 163 |
+
xmax = 4.05
|
| 164 |
+
text = "ᅨ"
|
| 165 |
+
intervals [31]:
|
| 166 |
+
xmin = 4.05
|
| 167 |
+
xmax = 4.14
|
| 168 |
+
text = "ᄒ"
|
| 169 |
+
intervals [32]:
|
| 170 |
+
xmin = 4.14
|
| 171 |
+
xmax = 4.24
|
| 172 |
+
text = "ᅡ"
|
| 173 |
+
intervals [33]:
|
| 174 |
+
xmin = 4.24
|
| 175 |
+
xmax = 4.3
|
| 176 |
+
text = "ᄀ"
|
| 177 |
+
intervals [34]:
|
| 178 |
+
xmin = 4.3
|
| 179 |
+
xmax = 4.37
|
| 180 |
+
text = "ᅦ"
|
| 181 |
+
intervals [35]:
|
| 182 |
+
xmin = 4.37
|
| 183 |
+
xmax = 4.4
|
| 184 |
+
text = "ᆮ"
|
| 185 |
+
intervals [36]:
|
| 186 |
+
xmin = 4.4
|
| 187 |
+
xmax = 4.55
|
| 188 |
+
text = "ᄊ"
|
| 189 |
+
intervals [37]:
|
| 190 |
+
xmin = 4.55
|
| 191 |
+
xmax = 4.58
|
| 192 |
+
text = "ᅳ"
|
| 193 |
+
intervals [38]:
|
| 194 |
+
xmin = 4.58
|
| 195 |
+
xmax = 4.64
|
| 196 |
+
text = "ᆷ"
|
| 197 |
+
intervals [39]:
|
| 198 |
+
xmin = 4.64
|
| 199 |
+
xmax = 4.68
|
| 200 |
+
text = "ᄂ"
|
| 201 |
+
intervals [40]:
|
| 202 |
+
xmin = 4.68
|
| 203 |
+
xmax = 4.77
|
| 204 |
+
text = "ᅵ"
|
| 205 |
+
intervals [41]:
|
| 206 |
+
xmin = 4.77
|
| 207 |
+
xmax = 4.85
|
| 208 |
+
text = "ᄃ"
|
| 209 |
+
intervals [42]:
|
| 210 |
+
xmin = 4.85
|
| 211 |
+
xmax = 4.88
|
| 212 |
+
text = "ᅡ"
|
| 213 |
+
intervals [43]:
|
| 214 |
+
xmin = 4.88
|
| 215 |
+
xmax = 5.88
|
| 216 |
+
text = "sil"
|
preprocessed/kss_elena/TextGrid/1_0032.TextGrid
ADDED
|
@@ -0,0 +1,204 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
File type = "ooTextFile"
|
| 2 |
+
Object class = "TextGrid"
|
| 3 |
+
|
| 4 |
+
xmin = 0
|
| 5 |
+
xmax = 5.82
|
| 6 |
+
tiers? <exists>
|
| 7 |
+
size = 2
|
| 8 |
+
item []:
|
| 9 |
+
item [1]:
|
| 10 |
+
class = "IntervalTier"
|
| 11 |
+
name = "words"
|
| 12 |
+
xmin = 0
|
| 13 |
+
xmax = 5.82
|
| 14 |
+
intervals: size = 8
|
| 15 |
+
intervals [1]:
|
| 16 |
+
xmin = 0
|
| 17 |
+
xmax = 0.69
|
| 18 |
+
text = "<eps>"
|
| 19 |
+
intervals [2]:
|
| 20 |
+
xmin = 0.69
|
| 21 |
+
xmax = 1.47
|
| 22 |
+
text = "결국"
|
| 23 |
+
intervals [3]:
|
| 24 |
+
xmin = 1.47
|
| 25 |
+
xmax = 2.06
|
| 26 |
+
text = "그의"
|
| 27 |
+
intervals [4]:
|
| 28 |
+
xmin = 2.06
|
| 29 |
+
xmax = 2.77
|
| 30 |
+
text = "개가"
|
| 31 |
+
intervals [5]:
|
| 32 |
+
xmin = 2.77
|
| 33 |
+
xmax = 3.2
|
| 34 |
+
text = "그의"
|
| 35 |
+
intervals [6]:
|
| 36 |
+
xmin = 3.2
|
| 37 |
+
xmax = 4.5
|
| 38 |
+
text = "시신을"
|
| 39 |
+
intervals [7]:
|
| 40 |
+
xmin = 4.5
|
| 41 |
+
xmax = 5.41
|
| 42 |
+
text = "발견했다"
|
| 43 |
+
intervals [8]:
|
| 44 |
+
xmin = 5.41
|
| 45 |
+
xmax = 5.82
|
| 46 |
+
text = "<eps>"
|
| 47 |
+
item [2]:
|
| 48 |
+
class = "IntervalTier"
|
| 49 |
+
name = "phones"
|
| 50 |
+
xmin = 0
|
| 51 |
+
xmax = 5.82
|
| 52 |
+
intervals: size = 38
|
| 53 |
+
intervals [1]:
|
| 54 |
+
xmin = 0
|
| 55 |
+
xmax = 0.69
|
| 56 |
+
text = "sil"
|
| 57 |
+
intervals [2]:
|
| 58 |
+
xmin = 0.69
|
| 59 |
+
xmax = 0.77
|
| 60 |
+
text = "ᄀ"
|
| 61 |
+
intervals [3]:
|
| 62 |
+
xmin = 0.77
|
| 63 |
+
xmax = 0.8
|
| 64 |
+
text = "ᅧ"
|
| 65 |
+
intervals [4]:
|
| 66 |
+
xmin = 0.8
|
| 67 |
+
xmax = 1.01
|
| 68 |
+
text = "ᆯ"
|
| 69 |
+
intervals [5]:
|
| 70 |
+
xmin = 1.01
|
| 71 |
+
xmax = 1.06
|
| 72 |
+
text = "ᄀ"
|
| 73 |
+
intervals [6]:
|
| 74 |
+
xmin = 1.06
|
| 75 |
+
xmax = 1.33
|
| 76 |
+
text = "ᅮ"
|
| 77 |
+
intervals [7]:
|
| 78 |
+
xmin = 1.33
|
| 79 |
+
xmax = 1.47
|
| 80 |
+
text = "ᆨ"
|
| 81 |
+
intervals [8]:
|
| 82 |
+
xmin = 1.47
|
| 83 |
+
xmax = 1.78
|
| 84 |
+
text = "ᄀ"
|
| 85 |
+
intervals [9]:
|
| 86 |
+
xmin = 1.78
|
| 87 |
+
xmax = 1.84
|
| 88 |
+
text = "ᅳ"
|
| 89 |
+
intervals [10]:
|
| 90 |
+
xmin = 1.84
|
| 91 |
+
xmax = 1.85
|
| 92 |
+
text = "ᄋ"
|
| 93 |
+
intervals [11]:
|
| 94 |
+
xmin = 1.85
|
| 95 |
+
xmax = 2.06
|
| 96 |
+
text = "ᅴ"
|
| 97 |
+
intervals [12]:
|
| 98 |
+
xmin = 2.06
|
| 99 |
+
xmax = 2.21
|
| 100 |
+
text = "ᄀ"
|
| 101 |
+
intervals [13]:
|
| 102 |
+
xmin = 2.21
|
| 103 |
+
xmax = 2.36
|
| 104 |
+
text = "ᅢ"
|
| 105 |
+
intervals [14]:
|
| 106 |
+
xmin = 2.36
|
| 107 |
+
xmax = 2.43
|
| 108 |
+
text = "ᄀ"
|
| 109 |
+
intervals [15]:
|
| 110 |
+
xmin = 2.43
|
| 111 |
+
xmax = 2.77
|
| 112 |
+
text = "ᅡ"
|
| 113 |
+
intervals [16]:
|
| 114 |
+
xmin = 2.77
|
| 115 |
+
xmax = 2.9
|
| 116 |
+
text = "ᄀ"
|
| 117 |
+
intervals [17]:
|
| 118 |
+
xmin = 2.9
|
| 119 |
+
xmax = 2.94
|
| 120 |
+
text = "ᅳ"
|
| 121 |
+
intervals [18]:
|
| 122 |
+
xmin = 2.94
|
| 123 |
+
xmax = 2.95
|
| 124 |
+
text = "ᄋ"
|
| 125 |
+
intervals [19]:
|
| 126 |
+
xmin = 2.95
|
| 127 |
+
xmax = 3.2
|
| 128 |
+
text = "ᅴ"
|
| 129 |
+
intervals [20]:
|
| 130 |
+
xmin = 3.2
|
| 131 |
+
xmax = 3.73
|
| 132 |
+
text = "ᄉ"
|
| 133 |
+
intervals [21]:
|
| 134 |
+
xmin = 3.73
|
| 135 |
+
xmax = 3.93
|
| 136 |
+
text = "ᅵ"
|
| 137 |
+
intervals [22]:
|
| 138 |
+
xmin = 3.93
|
| 139 |
+
xmax = 3.96
|
| 140 |
+
text = "ᄉ"
|
| 141 |
+
intervals [23]:
|
| 142 |
+
xmin = 3.96
|
| 143 |
+
xmax = 4.13
|
| 144 |
+
text = "ᅵ"
|
| 145 |
+
intervals [24]:
|
| 146 |
+
xmin = 4.13
|
| 147 |
+
xmax = 4.28
|
| 148 |
+
text = "ᄂ"
|
| 149 |
+
intervals [25]:
|
| 150 |
+
xmin = 4.28
|
| 151 |
+
xmax = 4.31
|
| 152 |
+
text = "ᅳ"
|
| 153 |
+
intervals [26]:
|
| 154 |
+
xmin = 4.31
|
| 155 |
+
xmax = 4.5
|
| 156 |
+
text = "ᆯ"
|
| 157 |
+
intervals [27]:
|
| 158 |
+
xmin = 4.5
|
| 159 |
+
xmax = 4.65
|
| 160 |
+
text = "ᄇ"
|
| 161 |
+
intervals [28]:
|
| 162 |
+
xmin = 4.65
|
| 163 |
+
xmax = 4.69
|
| 164 |
+
text = "ᅡ"
|
| 165 |
+
intervals [29]:
|
| 166 |
+
xmin = 4.69
|
| 167 |
+
xmax = 4.81
|
| 168 |
+
text = "ᆯ"
|
| 169 |
+
intervals [30]:
|
| 170 |
+
xmin = 4.81
|
| 171 |
+
xmax = 4.89
|
| 172 |
+
text = "ᄀ"
|
| 173 |
+
intervals [31]:
|
| 174 |
+
xmin = 4.89
|
| 175 |
+
xmax = 4.98
|
| 176 |
+
text = "ᅧ"
|
| 177 |
+
intervals [32]:
|
| 178 |
+
xmin = 4.98
|
| 179 |
+
xmax = 5.01
|
| 180 |
+
text = "ᆫ"
|
| 181 |
+
intervals [33]:
|
| 182 |
+
xmin = 5.01
|
| 183 |
+
xmax = 5.06
|
| 184 |
+
text = "ᄒ"
|
| 185 |
+
intervals [34]:
|
| 186 |
+
xmin = 5.06
|
| 187 |
+
xmax = 5.12
|
| 188 |
+
text = "ᅢ"
|
| 189 |
+
intervals [35]:
|
| 190 |
+
xmin = 5.12
|
| 191 |
+
xmax = 5.17
|
| 192 |
+
text = "ᆮ"
|
| 193 |
+
intervals [36]:
|
| 194 |
+
xmin = 5.17
|
| 195 |
+
xmax = 5.37
|
| 196 |
+
text = "ᄄ"
|
| 197 |
+
intervals [37]:
|
| 198 |
+
xmin = 5.37
|
| 199 |
+
xmax = 5.41
|
| 200 |
+
text = "ᅡ"
|
| 201 |
+
intervals [38]:
|
| 202 |
+
xmin = 5.41
|
| 203 |
+
xmax = 5.82
|
| 204 |
+
text = "sil"
|
preprocessed/kss_elena/TextGrid/1_0033.TextGrid
ADDED
|
@@ -0,0 +1,248 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
File type = "ooTextFile"
|
| 2 |
+
Object class = "TextGrid"
|
| 3 |
+
|
| 4 |
+
xmin = 0
|
| 5 |
+
xmax = 8.94
|
| 6 |
+
tiers? <exists>
|
| 7 |
+
size = 2
|
| 8 |
+
item []:
|
| 9 |
+
item [1]:
|
| 10 |
+
class = "IntervalTier"
|
| 11 |
+
name = "words"
|
| 12 |
+
xmin = 0
|
| 13 |
+
xmax = 8.94
|
| 14 |
+
intervals: size = 9
|
| 15 |
+
intervals [1]:
|
| 16 |
+
xmin = 0
|
| 17 |
+
xmax = 3.06
|
| 18 |
+
text = "<eps>"
|
| 19 |
+
intervals [2]:
|
| 20 |
+
xmin = 3.06
|
| 21 |
+
xmax = 4.59
|
| 22 |
+
text = "정신분석학은"
|
| 23 |
+
intervals [3]:
|
| 24 |
+
xmin = 4.59
|
| 25 |
+
xmax = 5.09
|
| 26 |
+
text = "<eps>"
|
| 27 |
+
intervals [4]:
|
| 28 |
+
xmin = 5.09
|
| 29 |
+
xmax = 5.49
|
| 30 |
+
text = "이십"
|
| 31 |
+
intervals [5]:
|
| 32 |
+
xmin = 5.49
|
| 33 |
+
xmax = 6.18
|
| 34 |
+
text = "세기에"
|
| 35 |
+
intervals [6]:
|
| 36 |
+
xmin = 6.18
|
| 37 |
+
xmax = 6.41
|
| 38 |
+
text = "<eps>"
|
| 39 |
+
intervals [7]:
|
| 40 |
+
xmin = 6.41
|
| 41 |
+
xmax = 7.42
|
| 42 |
+
text = "급격히"
|
| 43 |
+
intervals [8]:
|
| 44 |
+
xmin = 7.42
|
| 45 |
+
xmax = 8.35
|
| 46 |
+
text = "발전했다"
|
| 47 |
+
intervals [9]:
|
| 48 |
+
xmin = 8.35
|
| 49 |
+
xmax = 8.94
|
| 50 |
+
text = "<eps>"
|
| 51 |
+
item [2]:
|
| 52 |
+
class = "IntervalTier"
|
| 53 |
+
name = "phones"
|
| 54 |
+
xmin = 0
|
| 55 |
+
xmax = 8.94
|
| 56 |
+
intervals: size = 48
|
| 57 |
+
intervals [1]:
|
| 58 |
+
xmin = 0
|
| 59 |
+
xmax = 3.06
|
| 60 |
+
text = "sil"
|
| 61 |
+
intervals [2]:
|
| 62 |
+
xmin = 3.06
|
| 63 |
+
xmax = 3.15
|
| 64 |
+
text = "ᄌ"
|
| 65 |
+
intervals [3]:
|
| 66 |
+
xmin = 3.15
|
| 67 |
+
xmax = 3.2
|
| 68 |
+
text = "ᅥ"
|
| 69 |
+
intervals [4]:
|
| 70 |
+
xmin = 3.2
|
| 71 |
+
xmax = 3.31
|
| 72 |
+
text = "ᆼ"
|
| 73 |
+
intervals [5]:
|
| 74 |
+
xmin = 3.31
|
| 75 |
+
xmax = 3.44
|
| 76 |
+
text = "ᄉ"
|
| 77 |
+
intervals [6]:
|
| 78 |
+
xmin = 3.44
|
| 79 |
+
xmax = 3.5
|
| 80 |
+
text = "ᅵ"
|
| 81 |
+
intervals [7]:
|
| 82 |
+
xmin = 3.5
|
| 83 |
+
xmax = 3.62
|
| 84 |
+
text = "ᆫ"
|
| 85 |
+
intervals [8]:
|
| 86 |
+
xmin = 3.62
|
| 87 |
+
xmax = 3.75
|
| 88 |
+
text = "ᄇ"
|
| 89 |
+
intervals [9]:
|
| 90 |
+
xmin = 3.75
|
| 91 |
+
xmax = 3.78
|
| 92 |
+
text = "ᅮ"
|
| 93 |
+
intervals [10]:
|
| 94 |
+
xmin = 3.78
|
| 95 |
+
xmax = 3.91
|
| 96 |
+
text = "ᆫ"
|
| 97 |
+
intervals [11]:
|
| 98 |
+
xmin = 3.91
|
| 99 |
+
xmax = 4.01
|
| 100 |
+
text = "ᄉ"
|
| 101 |
+
intervals [12]:
|
| 102 |
+
xmin = 4.01
|
| 103 |
+
xmax = 4.17
|
| 104 |
+
text = "ᅥ"
|
| 105 |
+
intervals [13]:
|
| 106 |
+
xmin = 4.17
|
| 107 |
+
xmax = 4.3
|
| 108 |
+
text = "ᄏ"
|
| 109 |
+
intervals [14]:
|
| 110 |
+
xmin = 4.3
|
| 111 |
+
xmax = 4.4
|
| 112 |
+
text = "ᅡ"
|
| 113 |
+
intervals [15]:
|
| 114 |
+
xmin = 4.4
|
| 115 |
+
xmax = 4.5
|
| 116 |
+
text = "ᄀ"
|
| 117 |
+
intervals [16]:
|
| 118 |
+
xmin = 4.5
|
| 119 |
+
xmax = 4.59
|
| 120 |
+
text = "ᅳ"
|
| 121 |
+
intervals [17]:
|
| 122 |
+
xmin = 4.59
|
| 123 |
+
xmax = 5.09
|
| 124 |
+
text = "sil"
|
| 125 |
+
intervals [18]:
|
| 126 |
+
xmin = 5.09
|
| 127 |
+
xmax = 5.13
|
| 128 |
+
text = "ᄂ"
|
| 129 |
+
intervals [19]:
|
| 130 |
+
xmin = 5.13
|
| 131 |
+
xmax = 5.24
|
| 132 |
+
text = "ᅵ"
|
| 133 |
+
intervals [20]:
|
| 134 |
+
xmin = 5.24
|
| 135 |
+
xmax = 5.38
|
| 136 |
+
text = "ᄉ"
|
| 137 |
+
intervals [21]:
|
| 138 |
+
xmin = 5.38
|
| 139 |
+
xmax = 5.42
|
| 140 |
+
text = "ᅵ"
|
| 141 |
+
intervals [22]:
|
| 142 |
+
xmin = 5.42
|
| 143 |
+
xmax = 5.49
|
| 144 |
+
text = "ᆸ"
|
| 145 |
+
intervals [23]:
|
| 146 |
+
xmin = 5.49
|
| 147 |
+
xmax = 5.57
|
| 148 |
+
text = "ᄊ"
|
| 149 |
+
intervals [24]:
|
| 150 |
+
xmin = 5.57
|
| 151 |
+
xmax = 5.69
|
| 152 |
+
text = "ᅦ"
|
| 153 |
+
intervals [25]:
|
| 154 |
+
xmin = 5.69
|
| 155 |
+
xmax = 5.74
|
| 156 |
+
text = "ᄀ"
|
| 157 |
+
intervals [26]:
|
| 158 |
+
xmin = 5.74
|
| 159 |
+
xmax = 5.78
|
| 160 |
+
text = "ᅵ"
|
| 161 |
+
intervals [27]:
|
| 162 |
+
xmin = 5.78
|
| 163 |
+
xmax = 5.79
|
| 164 |
+
text = "ᄋ"
|
| 165 |
+
intervals [28]:
|
| 166 |
+
xmin = 5.79
|
| 167 |
+
xmax = 6.18
|
| 168 |
+
text = "ᅦ"
|
| 169 |
+
intervals [29]:
|
| 170 |
+
xmin = 6.18
|
| 171 |
+
xmax = 6.41
|
| 172 |
+
text = "sil"
|
| 173 |
+
intervals [30]:
|
| 174 |
+
xmin = 6.41
|
| 175 |
+
xmax = 6.49
|
| 176 |
+
text = "ᄀ"
|
| 177 |
+
intervals [31]:
|
| 178 |
+
xmin = 6.49
|
| 179 |
+
xmax = 6.52
|
| 180 |
+
text = "ᅳ"
|
| 181 |
+
intervals [32]:
|
| 182 |
+
xmin = 6.52
|
| 183 |
+
xmax = 6.53
|
| 184 |
+
text = "ᆸ"
|
| 185 |
+
intervals [33]:
|
| 186 |
+
xmin = 6.53
|
| 187 |
+
xmax = 6.73
|
| 188 |
+
text = "ᄁ"
|
| 189 |
+
intervals [34]:
|
| 190 |
+
xmin = 6.73
|
| 191 |
+
xmax = 6.9
|
| 192 |
+
text = "ᅧ"
|
| 193 |
+
intervals [35]:
|
| 194 |
+
xmin = 6.9
|
| 195 |
+
xmax = 7.14
|
| 196 |
+
text = "ᄏ"
|
| 197 |
+
intervals [36]:
|
| 198 |
+
xmin = 7.14
|
| 199 |
+
xmax = 7.42
|
| 200 |
+
text = "ᅵ"
|
| 201 |
+
intervals [37]:
|
| 202 |
+
xmin = 7.42
|
| 203 |
+
xmax = 7.58
|
| 204 |
+
text = "ᄇ"
|
| 205 |
+
intervals [38]:
|
| 206 |
+
xmin = 7.58
|
| 207 |
+
xmax = 7.62
|
| 208 |
+
text = "ᅡ"
|
| 209 |
+
intervals [39]:
|
| 210 |
+
xmin = 7.62
|
| 211 |
+
xmax = 7.77
|
| 212 |
+
text = "ᆯ"
|
| 213 |
+
intervals [40]:
|
| 214 |
+
xmin = 7.77
|
| 215 |
+
xmax = 7.84
|
| 216 |
+
text = "ᄍ"
|
| 217 |
+
intervals [41]:
|
| 218 |
+
xmin = 7.84
|
| 219 |
+
xmax = 7.92
|
| 220 |
+
text = "ᅥ"
|
| 221 |
+
intervals [42]:
|
| 222 |
+
xmin = 7.92
|
| 223 |
+
xmax = 7.95
|
| 224 |
+
text = "ᆫ"
|
| 225 |
+
intervals [43]:
|
| 226 |
+
xmin = 7.95
|
| 227 |
+
xmax = 8
|
| 228 |
+
text = "ᄒ"
|
| 229 |
+
intervals [44]:
|
| 230 |
+
xmin = 8
|
| 231 |
+
xmax = 8.03
|
| 232 |
+
text = "ᅢ"
|
| 233 |
+
intervals [45]:
|
| 234 |
+
xmin = 8.03
|
| 235 |
+
xmax = 8.08
|
| 236 |
+
text = "ᆮ"
|
| 237 |
+
intervals [46]:
|
| 238 |
+
xmin = 8.08
|
| 239 |
+
xmax = 8.31
|
| 240 |
+
text = "ᄄ"
|
| 241 |
+
intervals [47]:
|
| 242 |
+
xmin = 8.31
|
| 243 |
+
xmax = 8.35
|
| 244 |
+
text = "ᅡ"
|
| 245 |
+
intervals [48]:
|
| 246 |
+
xmin = 8.35
|
| 247 |
+
xmax = 8.94
|
| 248 |
+
text = "sil"
|
preprocessed/kss_elena/TextGrid/1_0034.TextGrid
ADDED
|
@@ -0,0 +1,304 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
File type = "ooTextFile"
|
| 2 |
+
Object class = "TextGrid"
|
| 3 |
+
|
| 4 |
+
xmin = 0
|
| 5 |
+
xmax = 8.46
|
| 6 |
+
tiers? <exists>
|
| 7 |
+
size = 2
|
| 8 |
+
item []:
|
| 9 |
+
item [1]:
|
| 10 |
+
class = "IntervalTier"
|
| 11 |
+
name = "words"
|
| 12 |
+
xmin = 0
|
| 13 |
+
xmax = 8.46
|
| 14 |
+
intervals: size = 12
|
| 15 |
+
intervals [1]:
|
| 16 |
+
xmin = 0
|
| 17 |
+
xmax = 1.23
|
| 18 |
+
text = "<eps>"
|
| 19 |
+
intervals [2]:
|
| 20 |
+
xmin = 1.23
|
| 21 |
+
xmax = 1.99
|
| 22 |
+
text = "한국어"
|
| 23 |
+
intervals [3]:
|
| 24 |
+
xmin = 1.99
|
| 25 |
+
xmax = 2.89
|
| 26 |
+
text = "실력이"
|
| 27 |
+
intervals [4]:
|
| 28 |
+
xmin = 2.89
|
| 29 |
+
xmax = 2.96
|
| 30 |
+
text = "<eps>"
|
| 31 |
+
intervals [5]:
|
| 32 |
+
xmin = 2.96
|
| 33 |
+
xmax = 3.43
|
| 34 |
+
text = "날이"
|
| 35 |
+
intervals [6]:
|
| 36 |
+
xmin = 3.43
|
| 37 |
+
xmax = 4.43
|
| 38 |
+
text = "갈수록"
|
| 39 |
+
intervals [7]:
|
| 40 |
+
xmin = 4.43
|
| 41 |
+
xmax = 5.94
|
| 42 |
+
text = "발전하는"
|
| 43 |
+
intervals [8]:
|
| 44 |
+
xmin = 5.94
|
| 45 |
+
xmax = 6.5
|
| 46 |
+
text = "것을"
|
| 47 |
+
intervals [9]:
|
| 48 |
+
xmin = 6.5
|
| 49 |
+
xmax = 7.12
|
| 50 |
+
text = "보니"
|
| 51 |
+
intervals [10]:
|
| 52 |
+
xmin = 7.12
|
| 53 |
+
xmax = 7.18
|
| 54 |
+
text = "<eps>"
|
| 55 |
+
intervals [11]:
|
| 56 |
+
xmin = 7.18
|
| 57 |
+
xmax = 7.99
|
| 58 |
+
text = "기쁩니다"
|
| 59 |
+
intervals [12]:
|
| 60 |
+
xmin = 7.99
|
| 61 |
+
xmax = 8.46
|
| 62 |
+
text = "<eps>"
|
| 63 |
+
item [2]:
|
| 64 |
+
class = "IntervalTier"
|
| 65 |
+
name = "phones"
|
| 66 |
+
xmin = 0
|
| 67 |
+
xmax = 8.46
|
| 68 |
+
intervals: size = 59
|
| 69 |
+
intervals [1]:
|
| 70 |
+
xmin = 0
|
| 71 |
+
xmax = 1.23
|
| 72 |
+
text = "sil"
|
| 73 |
+
intervals [2]:
|
| 74 |
+
xmin = 1.23
|
| 75 |
+
xmax = 1.34
|
| 76 |
+
text = "ᄒ"
|
| 77 |
+
intervals [3]:
|
| 78 |
+
xmin = 1.34
|
| 79 |
+
xmax = 1.39
|
| 80 |
+
text = "ᅡ"
|
| 81 |
+
intervals [4]:
|
| 82 |
+
xmin = 1.39
|
| 83 |
+
xmax = 1.54
|
| 84 |
+
text = "ᆫ"
|
| 85 |
+
intervals [5]:
|
| 86 |
+
xmin = 1.54
|
| 87 |
+
xmax = 1.6
|
| 88 |
+
text = "ᄀ"
|
| 89 |
+
intervals [6]:
|
| 90 |
+
xmin = 1.6
|
| 91 |
+
xmax = 1.72
|
| 92 |
+
text = "ᅮ"
|
| 93 |
+
intervals [7]:
|
| 94 |
+
xmin = 1.72
|
| 95 |
+
xmax = 1.81
|
| 96 |
+
text = "ᄀ"
|
| 97 |
+
intervals [8]:
|
| 98 |
+
xmin = 1.81
|
| 99 |
+
xmax = 1.99
|
| 100 |
+
text = "ᅥ"
|
| 101 |
+
intervals [9]:
|
| 102 |
+
xmin = 1.99
|
| 103 |
+
xmax = 2.11
|
| 104 |
+
text = "ᄉ"
|
| 105 |
+
intervals [10]:
|
| 106 |
+
xmin = 2.11
|
| 107 |
+
xmax = 2.15
|
| 108 |
+
text = "ᅵ"
|
| 109 |
+
intervals [11]:
|
| 110 |
+
xmin = 2.15
|
| 111 |
+
xmax = 2.23
|
| 112 |
+
text = "ᆯ"
|
| 113 |
+
intervals [12]:
|
| 114 |
+
xmin = 2.23
|
| 115 |
+
xmax = 2.27
|
| 116 |
+
text = "ᄅ"
|
| 117 |
+
intervals [13]:
|
| 118 |
+
xmin = 2.27
|
| 119 |
+
xmax = 2.44
|
| 120 |
+
text = "ᅧ"
|
| 121 |
+
intervals [14]:
|
| 122 |
+
xmin = 2.44
|
| 123 |
+
xmax = 2.57
|
| 124 |
+
text = "ᄀ"
|
| 125 |
+
intervals [15]:
|
| 126 |
+
xmin = 2.57
|
| 127 |
+
xmax = 2.89
|
| 128 |
+
text = "ᅵ"
|
| 129 |
+
intervals [16]:
|
| 130 |
+
xmin = 2.89
|
| 131 |
+
xmax = 2.96
|
| 132 |
+
text = "sil"
|
| 133 |
+
intervals [17]:
|
| 134 |
+
xmin = 2.96
|
| 135 |
+
xmax = 3.04
|
| 136 |
+
text = "ᄂ"
|
| 137 |
+
intervals [18]:
|
| 138 |
+
xmin = 3.04
|
| 139 |
+
xmax = 3.19
|
| 140 |
+
text = "ᅡ"
|
| 141 |
+
intervals [19]:
|
| 142 |
+
xmin = 3.19
|
| 143 |
+
xmax = 3.26
|
| 144 |
+
text = "ᄅ"
|
| 145 |
+
intervals [20]:
|
| 146 |
+
xmin = 3.26
|
| 147 |
+
xmax = 3.43
|
| 148 |
+
text = "ᅵ"
|
| 149 |
+
intervals [21]:
|
| 150 |
+
xmin = 3.43
|
| 151 |
+
xmax = 3.56
|
| 152 |
+
text = "ᄀ"
|
| 153 |
+
intervals [22]:
|
| 154 |
+
xmin = 3.56
|
| 155 |
+
xmax = 3.59
|
| 156 |
+
text = "ᅡ"
|
| 157 |
+
intervals [23]:
|
| 158 |
+
xmin = 3.59
|
| 159 |
+
xmax = 3.69
|
| 160 |
+
text = "ᆯ"
|
| 161 |
+
intervals [24]:
|
| 162 |
+
xmin = 3.69
|
| 163 |
+
xmax = 3.94
|
| 164 |
+
text = "ᄊ"
|
| 165 |
+
intervals [25]:
|
| 166 |
+
xmin = 3.94
|
| 167 |
+
xmax = 4.06
|
| 168 |
+
text = "ᅮ"
|
| 169 |
+
intervals [26]:
|
| 170 |
+
xmin = 4.06
|
| 171 |
+
xmax = 4.11
|
| 172 |
+
text = "ᄅ"
|
| 173 |
+
intervals [27]:
|
| 174 |
+
xmin = 4.11
|
| 175 |
+
xmax = 4.33
|
| 176 |
+
text = "ᅩ"
|
| 177 |
+
intervals [28]:
|
| 178 |
+
xmin = 4.33
|
| 179 |
+
xmax = 4.43
|
| 180 |
+
text = "ᆨ"
|
| 181 |
+
intervals [29]:
|
| 182 |
+
xmin = 4.43
|
| 183 |
+
xmax = 4.46
|
| 184 |
+
text = "ᄈ"
|
| 185 |
+
intervals [30]:
|
| 186 |
+
xmin = 4.46
|
| 187 |
+
xmax = 4.57
|
| 188 |
+
text = "ᅡ"
|
| 189 |
+
intervals [31]:
|
| 190 |
+
xmin = 4.57
|
| 191 |
+
xmax = 4.75
|
| 192 |
+
text = "ᆯ"
|
| 193 |
+
intervals [32]:
|
| 194 |
+
xmin = 4.75
|
| 195 |
+
xmax = 4.85
|
| 196 |
+
text = "ᄍ"
|
| 197 |
+
intervals [33]:
|
| 198 |
+
xmin = 4.85
|
| 199 |
+
xmax = 4.97
|
| 200 |
+
text = "ᅥ"
|
| 201 |
+
intervals [34]:
|
| 202 |
+
xmin = 4.97
|
| 203 |
+
xmax = 5.25
|
| 204 |
+
text = "ᆫ"
|
| 205 |
+
intervals [35]:
|
| 206 |
+
xmin = 5.25
|
| 207 |
+
xmax = 5.52
|
| 208 |
+
text = "ᄒ"
|
| 209 |
+
intervals [36]:
|
| 210 |
+
xmin = 5.52
|
| 211 |
+
xmax = 5.57
|
| 212 |
+
text = "ᅡ"
|
| 213 |
+
intervals [37]:
|
| 214 |
+
xmin = 5.57
|
| 215 |
+
xmax = 5.82
|
| 216 |
+
text = "ᄂ"
|
| 217 |
+
intervals [38]:
|
| 218 |
+
xmin = 5.82
|
| 219 |
+
xmax = 5.86
|
| 220 |
+
text = "ᅳ"
|
| 221 |
+
intervals [39]:
|
| 222 |
+
xmin = 5.86
|
| 223 |
+
xmax = 5.94
|
| 224 |
+
text = "ᆫ"
|
| 225 |
+
intervals [40]:
|
| 226 |
+
xmin = 5.94
|
| 227 |
+
xmax = 6.01
|
| 228 |
+
text = "ᄀ"
|
| 229 |
+
intervals [41]:
|
| 230 |
+
xmin = 6.01
|
| 231 |
+
xmax = 6.17
|
| 232 |
+
text = "ᅥ"
|
| 233 |
+
intervals [42]:
|
| 234 |
+
xmin = 6.17
|
| 235 |
+
xmax = 6.3
|
| 236 |
+
text = "ᄉ"
|
| 237 |
+
intervals [43]:
|
| 238 |
+
xmin = 6.3
|
| 239 |
+
xmax = 6.34
|
| 240 |
+
text = "ᅳ"
|
| 241 |
+
intervals [44]:
|
| 242 |
+
xmin = 6.34
|
| 243 |
+
xmax = 6.5
|
| 244 |
+
text = "ᆯ"
|
| 245 |
+
intervals [45]:
|
| 246 |
+
xmin = 6.5
|
| 247 |
+
xmax = 6.66
|
| 248 |
+
text = "ᄇ"
|
| 249 |
+
intervals [46]:
|
| 250 |
+
xmin = 6.66
|
| 251 |
+
xmax = 6.78
|
| 252 |
+
text = "ᅩ"
|
| 253 |
+
intervals [47]:
|
| 254 |
+
xmin = 6.78
|
| 255 |
+
xmax = 6.81
|
| 256 |
+
text = "ᄂ"
|
| 257 |
+
intervals [48]:
|
| 258 |
+
xmin = 6.81
|
| 259 |
+
xmax = 7.12
|
| 260 |
+
text = "ᅵ"
|
| 261 |
+
intervals [49]:
|
| 262 |
+
xmin = 7.12
|
| 263 |
+
xmax = 7.18
|
| 264 |
+
text = "sil"
|
| 265 |
+
intervals [50]:
|
| 266 |
+
xmin = 7.18
|
| 267 |
+
xmax = 7.27
|
| 268 |
+
text = "ᄀ"
|
| 269 |
+
intervals [51]:
|
| 270 |
+
xmin = 7.27
|
| 271 |
+
xmax = 7.43
|
| 272 |
+
text = "ᅵ"
|
| 273 |
+
intervals [52]:
|
| 274 |
+
xmin = 7.43
|
| 275 |
+
xmax = 7.62
|
| 276 |
+
text = "ᄈ"
|
| 277 |
+
intervals [53]:
|
| 278 |
+
xmin = 7.62
|
| 279 |
+
xmax = 7.66
|
| 280 |
+
text = "ᅳ"
|
| 281 |
+
intervals [54]:
|
| 282 |
+
xmin = 7.66
|
| 283 |
+
xmax = 7.74
|
| 284 |
+
text = "ᆷ"
|
| 285 |
+
intervals [55]:
|
| 286 |
+
xmin = 7.74
|
| 287 |
+
xmax = 7.77
|
| 288 |
+
text = "ᄂ"
|
| 289 |
+
intervals [56]:
|
| 290 |
+
xmin = 7.77
|
| 291 |
+
xmax = 7.87
|
| 292 |
+
text = "ᅵ"
|
| 293 |
+
intervals [57]:
|
| 294 |
+
xmin = 7.87
|
| 295 |
+
xmax = 7.95
|
| 296 |
+
text = "ᄃ"
|
| 297 |
+
intervals [58]:
|
| 298 |
+
xmin = 7.95
|
| 299 |
+
xmax = 7.99
|
| 300 |
+
text = "ᅡ"
|
| 301 |
+
intervals [59]:
|
| 302 |
+
xmin = 7.99
|
| 303 |
+
xmax = 8.46
|
| 304 |
+
text = "sil"
|