TensorFlow warnings

Hello,

I installed Tensorflow successfully with this manual Install TensorFlow for Nvidia Tegra TX2
https://github.com/igorfed/FlashNvidiaTegraTx2/wiki/Home/_edit

Install Tensor flow for Python 3.5
pip3 install --extra-index-url=https://developer.download.nvidia.com/compute/redist/jp33 tensorflow-gpu
Successfully installed absl-py-0.8.1 astor-0.8.0 gast-0.3.2 grpcio-1.25.0 markdown-3.1.1 numpy-1.17.4 protobuf-3.11.1 setuptools-39.1.0 six-1.13.0 tensorboard-1.9.0 tensorflow-gpu-1.9.0+nv18.8 termcolor-1.1.0 werkzeug-0.16.0 wheel-0.33.6

But, when I try to run the short program - Hello Word - i always got this messages:

nvidia@tegra-ubuntu:~$ python3
Python 3.5.2 (default, Oct  8 2019, 13:06:37)
[GCC 5.4.0 20160609] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import tensorflow as tf
/home/nvidia/.local/lib/python3.5/site-packages/tensorflow/python/framework/dtypes.py:523: FutureWarning: Passing (type, 1) or '1type' as a synonym of type is deprecated; in a future version of numpy, it will be understood as (type, (1,)) / '(1,)type'.
  _np_qint8 = np.dtype([("qint8", np.int8, 1)])
/home/nvidia/.local/lib/python3.5/site-packages/tensorflow/python/framework/dtypes.py:524: FutureWarning: Passing (type, 1) or '1type' as a synonym of type is deprecated; in a future version of numpy, it will be understood as (type, (1,)) / '(1,)type'.
  _np_quint8 = np.dtype([("quint8", np.uint8, 1)])
/home/nvidia/.local/lib/python3.5/site-packages/tensorflow/python/framework/dtypes.py:525: FutureWarning: Passing (type, 1) or '1type' as a synonym of type is deprecated; in a future version of numpy, it will be understood as (type, (1,)) / '(1,)type'.
  _np_qint16 = np.dtype([("qint16", np.int16, 1)])
/home/nvidia/.local/lib/python3.5/site-packages/tensorflow/python/framework/dtypes.py:526: FutureWarning: Passing (type, 1) or '1type' as a synonym of type is deprecated; in a future version of numpy, it will be understood as (type, (1,)) / '(1,)type'.
  _np_quint16 = np.dtype([("quint16", np.uint16, 1)])
/home/nvidia/.local/lib/python3.5/site-packages/tensorflow/python/framework/dtypes.py:527: FutureWarning: Passing (type, 1) or '1type' as a synonym of type is deprecated; in a future version of numpy, it will be understood as (type, (1,)) / '(1,)type'.
  _np_qint32 = np.dtype([("qint32", np.int32, 1)])
/home/nvidia/.local/lib/python3.5/site-packages/tensorflow/python/framework/dtypes.py:532: FutureWarning: Passing (type, 1) or '1type' as a synonym of type is deprecated; in a future version of numpy, it will be understood as (type, (1,)) / '(1,)type'.
  np_resource = np.dtype([("resource", np.ubyte, 1)])

what does this message mean? How can I fix it?

Thank you.

My Cuda version:

NVIDIA Jetson TX2
L4T 28.2.1 [ JetPack 3.3 or 3.2.1 ]
Board: t186ref
Ubuntu 16.04.6 LTS
Kernel Version: 4.4.38-tegra
CUDA 9.0.252

My numpy version is 1.17.4

hello igor.fedorov,

this issue has been fixed by upstream tensorflow, https://github.com/tensorflow/tensorflow/pull/30559

also, you may workaround these warning messages by working with version-1.16 of numpy.
for example,

$ sudo pip3 install -U "numpy < 1.17"

here’s documentation for your reference, https://docs.nvidia.com/deeplearning/frameworks/install-tf-jetson-platform/index.html
thanks

Thank you.
As you said i reinstalled numpy version to 1.16.5.
Now it works correctly.
Thank you.