Solución Confirmada / tensor-allocation-failed
Tensor allocation failed: Memory growth not allowed
Diagnóstico del error
Este error se genera cuando el GPU no puede aumentar la memoria de manera dinámica. Es usual en configuraciones donde se preasigna mucha memoria o en GPUs compartidos.
Fix Sugerido
Permitir crecimiento de memoria usando: `gpus = tf.config.experimental.list_physical_devices('GPU'); tf.config.experimental.set_memory_growth(gpus[0], True)`.