Saltar al contenido principal

TensorFlow

Definición

TensorFlow is a deep learning framework with a focus on production deployment. Keras es la API de alto nivel. Soporta CPU, GPU, TPU, and mobile/edge (TFLite). Es an alternative to PyTorch; TensorFlow and Keras are strong for production pipelines, infrastructure (TF Serving, TPU), and mobile (TFLite). Used for vision, NLP, and recommendation systems; the ecosystem includes TensorFlow Hub for pretrained models.

Cómo funciona

Construya modelos con Keras (API secuencial o funcional) o la API de TensorFlow de nivel inferior. Entrene con ejecución eagertion (default, PyTorch-like) or graph mode (faster, exportable). Export to SavedModel (standard serving format) or TFLite (mobile/edge, with quantization support). TensorFlow Hub and Keras Applications provide pretrained models for transfer learning. Distributed training uses tf.distribute; deployment uses TF Serving, Vertex AI, or on-device TFLite. The pipeline from data (tf.data) to training to serving is well integrated.

Casos de uso

TensorFlow suits production pipelines, mobile/edge (TFLite), and quick prototyping with Keras and Hub models.

  • Production ML pipelines and serving (por ej. SavedModel, TF Serving)
  • Mobile and edge deployment (TFLite)
  • Quick prototyping with Keras and pretrained models from Hub

Documentación externa

Ver también