Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nikoleta-v3/thesis
A reposity for my PhD thesis
https://github.com/nikoleta-v3/thesis
Last synced: 23 days ago
JSON representation
A reposity for my PhD thesis
- Host: GitHub
- URL: https://github.com/nikoleta-v3/thesis
- Owner: Nikoleta-v3
- License: mit
- Created: 2016-10-01T11:42:35.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2023-03-25T01:17:12.000Z (almost 2 years ago)
- Last Synced: 2024-04-14T20:15:20.413Z (9 months ago)
- Language: Jupyter Notebook
- Size: 90.9 MB
- Stars: 0
- Watchers: 4
- Forks: 1
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Understanding responses to environments for the Prisoner's Dilemma: A machine learning approach
This thesis contains the source code and the Latex documents for the thesis
titled ``Understanding responses to environments for the Prisoner's Dilemma: A
machine learning approach'' submitted in fulfillment of the requirements for the
degree of Doctor of Philosophy.# Cloning
To clone the repository locally run the following command:
```
$ git clone --recurse-submodules https://github.com/Nikoleta-v3/Thesis.git
```Note that command includes the option `--recurse-submodules`. This is because
there are several submodules to this repository.# Environment and requirements
All code for this thesis is in Python with all versions specified in `environment.yml`.
To create and activate the environment run:
```
$ conda env create -f environment.yml
$ source activate thesis
```# Compiling the thesis document
Once the repository and the submodules have been cloned locally, and the conda
environment is activated run the following command to compile the written
document:```
$ inv compile
```