اكثر اسئلة واجوبة المقابلات طلبا والاختبارات عبر الإنترنت
منصة تعليمية للتحضير للمقابلات والاختبارات عبر الإنترنت والدروس والتدريب المباشر

طوّر مهاراتك من خلال مسارات تعلم مركزة واختبارات تجريبية ومحتوى جاهز للمقابلات.

يجمع WithoutBook أسئلة المقابلات حسب الموضوع والاختبارات العملية عبر الإنترنت والدروس وأدلة المقارنة في مساحة تعلم متجاوبة واحدة.

التحضير للمقابلة

الاختبارات التجريبية

اجعلها الصفحة الرئيسية

احفظ هذه الصفحة في المفضلة

الاشتراك عبر البريد الإلكتروني

TensorFlow اسئلة واجوبة المقابلات

فروقات ذات صلة

TensorFlow vs PyTorch

سؤال 26. What is eager execution and how is it enabled in TensorFlow?

Eager execution allows operations to be executed immediately as they are called, similar to regular Python code. It can be enabled in TensorFlow 2.x by default, or explicitly using tf.compat.v1.enable_eager_execution().

Example:

No explicit session or graph code is required in TensorFlow 2.x

هل هذا مفيد؟ اضف تعليقا عرض التعليقات
 

سؤال 27. Explain the purpose of the tf.keras.layers.Embedding layer.

The Embedding layer is used for word embeddings in natural language processing tasks. It maps integer indices (representing words) to dense vectors, allowing the model to learn semantic relationships between words.

Example:

embedding_layer = tf.keras.layers.Embedding(input_dim=vocabulary_size, output_dim=embedding_dimension)

هل هذا مفيد؟ اضف تعليقا عرض التعليقات
 

سؤال 28. How can you save and load a TensorFlow model?

A TensorFlow model can be saved using the tf.keras.models.save_model method. It can be loaded using the tf.keras.models.load_model method for further use or deployment.

Example:

model.save('saved_model.h5')
loaded_model = tf.keras.models.load_model('saved_model.h5')

هل هذا مفيد؟ اضف تعليقا عرض التعليقات
 

سؤال 29. Explain the purpose of the tf.config.experimental.list_physical_devices method.

tf.config.experimental.list_physical_devices is used to list all available physical devices (CPUs, GPUs) in the TensorFlow environment. It can be helpful for configuring distributed training or checking available hardware.

Example:

devices = tf.config.experimental.list_physical_devices(device_type='GPU')

هل هذا مفيد؟ اضف تعليقا عرض التعليقات
 

سؤال 30. What is the purpose of the tf.data.Dataset.cache method in TensorFlow?

The cache method in tf.data.Dataset is used to cache elements in memory or on disk, improving the performance of dataset iteration by avoiding redundant data loading.

Example:

dataset = dataset.cache()

هل هذا مفيد؟ اضف تعليقا عرض التعليقات
 

الاكثر فائدة حسب تقييم المستخدمين:

حقوق النشر © 2026، WithoutBook.