6 Star 8 Fork 6

Gitee 极速下载/UIS-RNN

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/google/uis-rnn
克隆/下载
demo.py 2.68 KB
一键复制 编辑 原始数据 按行查看 历史
# Copyright 2018 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""A demo script showing how to use the uisrnn package on toy data."""
import numpy as np
import uisrnn
SAVED_MODEL_NAME = 'saved_model.uisrnn'
def diarization_experiment(model_args, training_args, inference_args):
"""Experiment pipeline.
Load data --> train model --> test model --> output result
Args:
model_args: model configurations
training_args: training configurations
inference_args: inference configurations
"""
predicted_cluster_ids = []
test_record = []
train_data = np.load('./data/toy_training_data.npz', allow_pickle=True)
test_data = np.load('./data/toy_testing_data.npz', allow_pickle=True)
train_sequence = train_data['train_sequence']
train_cluster_id = train_data['train_cluster_id']
test_sequences = test_data['test_sequences'].tolist()
test_cluster_ids = test_data['test_cluster_ids'].tolist()
model = uisrnn.UISRNN(model_args)
# Training.
# If we have saved a mode previously, we can also skip training by
# calling:
# model.load(SAVED_MODEL_NAME)
model.fit(train_sequence, train_cluster_id, training_args)
model.save(SAVED_MODEL_NAME)
# Testing.
# You can also try uisrnn.parallel_predict to speed up with GPU.
# But that is a beta feature which is not thoroughly tested, so
# proceed with caution.
for (test_sequence, test_cluster_id) in zip(test_sequences, test_cluster_ids):
predicted_cluster_id = model.predict(test_sequence, inference_args)
predicted_cluster_ids.append(predicted_cluster_id)
accuracy = uisrnn.compute_sequence_match_accuracy(
test_cluster_id, predicted_cluster_id)
test_record.append((accuracy, len(test_cluster_id)))
print('Ground truth labels:')
print(test_cluster_id)
print('Predicted labels:')
print(predicted_cluster_id)
print('-' * 80)
output_string = uisrnn.output_result(model_args, training_args, test_record)
print('Finished diarization experiment')
print(output_string)
def main():
"""The main function."""
model_args, training_args, inference_args = uisrnn.parse_arguments()
diarization_experiment(model_args, training_args, inference_args)
if __name__ == '__main__':
main()
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/mirrors/UIS-RNN.git
git@gitee.com:mirrors/UIS-RNN.git
mirrors
UIS-RNN
UIS-RNN
master

搜索帮助

D67c1975 1850385 1daf7b77 1850385