اذهب إلى المحتوى

Ali Ahmed55

الأعضاء
  • المساهمات

    1869
  • تاريخ الانضمام

  • تاريخ آخر زيارة

  • عدد الأيام التي تصدر بها

    14

كل منشورات العضو Ali Ahmed55

  1. طيب هي بتكبت في اي جزاء في الكود ده # The 'deep_hit_model' is a Sequential model in Keras, meaning the layers are stacked in a linear fashion. deep_hit_model = keras.models.Sequential([ # - The first layer is a Dense layer with 8 units and 'tanh' activation function. This layer is responsible for transforming the input into a higher-dimensional space. keras.layers.Dense(8), keras.layers.BatchNormalization(), keras.layers.Activation('tanh'), keras.layers.Dropout(0.1), # - The second layer is a Dense layer with 128 units and 'tanh' activation function, allowing the model to learn more complex patterns. keras.layers.Dense(128), keras.layers.BatchNormalization(), keras.layers.Activation('tanh'), keras.layers.Dropout(0.3), # - The third layer is a Dense layer with 64 units and 'tanh' activation function, further processing the data with non-linearities. keras.layers.Dense(64), keras.layers.BatchNormalization(), keras.layers.Activation('tanh'), # - The fourth layer is a Dense layer with 32 units and 'tanh' activation function, continuing to refine the representation of the data. keras.layers.Dense(32), keras.layers.BatchNormalization(), keras.layers.Activation('tanh'), # - The final layer is a Dense layer with 1 unit and 'sigmoid' activation function, producing an output between 0 and 1, suitable for binary classification. keras.layers.Dense(1 , activation='sigmoid'), ])
  2. السلام عليكم هو اي الResNet والDenseNet ؟
  3. السلام عليكم هو لو قيمه الval_accuracy ثابته زي ماهي في كل مره في النموذج ده معني اي ؟
  4. تمام جدا الف شكراا جدا لحضرتكم جزاكم الله كل خير
  5. تمام جدا الف شكراا جدا لحضرتك جزاك الله كل خير
  6. السلام عليكم هو في الطبقات الخفيه عادي لو استخدم ReLU حتي لو هعمل تصنيف ؟
  7. تمام جدا جدا الف شكراا جدا لحضرتك جزاك الله كل خير
  8. السلام عليكم هو كل ما قيمه الaccuracy تزيز كده يكون النموذج افضل ؟ فيه الكود ده loss, accuracy = deep_hit_model.evaluate(x_test_scaled, y_target_test) print(f"Test Accuracy: {accuracy}") ودي النتيجه 135/135 ━━━━━━━━━━━━━━━━━━━━ 0s 1ms/step - accuracy: 0.6258 - loss: 0.6506 Test Accuracy: 0.6291666626930237
  9. تمام جدا الف شكراا جدا لحضرتكم جزاكم الله كل خير
  10. السلام عليكم هو اي الفرق مابين الconfusion_matrix ويبن الConfusionMatrixDisplay ؟
  11. الف شكراا جدا لحضرتك جزاك الله كل خير
  12. تمام جدا الف شكراا جدا لحضرتك جزاك الله كل خير
  13. الف شكراا جدا لحضرتكم جزاكم الله كل خير
  14. السلام عليكم هو اي الnumpy.where واي االفرق مابينها وبين الif ؟
  15. طيب الداله دي موجود في TensorFlow و keras ؟
  16. تمام جدا الف شكراا جدا لحضرتك جزاك الله كل خير
  17. السلام عليكم هي اي الداله دي predict_proba ؟
  18. السلام عليكم هو مش التصنيف يعتبر بردو تنبواء ؟ يعني النموذج بيتنباء ان الشخص دي مريض لكن دي مش مريض
  19. الف شكرااا جدا جدا لحضرتكم جزاكم الله كل خير
  20. السلام عليكم هل يوجد علاقه مابين الepochs والbatch-size في الشبكه العصبيه ؟
  21. اه دي نتيجه الكود ده الان الefs عبارن 0.0-1.0 data_train['efs_combined'] = data_train['efs'] * data_train['efs_time'] y_target = data_train['efs_combined'] طيب دي استخدم ازي في الشبكه العصبيه دي # The 'deep_hit_model' is a Sequential model in Keras, meaning the layers are stacked in a linear fashion. deep_hit_model = keras.models.Sequential([ # - The first layer is a Dense layer with 8 units and 'tanh' activation function. This layer is responsible for transforming the input into a higher-dimensional space. keras.layers.Dense(8), keras.layers.BatchNormalization(), keras.layers.Activation('tanh'), keras.layers.Dropout(0.1), # - The second layer is a Dense layer with 128 units and 'tanh' activation function, allowing the model to learn more complex patterns. keras.layers.Dense(128), keras.layers.BatchNormalization(), keras.layers.Activation('tanh'), keras.layers.Dropout(0.3), # - The third layer is a Dense layer with 64 units and 'tanh' activation function, further processing the data with non-linearities. keras.layers.Dense(64), keras.layers.BatchNormalization(), keras.layers.Activation('tanh'), # - The fourth layer is a Dense layer with 32 units and 'tanh' activation function, continuing to refine the representation of the data. keras.layers.Dense(32), keras.layers.BatchNormalization(), keras.layers.Activation('tanh'), # - The final layer is a Dense layer with 1 unit and 'sigmoid' activation function, producing an output between 0 and 1, suitable for binary classification. keras.layers.Dense(1 , activation='linear'),
  22. السلام عليكم مثال انا عندي عمود زي دي فيه قيمه زي دي اغلب القيمه عبار عن 0.0 فا ازي اخلي النموذج مايكونش منحيز لقيمه دي ؟ وكمان القيمه الزي دي اي الافضل الطبقه الاخير sigmoid والا linear ؟ efs_combined 0.0 13268 5.8 329 5.5 326 5.2 322 5.6 317 ... 27.7 1 24.1 1 37.6 1 21.8 1 17.2 1
×
×
  • أضف...