An open API service indexing awesome lists of open source software.

https://github.com/trxxxxkov/spbu-bachelor-thesis

Evaluating the effectiveness of continual learning with Kolmogorov-Arnold Networks in pattern recognition tasks
https://github.com/trxxxxkov/spbu-bachelor-thesis

bachelor-thesis continual-learning kolmogorov-arnold-networks spbu university

Last synced: about 2 months ago
JSON representation

Evaluating the effectiveness of continual learning with Kolmogorov-Arnold Networks in pattern recognition tasks

Awesome Lists containing this project

README

        

# spbu-bachelor-thesis
Code and thesis document for my Bachelor's diploma on Kolmogorov-Arnold Networks with the implementation and reports included

## Installation

**Pre-requisites:**

```bash
Python 3.9 or higher
pip
```

**This project can be installed using pip as follows:**

```bash
git clone https://github.com/trxxxxkov/spbu-bachelor-thesis.git
cd spbu-bachelor-thesis
pip install .
```

## Project Structure
```bash
spbu-bachelor-thesis/ # Main project directory
├── .github/
│ └── workflows/
│ └── latex-compilation.yaml # GitHub Actions workflow for automatic LaTeX compilation
├── src/ # Directory containing the project's source code
│ ├── ...
│ └── README.md # Codebase structure description
├── .gitignore
├── LICENSE
├── README.md
├── presentation.pdf # Compiled presentation for the thesis (in Russian)
├── presentation.tex # Source code for the presentation
├── pyproject.toml # Configuration file for the build system of the project's source code
├── thesis.pdf # Compiled bachelor thesis document (in Russian)
├── thesis.sty # Custom LaTeX style file for the thesis
└── thesis.tex # Source code for the bachelor thesis document
```