Python Forum
Python programming and a dataset
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Python programming and a dataset
#10
It's not an error, just warning. It is explained here https://stackoverflow.com/a/47227886/4046632 if you didn't see it.
export TF_CPP_MIN_LOG_LEVEL=2 will set environmental variable TF_CPP_MIN_LOG_LEVEL to 2, i.e. don't show warnings. Or if you prefer - show only errors, fatal and num_severities levels. TensorFlow will check that variable when running to adjust the minimum logging level

here https://github.com/tensorflow/tensorflow.../logging.h is the definition of log levels:
Output:
INFO = 0; // base_logging::INFO; WARNING = 1; // base_logging::WARNING; ERROR = 2; // base_logging::ERROR; FATAL = 3; // base_logging::FATAL; NUM_SEVERITIES = 4; // base_logging::NUM_SEVERITIES;
If you can't explain it to a six year old, you don't understand it yourself, Albert Einstein
How to Ask Questions The Smart Way: link and another link
Create MCV example
Debug small programs

Reply


Messages In This Thread
Python programming and a dataset - by ErnestTBass - Feb-04-2019, 03:51 PM
RE: Python programming and a dataset - by buran - Feb-04-2019, 04:24 PM
RE: Python programming and a dataset - by buran - Feb-04-2019, 07:18 PM
RE: Python programming and a dataset - by buran - Feb-05-2019, 02:03 PM
RE: Python programming and a dataset - by buran - Feb-05-2019, 06:02 PM
RE: Python programming and a dataset - by buran - Feb-05-2019, 06:51 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Using Autoencoder for Data Augmentation of numerical Dataset in Python Marvin93 2 3,396 Jul-10-2020, 07:18 PM
Last Post: Marvin93

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020