Skip to content

Instantly share code, notes, and snippets.

View rajsandhu1989's full-sized avatar
💭
Working with deep learning projects and trying my ideas with most common dataset

Rajinder Sandhu rajsandhu1989

💭
Working with deep learning projects and trying my ideas with most common dataset
View GitHub Profile
#import tensorflow as tf
import tensorflow as tf
# Declare a constant, we need to import constant from tensorflow
sample_constant=tf.constant(20)
print(sample_constant.dtype)
# Now we can perform some operations using tensorlfow in this constant
#Similarly, we can create variables also
A1=tf.Variable([1,2,3,4])
print(A1)
#Above created variable can be printed using the numpy conversion
pip install scikit-plot