TensorSpace.js
开始使用
基本概念
TensorSpace Converter
模型预处理
模型
网络层
网络层融合
性能监控
TensorSpace 支持将 stats 整合至应用之中。
图1 - 默认状态下,禁用Stats
在 TensorSpace 中,可以通过以下方法来启用并配置 stats 组件:
<!-- import dependencies -->
<script src="stats.min.js"></script>
<script src="tensorspace.min.js"></script>

<!-- other HTML -->

<script>
    let model = new TSP.models.Sequential( container, {
        // ... other configurations ...
        stats : true
        // ... other configurations ...

    } );
    // ... other TSP implementations ...
</script>

<!-- other HTML -->
启用的性能监控组件将出现在浏览器的左上角。
图2 - 启用Stats
更多详情参见Stats.js