简体   繁体   English

使用 tensorflow.js 在 model.fit 中详细说明

[英]Verbose in model.fit with tensorflow.js

How to get model.fit verbose in TensorFlow.js如何在 TensorFlow.js 中获取 model.fit 详细信息

I already try:我已经尝试过:

  await model.fit(xs, ys, {
    verbose: 1,
    epochs: 1000,
    shuffle: true
  });

and

  await model.fit(xs, ys, {
    verbose: 2,
    epochs: 1000,
    shuffle: true
  });

and

  await model.fit(xs, ys, verbose=1, {
    epochs: 1000,
    shuffle: true
  });

and

  await model.fit(xs, ys, true, {
    epochs: 1000,
    shuffle: true
  });

But nothing works.但没有任何作用。 Any idea?任何的想法?

您应该在 tf.js 中使用“tfvis”来详细说明

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM