TensorFlow,如何自动添加运行路径到日志目录

时间:2016-12-19 14:39:38

标签: tensorflow

根据this,应该在logdir中添加一个run-subdir,例如:

/some/path/mnist_experiments/run1/

是否有某种方法可以自动将runN/添加到最小N的logdir,以便logdir尚不存在?

1 个答案:

答案 0 :(得分:1)

好吧,不是直接在tensorflow中,但你可以这样做:

// Child component
Vue.component('child', {
  template: '<div>{{itemCount}}</div>',
  props: {
   items: Array
  },
  data: function() { 
    return { itemCount: 0 }
  },
  updated: function() {
    this.itemCount = this.items.length;
  }
})

// Main app
var app = new Vue({
  el: '#app',
  data: {
    items: []
  },
  methods: {
    addItem: function() {
      this.items.push(Math.random());
    }
  }
});