News

This code is a basic but functional implementation of the Fully Connected Neural Network (FCN) using Neuron-by-Neuron (NBN) training, as described by Wilamowski (See references). The code loosely ...
Project/ ├── cityscapes/ │ └── ... (python scripts for data loader and utils) ├── data/ │ ├── generated_gt │ ├── leftImg8bit │ ├── gtFine │ └── ... (other files from dataset) ├── fcn/ │ └── ..