how to turn off execution ms / step in colab - output

out of a sudden I get in my output cell of my colab's notebook the execution time for each step: has anybody an idea how this can be turned off?
enter image description here

Well, just found out that it has nothing to do with colab. The info came from keras and I had to choose the verbose parameter 0

Related

why am I getting AssertionError: train: No labels found in /content/dataset/test/labels.cache, can not start training

AssertionError: train: No labels found in /content/dataset/test/labels.cache, can not start training
Automatically generated cache files
I'm doing yolo5
An error occurs during the configuration and training a dataset.
I understand that the command automatically creates a cache file under the train folder. I've confirmed that it's actually made
These errors appear. What's the problem? I ask for your help me.
An error occurs when only the dataset is different from the same code

Tensorboard shows the same result after specifying a new logdir in jupyter notebook

I used the following lines to open a tensorboard for one log directory in a Jupyter notebook:
%load_ext tensorboard
%tensorboard --logdir saved_models/tutorial5/GoogleNetLocal/lightning_logs/version_2/
In another cell, I wanted to open another board for a different directory using %tensorboard --logdir ./saved_models/tutorial5/ResNetLocal/lightning_logs/version_0/. However, it still shows the previous board as shown below. Why it doesn't create a new board for the second directory?
Thank you so much for your help!
I'll share the answer to this question in case it might be useful for someone else:
The issue can be solved by specifying a different port using --port xxxx when running %tensorboard

How to make heartbeats for Autocad from a plugin (C#)

Im developping a plugin for AutoCAD on Forge. Via a custom command (Provided by the plugin), it will publish a big png (25000x20000 for example) and sometimes it causes a timeout and the workitem failed.
<report.txt>
...
[03/02/2022 22:10:41] Save changes to page setup [Yes/No]? <N> N
[03/02/2022 22:10:41] Proceed with plot [Yes/No] <Y>: Y
[03/02/2022 22:10:41] Effective plotting area: 21212.94 wide by 20000.00 high
[03/02/2022 22:10:41] Plotting viewport 2.
[03/02/2022 22:11:42] Error: AutoCAD Core Console is shut down due to timeout.
[03/02/2022 22:11:42] End script phase.
[03/02/2022 22:11:42] Error: An unexpected error happened during phase CoreEngineExecution of job.
...
Im guessing the timeout will be done by design (Work Item Heartbeat) but havent succeed to find the way to make the long plotting survive.
Is there anyone who can help me?
The suggested solution, HeartBeat.cs has been tried but it seems not working for my case (because the engine Im using is AutoCAD?) though the document said that it will be ok if my plugin will print something (to stdout(=report.txt?) or trace(the suggested one) before one minute silence.
Additionally the actual PLOT command is issued on a scr file which is loaded and is executed inside my plugin.
PS1.
The only way to print something on report.txt I find is
Document doc = Application.DocumentManager.MdiActiveDocument;
doc.Editor.WriteMessage("somthing");
and seems the doc doesnt work with threading.
PS2.
The limitProcessingTimeSec for the workitem has been changed to 300, but it seems not related.

SSIS: Getting a red X on OLE DB destination step

I'm trying to debug an SSIS job on my local desktop and am running into a problem with the last step, which is writing information to a database:
There are no errors in the output window:
I have no idea where else to look to find out what the problem is. Is there another place I should look to figure out what's up?
Check the output window for errors.
you can see a example output window here..

Close a single tab in Chrome using Batch command

I'm relatively new to batch commands and have been learning steadily. My problem is like this:
I've understood how to kill processes using batch commands using many different methods. However, I've been unable to figure out how to close a single tab in, preferably, chrome.
Any thoughts would be greatly appreciated!
Thanks!
So, I suppose I should state my exact problem.
I'm using notepad++ as my LaTeX compiler and sending the final pdf to chrome. The reason: I usually have ~20 tabs open related to the project I'm working on and it just makes my work much easier to split my screen between notepad++ and chrome.
My current batch file compiles the LaTeX code and sends the compiled document to chrome as a new tab. For obvious reasons, i don't want to close a tab each time I compile, so I thought that closing the current tab at the same time during compiling would solve my problem. But, I just can't find a way to get my batch file to only close the tab with my compiled pdf.
Thanks in advance!
check all running chrome instances/tabs with :
wmic process where "caption='chrome.exe'" get
and see processes properties.Probably the best indicator that you can rely on in this case is CreationDate (other properties are basically the same for all chrome instances) - it always comes in format YYYYMMDDHHmmss.ms and is easy for string comparison.But you'll have to know the time when it was started.