我已按照Magenta MIDI Interface中的说明进行操作,但未能启动捕获会话。即使我将 VMPK(虚拟 MIDI 钢琴键盘)中的调制轮设置为最大值,即 127,基本上也没有任何反应。
我使用以下 shell 脚本来启动 Magenta MIDI 接口。
#!/bin/bash
echo "Hello, MIDI!"
CURR_DIR=`pwd`
TMP_DIR=$CURR_DIR/tmp
cd ~/git/magenta
# List all available ports
bazel-bin/magenta/interfaces/midi/midi --list
bazel-bin/magenta/interfaces/midi/midi \
--input_port="VMPK Output" \
--output_port="VMPK Input" \
--generator_name=attention_rnn \
--checkpoint=$TMP_DIR/attention_rnn/logdir/run1/train \
--hparams="{'batch_size':32,'rnn_layer_sizes':[32, 32]}"
这是一个输出。
Hello, MIDI!
Input ports: 'VMPK Output'
Output ports: 'VMPK Input'
WARNING:tensorflow:<tensorflow.python.ops.rnn_cell.BasicLSTMCell object at 0x11cbccad0>: Using a concatenated state is slower and will soon be deprecated. Use state_is_tuple=True.
WARNING:tensorflow:<tensorflow.python.ops.rnn_cell.BasicLSTMCell object at 0x11cbcce10>: Using a concatenated state is slower and will soon be deprecated. Use state_is_tuple=True.
WARNING:tensorflow:<tensorflow.contrib.rnn.python.ops.rnn_cell.AttentionCellWrapper object at 0x11cbccb90>: Using a concatenated state is slower and will soon be deprecated. Use state_is_tuple=True.
Waiting for start control signal...
此时,我旋转VMPK上的调制轮,在下图中被绿色框包围,但即使将值设置为127也没有任何反应。
我的环境是:
- Mac OS X 优胜美地 10.10.5
- 蟒蛇 2.7.11
- 张量流 0.10.0rc0
- 洋红色 86ea30ab27adf5923902d0f297ca42bd12bcb4d1