给我用python和dtw包写一个dtw算法的代码
时间: 2023-03-12 14:50:57 浏览: 117
基于python的dtw算法,实现实时语音识别
我可以为您提供一段示例代码:import numpy as np
from dtw import dtwx = np.array([0, 0, 1, 1, 2, 4, 2, 1, 2, 0]).reshape(-1, 1)
y = np.array([1, 1, 1, 2, 2, 2, 3, 2, 1, 0]).reshape(-1, 1)dist, cost, acc, path = dtw(x, y, dist=lambda x, y: np.linalg.norm(x - y, ord=1))print('Minimum distance found:', dist)
阅读全文