سلام و وقت بخیر
من یک کد خیلی ساده توی تنسورفلو در محیط پایچارم نوشتم و جواب هم گرفتم ولی خطوط اخطاری قبل از هریک از جواب ها ظاهر می شود . چه کنم ؟
این متن کد منه
import tensorflow as tf
import numpy as np
a = tf.constant(2)
b = tf.constant(3)
c = tf.add(a,b,name="addition")
#e = tf._mul(a,b,name="multipel")
f = a * b
with tf.Session() as sess:
print(sess.run(a))
print(sess.run(b))
print(sess.run(c))
print(f.eval())
print(c.eval())
#print(e)
و جوابهایی که می گیرم هم اینه :
/home/farzaneh/anaconda3/envs/pytorch_tensorflow/bin/python3.6 /home/farzaneh/Desktop/Files/11.py
2
2018-01-02 15:46:41.628351: W tensorflow/core/platform/cpu_feature_guard.cc:45] The TensorFlow library wasn't compiled to use SSE4.1 instructions, but these are available on your machine and could speed up CPU computations.
3
2018-01-02 15:46:41.628381: W tensorflow/core/platform/cpu_feature_guard.cc:45] The TensorFlow library wasn't compiled to use SSE4.2 instructions, but these are available on your machine and could speed up CPU computations.
5
2018-01-02 15:46:41.628388: W tensorflow/core/platform/cpu_feature_guard.cc:45] The TensorFlow library wasn't compiled to use AVX instructions, but these are available on your machine and could speed up CPU computations.
6
5
Process finished with exit code 0
چاره چیست؟