Overview¶
This project explores privacy-preserving analytics for retail using Homomorphic Encryption (HE). It accompanies the written thesis and provides reproducible build and experiment notes.
Goal: Evaluate feasibility and trade-offs (accuracy, runtime, memory, cost) of encrypted analytics for realistic retail tasks.
Scope: CKKS-based schemes; secure aggregation; encrypted inference for basic models; multiparty key flows.
Graphviz example¶
High-level thesis flow¶
Mermaid example¶
flowchart LR A[Intro] --> B[Lit Review] --> C[Methodology] --> D[Implementation] --> E[Results] --> F[Discussion] --> G[Conclusion]
Repository layout (suggested)¶
docs/
source/
index.rst
overview.md
setup.md
datasets.md
experiments.md
methodology.md
implementation.md
results.md
discussion.md
conclusion.md
appendix.md
Build with:
python -m sphinx -b html docs/source docs/build/html
# live-reload during writing
sphinx-autobuild docs/source docs/build/html