根据this,应该在logdir中添加一个run-subdir,例如:
/some/path/mnist_experiments/run1/
是否有某种方法可以自动将runN/
添加到最小N的logdir,以便logdir尚不存在?
答案 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());
}
}
});