Background:
Brain tumor diagnosis from magnetic resonance imaging (MRI) remains a challenging task due to the high variability in tumor appearance and the limitations of manual interpretation.
Methods:
To address these challenges, this paper proposes NeuroFusionNet, a deep learning framework for automated brain tumor classification from MRI. The framework integrates GAN-based synthetic image generation with transfer learning using a fine-tuned VGG16 backbone. Real and GAN-generated MRI images are passed through VGG16 to extract discriminative feature representations, which are then used for final classification. To adapt the model to domain-specific MRI characteristics while preserving pretrained knowledge, the last ten layers of VGG16 are fine-tuned and the remaining layers are kept frozen.
Results:
The effectiveness of NeuroFusionNet is validated on two publicly available brain MRI datasets. Experimental results demonstrate that the proposed learning framework achieves classification accuracies of 99.05 and 98.75% on the Brain Tumor MRI Dataset and the MRI with Bounding Boxes Dataset, respectively, consistently outperforming several state-of-the-art neural architectures, including VGG16, VGG19, MobileNetV2, DenseNet121, and NASNetLarge.
Conclusion:
The results suggest that NeuroFusionNet is effective for the evaluated public MRI datasets; additional external validation is required.
1 IntroductionBrain tumors arise from abnormal cell proliferation within the brain or adjacent intracranial structures and may be primary or metastatic. They are classified into two categories: primary, which indicates that they originate in the brain, and secondary, which indicates that they spread from another area of the body. Additionally, types of brain tumors are classified based on their histomorphology, which is determined by their unique molecular characteristics and tissue histology (DeAngelis, 2001). Meningioma is the most common primary CNS tumor overall, whereas glioblastoma is the most common malignant primary brain tumor (Van Meir et al., 2010), they constitute a significant threat to public health. Gliomas can impact any region of the brain and may present as either well-defined or diffusely dispersed tumors.
Gliomas are tumors of the glial cells of the brain, which are used to support the functioning of the nerves inside the brain. These tumors belong to a category called astrocytoma, oligodendrogliomas, brain stem gliomas, and optic gliomas, all of which may be classified as either benign or malignant neoplasms (Louis et al., 2021). The most common type of brain tumor is meningioma, which originates from the meninges, the membrane that encases and protects the brain and spinal cord. Approximately 10–15% of meningiomas are categorized as atypical or malignant, but the rest, constituting 85–90%, are benign. A pituitary adenoma is the commonest tumor of the pituitary gland, the organ controlling the endocrine system. Tumors of the pituitary gland are classified according to their size into pituitary microadenomas (those with a diameter of less than 10 mm), pituitary macroadenomas (greater than 10 mm), and massive tumors (more than 40 mm) (Molitch, 2017).
Research on the classification of brain tumors is complex and continuing. This study aimed to classify several forms of brain tumors using MRI scans. Computed Tomography (CT) and Magnetic Resonance Imaging (MRI) are two prevalent technologies for detecting irregularities in the location, size, or composition of brain tissue (Muhammad et al., 2020). Medical experts favor MRI over other diagnostic methods, and research in this field is increasingly significant. Tissues can be imaged with CT and MRI to determine their dimensions, morphology, and position.
Recent developments in medical AI have increasingly validated machine learning in a spectrum of diseases. For instance, federated learning is the focus of extensive research concerning IoT-based health applications (Campos et al., 2022), while ensemble approaches have generated great results in coronary artery disease detection (Sapra et al., 2021). Supervised learning methods, too, have been efficiently used in the classification of neurological conditions, such as migraine (Gulati et al., 2022). The above studies illustrate that AI is expected to play an increasingly important role in the health domain, thus spurring more investigations into deep-learning architectures, mainly NeuroFusionNet, for complex diagnostic problems. In the present study, despite the availability of recent architectures such as ResNet50 and Vision Transformers, VGG16 was selected as a backbone due to its stability, simplicity in transfer learning, and demonstrated strong performance in multiple medical imaging tasks. To counter class imbalance, the minority tumor classes were oversampled, and class weighting in training was implemented. A mean squared error (MSE) loss function was used to train the GAN component to enhance the critical features corresponding to MRI images for classification. As for transfer learning, this was achieved by unfreezing the last ten layers of VGG16, with loss convergence monitored through validation loss tracking and early stopping. For completeness and reproducibility, a full architectural block diagram has been inserted to illustrate GAN-based feature enhancement combined with transfer learning and classification layers.
This study aims to improve the care of patients with brain tumors and increase the accuracy of diagnosis by leveraging deep learning models. The main contributions of this study are as follows:
A new hybrid method, VGG16 and generative adversarial networks (GANs) (NeuroFusionNet), is presented to identify different types of brain tumors and distinguish them from healthy tissue.
To improve brain tumor classification performance, the suggested model incorporates deep transfer learning.
The NeuroFusionNet was compared with VGG16, VGG19, MobileNetV2, DenseNet121, and NASNetLarge under a consistent experimental setting.
To improve generality and resilience, the model uses data augmentation techniques, fine-tuning strategies, and an ideal learning rate schedule.
2 MethodsThe proposed NeuroFusionNet framework combines GAN-based synthetic image generation with transfer learning using a VGG16 backbone to classify brain MRI images into four classes: glioma, meningioma, no tumor, and pituitary tumor, as shown in Figure 1. Real and GAN-generated MRI images are passed through the VGG16 backbone to extract feature representations, which are then combined before the final classification layer. The last ten layers of VGG16 were unfrozen for fine-tuning, while the remaining layers were kept frozen to preserve pretrained ImageNet representations. Classification was performed using a custom classifier head composed of Global Average Pooling, dense layers, batch normalization, and dropout, followed by a softmax output layer. Adam optimization with cosine decay learning-rate scheduling, early stopping, and ReduceLROnPlateau was used during training.

High-level overview of the proposed NeuroFusionNet workflow for brain tumor classification.
2.1 DatasetThe methodology was evaluated using two datasets: the Brain Tumor MRI dataset (Esfandiari, 2025), with selected squares, including a 7,153 MRI images, and another brain tumor MRI with boundary boxes (Sorour, 2025), consisting of 5,249 MRI images. Both datasets comprise four categories: glioma, pituitary, meningioma, and No tumor, as illustrated in Figure 2. Table 1 illustrates the allocation of classes for both datasets.

Sample in the data brain tumor MRI dataset and MRI for brain tumor with bounding boxes.
DatasetCaseNumber of imagesBrain tumor MRI datasetGlioma1,621Meningioma1775No tumor2000Pituitary1757Total7,153Brain tumor MRI with boundary boxesGlioma1,289Meningioma1,589No tumor811Pituitary1,560Total5,249Number of images and category: brain tumor.
All data used in this study were obtained from publicly available databases, and their usage did not require patient consent or institutional authorization, as they are publicly available and de-identified datasets, in accordance with applicable ethical guidelines
2.2 PreprocessingIn this part of the methodology, the preprocessing pipeline has been discussed in detail to address class imbalance and augment MRI images from two Kaggle datasets: the Brain Tumor MRI Dataset and the MRI for Brain Tumor with Bounding Boxes. Class distributions in the original datasets were first analyzed to determine which of the four tumor types was imbalanced (Brummer et al., 1993). For instance, the classes were resampled using the random oversampling of minority classes via duplication until they had equal representation across all classes. The newly created dataset was saved to a new directory, including the original images and replicated images (Huang et al., 2023). All images were resized to the same dimensions of 224 × 224 pixels, meeting requirements for input to deep learning models like VGG16 for computational efficiency and uniformity during training. To ensure proper evaluation, the dataset was first divided into training (80%), validation (10%), and testing (10%) subsets. Data augmentation and balancing techniques were subsequently applied to improve class representation and enhance model generalization. Care was taken to maintain separation between training and evaluation processes, ensuring that model performance reflects its ability to generalize to unseen data, as illustrated in Figure 3. More importantly, to improve the performance of the model, data augmentation was performed with the Image Data Generator in TensorFlow, in which random transformations were applied, including rotations, zooms, shearing, shifting, and flips across a horizontal axis that represented variability in the real world and would create different representations of MRI images (Atienza, 2020).

Dataset preprocessing steps.
2.3 Methods of transfer learningPre-trained models are deep learning models that have been created and trained on extensive datasets (Zhuang et al., 2020). As a result, they can extract vast amounts of pertinent data from the input. These models provide a strong foundation for applications such as image classification, language translation, and object detection. Figure 4 illustrates the workflow of transfer learning adopted in this study. Furthermore, fine-tuning pre-trained models can significantly enhance performance, especially when working with limited or domain-specific datasets, while also reducing training time and computational cost. In this study, the proposed model is compared with five pre-trained architectures: VGG16, MobileNetV2, VGG19, DenseNet121, and NASNetLarge.

The overall workflow methods of transfer learning in this study.
2.4 Data augmentation generators with GANIn this manner, both data augmentation methods and the so-called Generative Adversarial Network (GAN) are implemented separately, which enhances the training process and performance of the deep learning model. Here is how these two methods complement each other: they can obtain a more diverse and representative dataset, which enables the model to perform even better on data it had not encountered earlier.
As per the explanation, augmentation is done on training images, capturing crops of an image through the Image Data Generator class (Godishala et al., 2022). The generator utilizes transformation techniques including rotation, zoom, width/height shift, and even horizontal flipping of the target images. These modifications help the model during the training phase by trying to wipe out memorization of the distinct patterns within the images and instead instill generalized features across the distinct versions. By dynamically generating these augmented images during training, the model effectively gets a different version of the data in every epoch cycle. Such might help to counter overfitting by encompassing a greater variety of data. As shown in the sample from the Data Generator Figure 5.

Sample from data generator.
Besides, a Generative Adversarial Network (GAN) is also used to perform this task and to expand the dataset even more. The GAN comprises two important models – a Generator and a Discriminator (Mardani et al., 2018). The generator generates images from random latent vectors (random noise) by feeding them to transposed convolution layers for creating realistic-looking images. These images are called synthetic images and are aimed at increasing the variety of original training data. On the other hand, the discriminator is made to tell apart real images of the dataset from fake images produced by the generator. With the fake ones, convolutional layers and Leaky ReLU activations analyze the images. The discriminator evaluates the quality of the generated images to enhance the generation of novel images by the generator. As shown in the Overall Workflow GAN Figure 6.

The overall workflow of synthetic images using GAN.
To produce a dataset that is both larger and more diverse, the combination of methods of data augmentation and GAN-generated images is employed in this approach (Han et al., 2019). Additional variants of original data are contributed with augmented images, whilst GAN images add completely novel data points. All these techniques together improve the training process by making sure that the model is trained with a rich and varied set of images. Furthermore, the data generators used for both augmentation and synthetic image creation ensure that images are adequately preprocessed, scaled, and shuffled before being input into the model for a seamless and efficient training process. In GANs, a least-squares adversarial loss was used for the discriminator to distinguish between real and synthetic images as shown in (Equation 1):
As an ablation study for the evaluation of the influence of GAN-generated data on classification performance, two distinct versions of the model NeuroFusionNet were trained: One with traditional augmentation only and the other with both traditional augmentation and GAN-generated samples. The results showed a classification accuracy gain of 1.72% on the Brain Tumor MRI Dataset and 1.41% on the MRI with Bounding Boxes Dataset when GAN-generated images were utilized. This gain is credited to the enrichment of minority classes with the synthetic data and variability that allows better feature learning by the model. This work improved the generator by increasing epochs, fine-tuning the discriminator feedback using label smoothing, and manipulating noise vector sampling to yield or induce more realistic image structure. These improvements improved classification accuracy of synthetic data diversity and realism, leading to increased robustness and generalization of the classification model.
To ensure class balance, synthetic images were generated for minority classes until each class reached the same number of samples as the majority class within the training set. The generated images were combined with real images to form a balanced dataset, with an approximate real-to-synthetic ratio determined dynamically based on class distribution.
The GAN was trained using a least-squares adversarial loss, and stability was improved through techniques such as label smoothing and controlled noise vector sampling. Although no explicit quantitative metrics such as Fréchet Inception Distance (FID) were computed, visual inspection and training stability were used as practical indicators of image quality.
2.5 Feature extraction with GANThe proposed technique of feature extraction using a Generative Adversarial Network (GAN) works in an advanced way: the generator model of the GAN is used to generate synthetic images, from which discriminative features are extracted that can be utilized in the training of a classifier, or for the enhancement of an existing model (Abdollahi et al., 2020). It is a two-pronged approach-increasing the dataset size and permitting the model to learn useful and diverse features from both synthetic and real data.
A GAN model is trained using the min-max game between a discriminator D and a generator network G in the original GAN formulation (Goodfellow et al., 2014). The GAN aims to approximate a probability distribution function, which is supposed to be the source of some data. The generator-discriminator min-max game’s goal function can be expressed as follows as shown in (Equation 2):
When given a certain random latent vector input, the GAN’s generator creates synthetic images (You et al., 2022). These random latent vectors act as noise inputs, inputs that the generator converts into images at a resolution of 224 × 224 pixels, like the samples it was trained on. The artificial images generated by such research can then be supplemented into samples for training purposes to get a better model. In cases where the original dataset is small, these provide a way to improve model learning with a more diverse range of examples.
Construction for this custom generator architecture is in principle deep convolutional, in keeping with the spirit of DCGAN. The initial ingredient is a fully connected input layer that reshapes the noise vector into a 7 × 7 × 256 tensor and follows the series of transposed convolutional layers to upsample the resulting tensor into high resolution images. More details of the structure are as follows. Input layer a 100D latent vector is projected and reshaped as shown in (Equation 3):
Upsampling layers three Conv2DTranspose layers upsample the tensor to 14 × 14, 28 × 28, and 56 × 56 resolutions with decreasing filter sizes (128, 64, 32), each followed by batch normalization and ReLU activation as shown in (Equation 4):
Output layer a final Conv2DTranspose layer generates a 224 × 224 × 3 RGB image as shown in (Equation 5):
Then the process will continue by generation of synthetic images, where the first step will involve introducing the synthetic images into a pretrained feature extraction backbone to extract relevant features from each generated image. The synthesized features would then allow the model to capture common modes in the data that may not be present in the actual training set. Once trained, the generator generates a variety of synthetic images, which, in union with real data, enable the model to balance some of the broader patterns and improve generalization. In a post-processing stage, features from these synthetic images are extracted using a pretrained backbone (VGG16) and fused with features from real images before passing into the final classification layer of NeuroFusionNet.
This feature extraction framework, assisted by GAN-generated data, provides more diversity to the dataset and teaches the model from both real-world and synthetic examples, which makes improvements in generalization. Generation of significant features leads the model to learn a comprehensive representation of wider data diversity, which eventually leads to better performance in various tasks like classification and segmentation. To put it briefly, feature extraction with GAN can help augment the dataset by creating synthetic images, contributing to the higher variability of the data, which in turn produces a better model performance. This is how the mixture of real and synthetic data helps create more generalized decisions that can recognize more complex patterns and improve the accuracy of predictions. As shown in Figure 7.

Feature extraction with GAN.
2.6 Transfer learning with VGG16Transfer learning utilizes the already trained VGG16 model (Barman et al., 2024) to enable the re-utilization of features learned from (GAN) due to its prowess in capturing very complex and hierarchical features of spatial properties. The classification process deals with the identification of four tumor types: glioma, meningioma, no tumor, and pituitary. Here, the VGG16 model is used along with features extracted from GANs. The generator model of the GAN generates synthetic images from random latent vectors, which are then fed into the VGG16 model. These synthetic images offer a rich set of features that complement the original dataset. So, after proving the extracted features that represent the characteristics of both the original and synthetic images for the subsequent layers of the transfer learning pipeline.
The customized classifier is employed on the uppermost layers of the VGG16 model and transformed into a classifier specific to the task; it also adds Dense layers, batch normalization, and dropout. As a result, these images can be classified into four categories of tumors. While the lower layers of the VGG16 model remain frozen, retaining the advantages of pre-trained features, the upper layers are fine-tuned to adjust the model for the new task. This fine-tuning of the model allows it to reproduce better the high-level feature representation from the combined dataset of real and synthetic images. In this paradigm, GAN-based feature extraction competes with transfer learning to fortify the generalization ability of the model to the dataset. The rich features achieved through VGG16 are made even richer when they are provided with different angles and improvements of synthetic variations from the GAN approach. This creates synergy much grander with GAN and VGG16 in their robustness for classifying the minor patterns, getting a level of accuracy in classification on the brain tumor dataset. As shown in the overall workflow Figure 8.

The overall workflow: transfer learning with VGG16.
2.7 Proposed model: NeuroFusionNetNeuroFusionNet has been named for the model’s core purpose and its design. The prefix “Neuro” represents its focus on neuroscience and neuroimaging, as it is specifically fashioned to process and segment those kinds of MRI images to detect and classify brain tumors. The word “Fusion” refers to the extraordinary combination of the technologies embedded in the model. This approach combines the high-dimensional feature extraction from a GAN-based generator and the domain-specific knowledge from a pre-trained VGG16 model in which the generator and the model are synthesized in such a way that the results appear to be both robust and accurate. Besides the technological characteristics, the synergistic combination of generative modeling and transfer learning aspects is also described by this fusion, and this mechanistic arrangement leads to a holistic and more informative depiction of tumor traits. At the very end of the term, the term “Net” is the one that describes that it is a neural network that constitutes the main part of this solution. The name of NeuroFusionNet encompasses the model’s cutting-edge, interdisciplinary approach to diagnosing and classifying brain tumors, as the model is of crucial importance for brain tumor detection.
The model uses a GAN to extract features and integrates them with a transfer learning framework to leverage pre-trained knowledge. The process begins with a GAN generator, which processes brain MRI images to create high-quality, multidimensional features. The generator network is shaped from layers of convolution, batch normalization, and up-sampling, and it is designed to adjust image features, which are the most important for the differentiation of tumor types. These extracted features, which are more informative and understandable, are used as input data for the process of transfer learning, where we use the VGG16 model. VGG16 provides a robust foundation by using learned filters that capture general image patterns including edges and textures, which are later adjusted to the tumor classification task. To conduct fine-tuning on VGG16, we limit the last ten layers to be the only ones trainable so that the network retains the learned features but evolves as required. After the primary architecture, the VGG16 outcome is reshaped by Global Average Pooling (GAP), dense layers, batch normalization, and dropout regularization (Hsiao et al., 2019), thus, the model will be enabled to accumulate shared knowledge while at the same time fighting overfitting. The final layer is a softmax layer, which generates probabilities for the four tumor classes. The categorical cross-entropy loss function guides the training process (Ho and Wookey, 2019), and it is given by as shown in (Equation 6):
Where is the true label (one-hot encoded) for the class of sample is the predicted probability for the class , is the number of samples and is the number of classes. The purpose of this loss is to make sure that the predicted probabilities of the classes are in close agreement with the true labels. The optimization process in NeuroFusionNet uses plans that are even more fine-tuned by adding a Cosine Decay Learning Rate Scheduler (Konar et al., 2020), which automatically scales the learning rate of every epoch t, following a formula as shown in (Equation 7:
Where signifies the initial learning value and is the total number of decay steps epochs. This is the method that vouches for the gradual drop in the learning rate, facilitating more significant adjustments at the beginning of the training and smaller but more accurate corrections as the model converges. As an added measure, callbacks such as Early Stopping done with the help of Reduce LROn Plateau can stop training when the validation loss no longer decreases, prevent overfitting, and decrease the learning rate even more when the model’s performance is stagnant (Thakur et al., 2024). One of the methods to monitor the model’s performance during training is to use accuracy scores and a confusion matrix to see class-wise predictions. NeuroFusionNet’s balance of robust feature extraction and proper classification is achieved by combining the generative capabilities of the GAN, the representational power of VGG16, and the optimization techniques, making it a perfect tool for brain tumor diagnosis. As shown in the Overview Figure 9.

Detailed architecture of the proposed NeuroFusionNet framework, including GAN-based feature extraction and VGG16-based classification.
2.8 Evaluation proposed methodNeuroFusionNet, the methodology for the detection of brain tumors, looks at various indicators that measure the model’s performance, including but not limited to accuracy, precision, sensitivity, specificity, and F1 score. Every single parameter is valuable to determine the model’s capability of providing accurate diagnosis and clinical applicability. The next paragraphs give detailed descriptions and definitions, as well as equations, a discussion of context, and the relationship of all these modules to the classification of Glioma, Meningioma, No Tumor, and Pituitary cases.
TP (True Positives): Cases that the model has diagnosed properly, Glioma, Meningioma, or Pituitary tumors.
TN (True Negatives): Situations in which the model is correct and classifies no tumor images.
FP (False Positives): Instances of a healthy brain image (No Tumor) are misclassified as one of the tumors.
FN (False Negatives): Cases a “brain tumor” that is misclassified as “No Tumor.”
Accuracy is defined as the proportion of correctly classified samples that takes the total occurrence of the correct predictions (both positive and negative) and compares it to the whole number of predictions. It unfolds the full information about the model’s overall effectiveness, particularly in differentiating accurately between Glioma, Meningioma, Pituitary tumors, and no tumor cases as shown in (Equation 8).
The provision of proportion of correctly identified positive cases to the total number of positive results determines Precision. High precision leads to a reduction in false positives, which is vital in disease categorization and reduction of the number of incorrect cases diagnosis in healthy patients. as shown in (Equation 9).
Sensitivity (Recall) is a way to assess the model’s ability to accurately identify the true positive cases, which, in turn, tells us how well it detects the Glioma, Meningioma, and Pituitary tumor as shown in (Equation 10).
Specificity is testing the model’s capacity to correctly tell No Tumor cases; it lowers the chance of false positives. High specificity is extremely important since wrong classification is very common; for example, healthy images can be classified as images of tumors, which can lead to a lot of unnecessary treatments and interventions as shown in (Equation 11).
The F1 Score is the harmonic mean of Precision and Sensitivity. Using the F1 Score, the classifications of different tumor types and No Tumor cases can be balanced, and especially when the data distribution is imbalanced this metric is even more helpful as shown in (Equation 12).
With the incorporation of such evaluations, NeuroFusionNet provides a reliable classification for images about Brain Tumor categories, i.e., Glioma, Meningioma, Pituitary, and No Tumor cases, contributing to a crucial step in medical diagnostics.
2.9 Computing environmentThe average training time per epoch was approximately 42 s. A PC with Windows 11 Pro, 16 GB of RAM, a 12th-generation i7-12700k 3.50 GHz processor, and an NVIDIA GPU RTX 4060 Ti was used to complete this task.
3 ResultA brain tumor MRI (Esfandiari, 2025) and a brain tumor MRI with border boxes (Sorour, 2025) were used in the study to assess the NeuroFusionNet model. Both datasets include image classes for normal tissues and pituitary tumors, gliomas, and meningiomas. Split is used in this work to separate the dataset an 80% for training, 10% for validation, and 10% for testing. To ensure a fair and consistent comparison, identical hyperparameter settings were applied across all models, including the proposed NeuroFusionNet and the baseline architectures. These parameters were selected based on commonly recommended configurations from official implementations and relevant literature. In addition, all models were trained using the same data splits, preprocessing pipeline, and evaluation protocol to eliminate any bias introduced by unequal experimental conditions. Table 2 presents the hyperparameter configuration used for training all models. A learning rate of 0.0001, batch size of 8, and 50 training epochs were selected to achieve stable convergence while maintaining computational efficiency, particularly for high-resolution MRI images. The Rectified Linear Unit (ReLU) activation function was used for intermediate layers, while the Softmax function was applied in the output layer for multi-class classification. The Adam optimizer and a dropout rate of 0.5 were employed to improve generalization and reduce overfitting.
HyperparameterValueImage size(224,224)Batch size8Learning rate0.0001Epochs50Activation functionRectified linear unit (ReLU)Dropout0.5OptimizerAdamOutput activation functionSoftmaxUnified hyperparameter configuration used for training all models.
3.1 Comparing different models3.1.1 Comparison of models and results on the brain tumor MRI datasetInitially, five pre-trained models were utilized on two datasets. The identical hyperparameter settings were employed to evaluate each of these models. The efficacy of the trained models was compared to that of the proposed hybrid model, NeuroFusionNet, which employs the pre-trained VGG16 model for transfer learning and GANs for feature extraction. This study effectively utilizes both advanced representations of medical imaging data and the enhancement of synthetic features. On the Brain Tumor MRI Dataset, NeuroFusionNet achieved 99.05% accuracy, 99.07% precision, 99.05% sensitivity, 99.68% specificity, and 99.05% F1 score, as presented in Table 3 and Figure 10. The VGG16 model ranked last, exhibiting the lowest accuracy (91.66%), sensitivity (91.66%), specificity (97.22%), and F1-score (91.63%). Furthermore, a comparison was conducted between two models, MobileNetV2 and DenseNet121, revealing comparable accuracy levels of 97.79% for MobileNetV2 and 97.48% for DenseNet121. The proposed NeuroFusionNet model outperformed the evaluated baseline architectures.
ModelAccuracyPrecisionSensitivitySpecificityF1 scoreMobileNetV297.79%97.79%97.79%99.26%97.79%
Comments (0)