python-3.x - 如何从 tfrecord 解码 vggish 音频集嵌入?

标签 python-3.x tensorflow embedding tfrecord transfer-learning

我正在尝试使用 VGGish 的预训练基础生成的 128 字节嵌入。音频数据迁移学习模型。使用 python vggish_inference_demo.py --wav_file ... 将我的训练数据编码到 tfrecord 效果很好,但现在我想将其用作另一个模型的输入(例如,我使用它创建的神经网络) keras 或其他)。使用一些similar questions和文档,我到目前为止已经介绍了一个文件的第一个嵌入记录:

tfrecords_filename = 'example1.tfrecord'
record_iterator = tf.python_io.tf_record_iterator(path=tfrecords_filename)
string_record = next(record_iterator)
example = tf.train.SequenceExample()
example.ParseFromString(string_record)
print(example.feature_lists.feature_list['audio_embedding'].feature[0].bytes_list.value)

这会产生

[b'\x99\x07\xaa>\xd2_R_\x9f\xbbqN\x99\xa18V\xad\x7f\x93\xf0)\xdd4\x80~\xb0\xa4d\x8e\x85\xb6\x88\xa3?U\xa6Q[\x9b\x038\xff\x00EE>OJ\xa5\xb8\x828)\x97^\x8a\xaa\x12h\xff\xff\xc39\xce\x9b\x13\x80\x00j\xcaZ\xac\xff\xff\x0f\xac\x1c\x90&\xd2.b\xe2{\xc1\x15\xe9\xba\xed\xd4\xa9\xff\xdc\xb5\x99]!\x04\xca\xff\xa6;b\xe0\x19\xbfW\xebP!\xff\xc5\xff\x82\xff\x1a\xbe\xec-h\xff\x8d\xff\r\x96\x00\x00\xff']

我什至不确定这个 b'...' 是什么(有超过 64 个且少于 128 个 xs - 所以不确定这与任何内容如何匹配)。

也许我在这里缺少一些基本的 Python 知识,但是如何将其转换为可以用作其他模型输入的数字数组?

最佳答案

事实证明,这些是可以转换为十六进制的字节,十六进制可以转换为0到255之间的整数数组。

import tensorflow as tf
import numpy as np

tfrecords_filename = 'example1.tfrecord'
record_iterator = tf.python_io.tf_record_iterator(path=tfrecords_filename)
string_record = next(record_iterator)
example = tf.train.SequenceExample()
example.ParseFromString(string_record)
hexembed = example.feature_lists.feature_list['audio_embedding'].feature[0].bytes_list.value[0].hex()
arrayembed = [int(hexembed[i:i+2],16) for i in range(0,len(hexembed),2)]
print(arrayembed)

这会产生我想要的格式的输出:

[153, 7, 170, 62, 210, 95, 82, 95, 159, 187, 113, 78, 153, 161, 56, 86, 173, 127, 147, 240, 41, 221, 52, 128, 126, 176, 164, 100, 142, 133, 182, 136, 163, 63, 85, 166, 81, 91, 155, 3, 56, 255, 0, 69, 69, 62, 79, 74, 165, 184, 130, 56, 41, 151, 94, 138, 170, 18, 104, 255, 255, 195, 57, 206, 155, 19, 128, 0, 106, 202, 90, 172, 255, 255, 15, 172, 28, 144, 38, 210, 46, 98, 226, 123, 193, 21, 233, 186, 237, 212, 169, 255, 220, 181, 153, 93, 33, 4, 202, 255, 166, 59, 98, 224, 25, 191, 87, 235, 80, 33, 255, 197, 255, 130, 255, 26, 190, 236, 45, 104, 255, 141, 255, 13, 150, 0, 0, 255]

关于python-3.x - 如何从 tfrecord 解码 vggish 音频集嵌入?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53340036/

相关文章:

python - 获取 dateutil.parse 中的格式

python - 在 numpy 数组上运行 Tensorflow classify_image

python - 保存在数据框中检测到的对象 : tensorflow object_detection

mysql - 从 Excel 连接到 mysql 嵌入式数据库?

pointers - bytes.Reader,替换底层 []byte 数组

python - 如何将元组作为参数传递给 `divmod()` 函数

python - 使用 Python 将 url 作为文本获取时出现关键错误

python - 为什么更改 .format 中的变量后,字符串格式的全局变量仍保持不变?

python - 在 Tensorflow 中限制 GPU 设备

actionscript-3 - As3字体嵌入