If you have two disjoint graphs, and want to link them, turning this:
x = tf.placeholder(\'float\')
y = f(x)
y = tf.placeholder(\'float\')
z = f(y)
<
It turns out that tf.train.import_meta_graph passes all additional arguments to the underlying import_scoped_meta_graph which has the input_map argument and utilizes it when it gets to it's own (internal) invocation of import_graph_def.
It is not documented, and took me waaaay toooo much time to find it, but it works!