-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.qmd
97 lines (60 loc) · 3.93 KB
/
index.qmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
---
description: A machine learning library for economics and finance
format:
html:
output-file: index.html
gfm:
output-file: README.md
format-links: false
title: Welcome to gingado!
jupyter: python3
---
`gingado` seeks to facilitate the use of machine learning in economic and finance use cases, while promoting good practices. This package aims to be suitable for beginners and advanced users alike. Use cases may range from simple data retrievals to experimentation with machine learning algorithms to more complex model pipelines used in production.
## Overview
`gingado` is a free, open source library built different functionalities:
* [**data augmentation**](https://bis-med-it.github.io/gingado/augmentation.html), to add data from official sources, improving the machine models being trained by the user;
* **relevant** [**datasets**](https://bis-med-it.github.io/gingado/datasets.html), both real and simulated, to allow for easier model development and comparison;
* **automatic** [**benchmark model**](https://bis-med-it.github.io/gingado/benchmark.html), to assess candidate models against a reasonably well-performant model;
* **machine learning-based** [**estimators**](https://bis-med-it.github.io/gingado/estimators.html), to help answer questions of academic or practical importance;
* **support for** [**model documentation**](https://bis-med-it.github.io/gingado/documentation.html), to embed documentation and ethical considerations in the model development phase; and
* [**utilities**](https://bis-med-it.github.io/gingado/utils.html), including tools to allow for lagging variables in a straightforward way.
Each of these functionalities builds on top of the previous one. They can be used on a stand-alone basis, together, or even as part of a larger pipeline from data input to model training to documentation!
:::{.callout-tip}
New functionalities are planned over time, so consider checking frequently on `gingado` for the latest toolsets.
:::
## Install
:::{.callout-note}
Please make sure you have read and understood the license disclaimer in the NOTES.md file in our [GitHub repository](https://github.com/bis-med-it/gingado) before using gingado.
:::
To install `gingado`, simply run the following code on the terminal:
`$ pip install gingado`
## Attribution
If you use this package in your work, please consider citing @gingado.
In BibTeX format:
```
@techreport{gingado,
author = {Araujo, Douglas KG},
title = {gingado: a machine learning library focused on economics and finance},
series = {BIS Working Paper},
type = {Working Paper},
institution = {Bank for International Settlements},
year = {2023},
number = {1122}
}
```
Over time, new tools that are described in specific papers might be added (eg, a machine learning-based econometric estimator). Please consider citing them as well if used in your work. Specific information, if any, can be found in the documentation.
## Design principles
The choices made during development of `gingado` derive from the following principles, in no particular order:
* **flexibility**: users can use `gingado` out of the box or build custom processes on top of it;
* **compatibility**: `gingado` works well with other widely used libraries in machine learning, such as `scikit-learn` and `pandas`; and
* **responsibility**: `gingado` facilitates and promotes model documentation, including ethical considerations, as part of the machine learning development workflow.
For more information about `gingado`, please read the [paper](https://www.bis.org/publ/work1122.pdf).
## Acknowledgements
`gingado`'s API is inspired on the following libraries:
* `scikit-learn` [@sklearnAPI]
* `keras` (website [here](https://keras.io/about/) and also, [this essay](https://medium.com/s/story/notes-to-myself-on-software-engineering-c890f16f4e4d))
* `fastai` [@fastaiAPI]
In addition, `gingado` is developed and maintained using [`quarto`](https://quarto.org/).
## References
::: {#refs}
:::