Deep Learning & Neural Networks
TensorFlow is a Python library by Google used to build deep learning models like neural networks.
pip install tensorflow
import tensorflow as tf
model = tf.keras.Sequential([ tf.keras.layers.Dense(10, activation='relu'), tf.keras.layers.Dense(1) ])
model.compile( optimizer='adam', loss='mean_squared_error' )
model.fit(X_train, y_train, epochs=10)
model.predict([[5]])
- ANN (Neural Networks) - CNN (Image processing) - RNN (Sequence data)