from IPython.utils import io
with io.capture_output() as captured:
# Enter code here
在我的例子中,该单元具有以下代码
from IPython.utils import io
with io.capture_output() as captured:
!python train.py --logtostderr --train_dir=/content/drive/My\ Drive/ocr_resized_train_checkpoints/ --pipeline_config_path=/content/frcnn_inception.config
from google.colab import output
import threading
#holds time in secs.
times = []
#this 6000 represents 100 mins
for y in range(6000):
#every 5mins
if y %300==0:
#append this number
times.append(y)
else:
continue
#this function holds are output.clear()
def gfg():
output.clear()
#for the length of the array times
for x in range(len(times)):
#start threading with the Timer module each element of the array
#and when times[x] arrives use function gfg to clear console.
timer = threading.Timer(times[x],gfg)
timer.start()
#your darknet training command
!./darknetdetectortrain
6条答案
按热度按时间vm0i2vca1#
你可以使用google.colab.output.clear()
hk8txs482#
我实际上找到了一种解决这个问题的方法。请将您试图禁止其输出的代码行包含在以下行中
在我的例子中,该单元具有以下代码
我希望这对某人有帮助。如果有任何问题请告诉我。
brgchamk3#
嗨,Git什·马里佩迪,
所以我遇到了同样的问题,虽然这不是最优雅的方式,我已经想出了一个黑客,使其工作.我所做的是使用线程模块和数组循环一堆数字到数组和线程我的输出.清除()函数沿着训练我的模型。我今晚才想出这个,所以我将使用时间模块开发一个更好的版本,因为这个版本是硬编码的。
我的下一个版本将能够无限期地继续下去,直到工作环境爆炸或者你让火车停下来。FYI如果您运行此脚本,并且希望更改时间以及脚本清除输出所需的时间,请重置运行时间,因为您将开始出现问题。
wlwcrazw4#
%%capture
同样有效
ff29svar5#
这是一个部分解,但您也可以将拟合方法中的
verbose
参数指定为0以获得无输出,或指定为2以获得减少的输出。您还可以使用TensorBoard查看正在发生的事情。
acruukt96#
我设了一条捷径
Ctrl+Shift+C组合键
清除所有输出。只需在快捷方式下设置即可。