https://github.com/python-adaptive/paper
DRAFT 📝 Article about the algorithms used in the Adaptive package
https://github.com/python-adaptive/paper
active-learning adaptive-learning algorithms article markdown pandoc paper whitepaper
Last synced: 22 days ago
JSON representation
DRAFT 📝 Article about the algorithms used in the Adaptive package
- Host: GitHub
- URL: https://github.com/python-adaptive/paper
- Owner: python-adaptive
- Created: 2019-12-18T13:57:40.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-05-06T11:07:01.000Z (over 5 years ago)
- Last Synced: 2023-02-28T07:26:37.935Z (almost 3 years ago)
- Topics: active-learning, adaptive-learning, algorithms, article, markdown, pandoc, paper, whitepaper
- Language: Jupyter Notebook
- Homepage:
- Size: 1.07 MB
- Stars: 5
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Adaptive
This is the companion paper to the [adaptive](https://adaptive.readthedocs.io/en/latest/) Python library.
See the latest draft [here](https://gitlab.kwant-project.org/qt/adaptive-paper/builds/artifacts/master/file/paper.pdf?job=make).
### Building the paper
The simplest way to build the paper is with Docker, to make sure that all the necessary dependencies are installed.
First build the Docker image:
```
docker build -t adaptive-paper .
```
Then run `make` inside a docker container using the image you just built:
```
docker run -it --rm -v $(pwd):/work -w /work adaptive-paper make
```
### Update the bibliography (using [`yaml2bib`](https://github.com/basnijholt/yaml2bib))
```bash
yaml2bib \
--bib_fname "paper.bib" \
--dois_yaml "paper.yaml" \
--replacements_yaml "replacements.yaml" \
--static_bib "not_on_crossref.bib" \
--email "bas@nijho.lt"
```