markdown 如何导出网络以在tensorboard中使用

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown 如何导出网络以在tensorboard中使用相关的知识,希望对你有一定的参考价值。

## Generate the graph definition
Once the graph is defined and the session initialized, the graph is exported with:

```[python]
writer = tf.summary.FileWriter("output", sess.graph)
```

where ```sess``` is the session object and ```"output"``` is the output folder where the definition will be stored.

## Show the graph 
Once the definition is stored in a file, the graph can be rendered with the command: 

```
python -m tensorboard.main --logdir="[path to the folder with the graph definition]"
```

This command runs a web server and using the web browser can be seen the generated graph.

以上是关于markdown 如何导出网络以在tensorboard中使用的主要内容,如果未能解决你的问题,请参考以下文章

如何导出 Blender 模型以在 THREE.js 中显示颜色

如何导出 C# dll 方法/函数以在 C++ 中使用它 [重复]

如何将 React 组件导出为 NPM 包以在单独的项目中使用?

如何导出 DAE 文件以在 Scene Kit 中使用而不会看到“无标题动画”?

如何从我的 webpack 2 配置中创建/生成/导出文件以在我的 React 代码中使用?

如何将 PSD 文件中的所有图层导出为 PDF 矢量以在 Xcode 6 中使用资产目录