Session-2
Fri 14 November 2025
title: "Session 2" author: "Raja CSP Raman" date: 2019-05-07 description: "-" type: technical_note draft: false
import tensorflow as tf
import os
# Just disables the warning, doesn't enable AVX/FMA
os.environ['TF_CPP_MIN_LOG_LEVEL'] = '2'
a = tf.constant(1.2)
b = tf.constant(2.8)
c = a + b
c
<tf.Tensor 'add …Category: tensorflow-work
Read More