CrX Architecture Part-3

[CrX Architecture Cont..] The return When the second network's output was returned as input to the first network, this was done to update the clusters in the first network. The next time when the input comes into the model, the updated clusters will correctly understand the input in a very short time. Math behind the return The model outputs the pixel values. The return of the output as input to the first network is to store the closely related clusters in the same layer of the first network, which would not be possible without returning the output. The returning-of-the-output stage contains the finalizer function where this function takes the output and finds similarities between the output for each output. If it checks with the previous accumulated outputs and if similarities are the same for at least 3 outputs from the second network, then this output is returned to the first network as input. Ø Purpose of returning the output as input - This concept was...