This repository includes the implementaiton of BSC-Densenet-121 of research paper "Adding Binary Search Connections to Improve DenseNet Performance"
, published in Elsevier-SSRN conference proceedings of NGCT 2019. The base code of openly available DenseNet is also present in this repository for comparing our BSC-DenseNet on the CIFAR100 dataset.
Author: Ravin Kumar
Publication Link: https://papers.ssrn.com/sol3/papers.cfm?abstract_id=3545071
Kumar, Ravin, Adding Binary Search Connections to Improve DenseNet Performance (February 27, 2020). 5th International
Conference on Next Generation Computing Technologies (NGCT-2019). Available at SSRN: https://ssrn.com/abstract=3545071
or http://dx.doi.org/10.2139/ssrn.3545071
- Trainable Paramaters in
Densenet-121
:7,056,356
- Trainable Paramaters in
BSC-Densenet-121
:7,574,756
Densenet-121
accuracy on test set:30.48
BSC-Densenet-121
accuracy on test set:32.33
python3 run.py
Overall Analysis is stored in visual graphs inside overall_analysis.png
.
from densenet import get_BSC_Densenet_121_model
BSC_DenseNet_121_Model = get_BSC_Densenet_121_model(num_class=100)
from densenet import get_Densenet_121_model
DenseNet_121_Model = get_Densenet_121_model(num_class=100)
Copyright (c) 2023 Ravin Kumar
Website: https://mr-ravin.github.io
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation
files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy,
modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the
Software.
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.