Unambiguous Representations in Neural Networks: A Relational Structure Approach to Consciousness
This directory contains the LaTeX source for a journal paper suitable for submission to Entropy or similar journals.
Structure
The paper is divided into modular sections for easier editing and collaboration:
main.tex- Main document using MDPI template (for Entropy journal)main-article.tex- Alternative version using standard article class (easier to compile)references.bib- BibTeX bibliographysections/- Individual section files:00-abstract.tex- Abstract placeholder (abstract is in main.tex preamble)01-introduction.tex- Introduction02-theory.tex- Theoretical framework03-methods.tex- Methods04-experiment1.tex- Experiment 1: MNIST digit classification05-experiment2.tex- Experiment 2: Spatial position decoding06-ambiguity-analysis.tex- Quantifying representational ambiguity07-discussion.tex- Discussion and related work08-conclusion.tex- Conclusion
Compilation
Option 1: Standard Article Class (Recommended for initial editing)
cd paper
pdflatex main-article.tex
bibtex main-article
pdflatex main-article.tex
pdflatex main-article.tex
Option 2: MDPI Template (For final submission to Entropy)
- Download the MDPI LaTeX template from: https://www.mdpi.com/authors/latex
- Extract the
mdpi.clsfile to aDefinitions/directory in this folder - Compile:
cd paper
pdflatex main.tex
bibtex main
pdflatex main.tex
pdflatex main.tex
Using LaTeXmk (automatic compilation)
latexmk -pdf main-article.tex
# or
latexmk -pdf main.tex
Figures
The paper references figures in ../figures/ directory. Ensure all figure files are present:
pixel-encoding-relational-structure.pngdecoder-validation-accuracy-training-paradigms.pngmnist-model-validation-accuracies.pngtarget-similarity-only-output-neurons.pngablation-study-neuron-count-performance.pngperm_distances_no_dropout.pngperm_distances_dropout.pngarchitecture-transfer-evaluation.pngcross_architecture_heatmap_accuracy.pnggram_neuron_ablation_plot.pngdataset-classification-accuracy.pngumap-input-neuron-similarity.pnginput-neuron-distance-prediction-accuracy.pngtarget-similarity-only-input-pixels.pngvarying-subset-size-input-pixels.pngknn-kernel-similarity-vs-decoder-accuracy.png
Modular Structure Benefits
The paper is divided into separate files to:
- Facilitate collaboration - Multiple authors can work on different sections simultaneously
- Version control - Git diffs are cleaner when sections are separate files
- Easier editing - Work on one section at a time without navigating a large file
- Reusability - Individual sections can be reused or reorganized easily
Customization
To customize for different journals:
- Edit the preamble in
main.texormain-article.tex - Adjust formatting, citation style, figure sizes as needed
- The modular structure means section content doesn’t need to change
Abstract and Keywords
The abstract is defined in the preamble of main.tex (for MDPI template) and at the beginning of main-article.tex (for standard article class). Update there to modify the abstract.
Keywords are also defined in the same locations.
Citation Management
All references are in references.bib. Add new references there in BibTeX format. Citations in the text use \cite{key} format, where key matches the BibTeX entry key.
Contributing
When making changes:
- Keep section files focused on their specific content
- Maintain consistent formatting across sections
- Test compilation after major changes
- Update this README if structure changes
License
[Add appropriate license information]
Contact
[Add contact information]