master a0fda6ac1f40 cached
31 files
951.0 KB
273.0k tokens
17 symbols
1 requests
Download .txt
Showing preview only (979K chars total). Download the full file or copy to clipboard to get everything.
Repository: firmai/financial-machine-learning
Branch: master
Commit: a0fda6ac1f40
Files: 31
Total size: 951.0 KB

Directory structure:
gitextract_jumbvm5a/

├── .github/
│   └── workflows/
│       ├── repo_search.yml
│       ├── repo_status.yml
│       └── wiki_gen.yml
├── .gitignore
├── README.md
├── conf.py
├── generated_wiki/
│   ├── __init__.py
│   ├── alternative_finance.md
│   ├── colleges_centers_and_departments.md
│   ├── courses.md
│   ├── data.md
│   ├── data_processing_techniques_and_transformations.md
│   ├── deep_learning_and_reinforcement_learning.md
│   ├── derivatives_and_hedging.md
│   ├── extended_research.md
│   ├── factor_and_risk_analysis.md
│   ├── fixed_income.md
│   ├── other_models.md
│   ├── personal_papers.md
│   ├── portfolio_selection_and_optimisation.md
│   ├── reinforcement_learning.md
│   ├── textual.md
│   └── unsupervised.md
├── git_search.py
├── git_status.py
├── git_util.py
├── raw_data/
│   ├── __init__.py
│   ├── process.drawio
│   └── url_list.csv
├── requirements.txt
└── wiki_gen.py

================================================
FILE CONTENTS
================================================

================================================
FILE: .github/workflows/repo_search.yml
================================================
name: Repo-Search

on:
  schedule:
    - cron: '0 1 * * *'

jobs:
  # Set the job key. The key is displayed as the job name
  update-repo-status:
    # Name the Job
    name: Update repo status for all saved repo
    # Set the type of machine to run on
    runs-on: ubuntu-latest

    steps:
      - name: Checkout code
        uses: actions/checkout@v2
        with:
          fetch-depth: 0

      - name: setup python
        uses: actions/setup-python@v2
        with:
          python-version: 3.7

      - name: Install dependencies
        run: |
          python -m pip install --upgrade pip
          if [ -f requirements.txt ]; then pip install -r requirements.txt; fi

      - name: execute py script # run the run.py to get the latest data
        run: |
          python git_search.py
        env:
          GIT_TOKEN: ${{ secrets.GIT_TOKEN }}

      - name: Commit & Push changes
        uses: actions-js/push@master
        with:
          github_token: ${{ secrets.GIT_TOKEN }}
          branch: 'master'


================================================
FILE: .github/workflows/repo_status.yml
================================================
name: Repo-Updater

on:
  schedule:
    - cron: '0 0 * * 0' # weekly


jobs:
  # Set the job key. The key is displayed as the job name
  update-repo-status:
    # Name the Job
    name: Update repo status for all saved repo
    # Set the type of machine to run on
    runs-on: ubuntu-latest

    steps:
      - name: Checkout code
        uses: actions/checkout@v2
        with:
          fetch-depth: 0

      - name: setup python
        uses: actions/setup-python@v2
        with:
          python-version: 3.7

      - name: Install dependencies
        run: |
          python -m pip install --upgrade pip
          if [ -f requirements.txt ]; then pip install -r requirements.txt; fi

      - name: execute py script # run the run.py to get the latest data
        run: |
          python git_status.py
        env:
          GIT_TOKEN: ${{ secrets.GIT_TOKEN }}

      - name: Commit & Push changes
        uses: actions-js/push@master
        with:
          github_token: ${{ secrets.GIT_TOKEN }}
          branch: 'master'


================================================
FILE: .github/workflows/wiki_gen.yml
================================================
name: Wiki-Generator

# generate wiki page on every push
on: push

jobs:
  # Set the job key. The key is displayed as the job name
  update-repo-status:
    # Name the Job
    name: Update repo status for all saved repo
    # Set the type of machine to run on
    runs-on: ubuntu-latest

    steps:
      - name: Checkout code
        uses: actions/checkout@v2
        with:
          fetch-depth: 0

      - name: setup python
        uses: actions/setup-python@v2
        with:
          python-version: 3.7

      - name: Install dependencies
        run: |
          python -m pip install --upgrade pip
          if [ -f requirements.txt ]; then pip install -r requirements.txt; fi

#      - name: execute status update script # run the run.py to get the latest data
#        run: |
#          python git_search.py
#        env:
#          GIT_TOKEN: ${{ secrets.GIT_TOKEN }}

      - name: execute wiki generation script # run the wiki_gen
        run: |
          python wiki_gen.py

      - name: Upload Documentation to Wiki
        uses: SwiftDocOrg/github-wiki-publish-action@v1
        with:
          path: "generated_wiki"
        env:
          GH_PERSONAL_ACCESS_TOKEN: ${{ secrets.GIT_TOKEN }}

#      - name: Check out master first
#        uses: actions/checkout@master
#        with:
#          persist-credentials: false # otherwise, the token used is the GITHUB_TOKEN, instead of your personal token
#          fetch-depth: 0 # otherwise, you will failed to push refs to dest repo

      - name: Commit & Push changes
        uses: actions-js/push@master
        with:
          github_token: ${{ secrets.GIT_TOKEN }}
          branch: 'master'

================================================
FILE: .gitignore
================================================
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

# C extensions
*.so

# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
pip-wheel-metadata/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# PyInstaller
#  Usually these files are written by a python script from a template
#  before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
htmlcov/
.tox/
.nox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
*.py,cover
.hypothesis/
.pytest_cache/

# Translations
*.mo
*.pot

# Django stuff:
*.log
local_settings.py
db.sqlite3
db.sqlite3-journal

# Flask stuff:
instance/
.webassets-cache

# Scrapy stuff:
.scrapy

# Sphinx documentation
docs/_build/

# PyBuilder
target/

# Jupyter Notebook
.ipynb_checkpoints

# IPython
profile_default/
ipython_config.py

# pyenv
.python-version

# pipenv
#   According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
#   However, in case of collaboration, if having platform-specific dependencies or dependencies
#   having no cross-platform support, pipenv may install dependencies that don't work, or not
#   install all needed dependencies.
#Pipfile.lock

# PEP 582; used by e.g. github.com/David-OConnor/pyflow
__pypackages__/

# Celery stuff
celerybeat-schedule
celerybeat.pid

# SageMath parsed files
*.sage.py

# Environments
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/

# Spyder project settings
.spyderproject
.spyproject

# Rope project settings
.ropeproject

# mkdocs documentation
/site

# mypy
.mypy_cache/
.dmypy.json
dmypy.json

# Pyre type checker
.pyre/
.idea/

.DS_Store
.editorconfig


================================================
FILE: README.md
================================================
[![Repo-Updater](https://github.com/firmai/financial-machine-learning/actions/workflows/repo_status.yml/badge.svg)](https://github.com/firmai/financial-machine-learning/actions/workflows/repo_status.yml)
[![Wiki-Generator](https://github.com/firmai/financial-machine-learning/actions/workflows/wiki_gen.yml/badge.svg)](https://github.com/firmai/financial-machine-learning/actions/workflows/wiki_gen.yml)
[![Repo-Search](https://github.com/firmai/financial-machine-learning/actions/workflows/repo_search.yml/badge.svg)](https://github.com/firmai/financial-machine-learning/actions/workflows/repo_search.yml)
[![Gitter](https://badges.gitter.im/financial-machine-learning/community.svg)](https://gitter.im/financial-machine-learning/community?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)

---

## 🌟 We Are Growing!

We're seeking to collaborate with motivated, independent PhD graduates or doctoral students on approximately seven new projects in 2024. If you’re interested in contributing to cutting-edge investment insights and data analysis, please get in touch! This could be in colaboration with a university or as independent study. 

![image](https://github.com/user-attachments/assets/da97663a-b63f-4286-94cc-fcd168905109)


### 🚀 About Sov.ai

Sov.ai is at the forefront of integrating advanced machine learning techniques with financial data analysis to revolutionize investment strategies. We are working with **3 of the top 10** quantitative hedge funds, and with many mid-sized and boutique firms. 

Our platform leverages diverse data sources and innovative algorithms to deliver actionable insights that drive smarter investment decisions. 

By joining Sov.ai, you'll be part of a dynamic research team dedicated to pushing the boundaries of what's possible in finance through technology. Before expressing your interest, please be aware that the research will be predominantly challenging and experimental in nature.


### 🔍 Research and Project Opportunities

We offer a wide range of projects that cater to various interests and expertise within machine learning and finance. Some of the exciting recent projects include:

- **Predictive Modeling with GitHub Logs:** Develop models to predict market trends and investment opportunities using GitHub activity and developer data.
- **Satallite Data Analysis:** Explore non-traditional data sources such as social media sentiment, satellite imagery, or web traffic to enhance financial forecasting.
- **Data Imputation Techniques:** Investigate new methods for handling missing or incomplete data to improve the robustness and accuracy of our models.

Please visit [docs.sov.ai](https://docs.sov.ai) for more information on public projects that have made it into the subscription product. If you already have a corporate sponsor, we are also happy to work with them. 

### 🌐 Why Join Sov.ai?

- **Innovative Environment:** Engage with the latest technologies and methodologies in machine learning and finance.
- **Collaborative Team:** Work alongside a team of experts passionate about driving innovation in investment insights.
- **Flexible Projects:** Tailor your research to align with your interests and expertise, with the freedom to explore new ideas.
- **Experienced Researchers:** Experts previously from NYU, Columbia, Oxford-Man Institute, Alan Turing Institute, and Cambridge.
- **Post Research:** Connect with alumni that has moved on to DRW, Citadel Securities, Virtu Financial, Akuna Capital, HRT.


### 🤝 How to Apply

If you’re excited about leveraging your expertise in machine learning and finance to drive impactful research and projects, we’d love to hear from you! Please reach out to us at [research@sov.ai](mailto:research@sov.ai) with your resume and a brief description of your research interests.

Join us in shaping the future of investment insights and making a meaningful impact in the world of finance!



## So what is [ML-Quant.com](https://ml-quant.com) then?


It is our firehose of daily research, serving as an internal knowledge base and client resource while also acting as a marketing channel to showcase our expertise and attract potential clients in the machine learning and quantitative finance space.


![Screenshot 2024-10-04 at 08-30-53 ML-Quant - Machine Learning and Quantitative Finance](https://github.com/user-attachments/assets/37911503-1277-4eec-b856-bb801ca9b45b)



# Financial Machine Learning and Data Science


- All repos/links status including last commit date is updated daily
- Only 15 Highest ranked repos/links for each section are displayed on main README.md and full list is available within the wiki page
- Both Wikis/README.md is updated in realtime as soon as new information are pushed to the repo 
___

# Trading
## Deep Learning & Reinforcement Learning ([Wiki](https://github.com/firmai/financial-machine-learning/wiki/deep_learning_and_reinforcement_learning))
<!-- [PLACEHOLDER_START:deep_learning_and_reinforcement_learning] --> 
| <sub>repo</sub>                                                                                                                                                                                                           | <sub>comment</sub>                                                                                                                                                                                                                                                                                                                                                                                                                                                                              | <sub>created_at</sub>          | <sub>last_commit</sub>         | <sub>star_count</sub>   | <sub>repo_status</sub>              | <sub>rating</sub>   |
|:--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-------------------------------|:-------------------------------|:------------------------|:------------------------------------|:--------------------|
| <sub>[FinRL-Library](https://github.com/AI4Finance-LLC/FinRL-Library)</sub>                                                                                                                                               | <sub>started by Columbia university engineering students and designed as an end to end deep reinforcement learning library for automated trading platform. Implementation of DQN DDQN DDPG etc using PyTorch and [gym](https://gym.openai.com/) use [pyfolio](https://github.com/quantopian/pyfolio) for showing backtesting stats. Big contributions on Proximal Policy Optimization (PPO) advantage actor critic (A2C) and Deep Deterministic Policy Gradient (DDPG) agents for trading</sub> | <sub>2020-07-26 13:18:16</sub> | <sub>2024-09-28 02:56:03</sub> | <sub>9697.0</sub>       | <sub>:heavy_check_mark:</sub>       | <sub>:star:x5</sub> |
| <sub>[Stock-Prediction-Models](https://github.com/huseinzol05/Stock-Prediction-Models)</sub>                                                                                                                              | <sub>very good curated list of notebooks showing deep learning + reinforcement learning models. Also contain topics on outlier detections/overbought oversold study/monte carlo simulartions/sentiment analysis from text (text storage/parsing is not detailed but it mentioned using [BERT](https://github.com/google-research/bert))</sub>                                                                                                                                                   | <sub>2017-12-18 10:49:59</sub> | <sub>2021-01-05 10:31:50</sub> | <sub>7924.0</sub>       | <sub>:heavy_multiplication_x:</sub> | <sub>:star:x5</sub> |
| <sub>[AI Trading](https://github.com/borisbanushev/stockpredictionai/blob/master/readme2.md)</sub>                                                                                                                        | <sub>AI to predict stock market movements.</sub>                                                                                                                                                                                                                                                                                                                                                                                                                                                | <sub>2019-01-09 08:02:47</sub> | <sub>2019-02-11 16:32:47</sub> | <sub>4094.0</sub>       | <sub>:heavy_multiplication_x:</sub> | <sub>:star:x5</sub> |
| <sub>[Deep Learning IV](https://github.com/achillesrasquinha/bulbea)</sub>                                                                                                                                                | <sub>Bulbea: Deep Learning based Python Library.</sub>                                                                                                                                                                                                                                                                                                                                                                                                                                          | <sub>2017-03-09 06:11:06</sub> | <sub>2017-03-19 07:42:49</sub> | <sub>2032.0</sub>       | <sub>:heavy_multiplication_x:</sub> | <sub>:star:x5</sub> |
| <sub>[RLTrader](https://github.com/notadamking/RLTrader)</sub>                                                                                                                                                            | <sub>predecessor to [tensortrade](https://github.com/tensortrade-org/tensortrade) uses open api [gym](https://gym.openai.com/) and neat way to render matplotlib plots in real time. Also explains LSTM/data stationarity/Bayesian optimization using [Optuna](https://github.com/optuna/optuna) etc.</sub>                                                                                                                                                                                     | <sub>2019-04-27 18:35:15</sub> | <sub>2019-10-17 16:25:49</sub> | <sub>1731.0</sub>       | <sub>:heavy_multiplication_x:</sub> | <sub>:star:x5</sub> |
| <sub>[Deep Learning III](https://github.com/Rachnog/Deep-Trading)</sub>                                                                                                                                                   | <sub>Algorithmic trading with deep learning experiments.</sub>                                                                                                                                                                                                                                                                                                                                                                                                                                  | <sub>2016-06-18 18:23:06</sub> | <sub>2018-08-07 15:24:45</sub> | <sub>1429.0</sub>       | <sub>:heavy_multiplication_x:</sub> | <sub>:star:x5</sub> |
| <sub>[Personae](https://github.com/Ceruleanacg/Personae)</sub>                                                                                                                                                            | <sub>implementation of deep reinforcement learning and supervised learnings covering areas: deep deterministic policy gradient (DDPG) and DDQN etc. Data are being pulled from [rqalpha](https://github.com/ricequant/rqalpha) which is a python backtest engine and have a nice docker image to run training/testing</sub>                                                                                                                                                                     | <sub>2018-03-10 11:22:00</sub> | <sub>2018-09-02 17:21:38</sub> | <sub>1340.0</sub>       | <sub>:heavy_multiplication_x:</sub> | <sub>:star:x5</sub> |
| <sub>[RL Trading](https://colab.research.google.com/drive/1FzLCI0AO3c7A4bp9Fi01UwXeoc7BN8sW)</sub>                                                                                                                        | <sub>A collection of 25+ Reinforcement Learning Trading Strategies -Google Colab.</sub>                                                                                                                                                                                                                                                                                                                                                                                                         | <sub>nan</sub>                 | <sub>nan</sub>                 | <sub>nan</sub>          | <sub>:heavy_check_mark:</sub>       | <sub>:star:x4</sub> |
| <sub>[Neural Network](https://github.com/VivekPa/IntroNeuralNetworks)</sub>                                                                                                                                               | <sub>Neural networks to predict stock prices.</sub>                                                                                                                                                                                                                                                                                                                                                                                                                                             | <sub>2018-09-10 06:34:53</sub> | <sub>2018-11-21 07:39:31</sub> | <sub>734.0</sub>        | <sub>:heavy_multiplication_x:</sub> | <sub>:star:x4</sub> |
| <sub>[Deep Learning](https://github.com/keon/deepstock)</sub>                                                                                                                                                             | <sub>Technical experimentations to beat the stock market using deep learning.</sub>                                                                                                                                                                                                                                                                                                                                                                                                             | <sub>2016-12-12 02:15:12</sub> | <sub>2017-03-04 08:37:29</sub> | <sub>470.0</sub>        | <sub>:heavy_multiplication_x:</sub> | <sub>:star:x4</sub> |
| <sub>[Deep-Reinforcement-Learning-for-Automated-Stock-Trading-Ensemble-Strategy-ICAIF-2020](https://github.com/AI4Finance-LLC/Deep-Reinforcement-Learning-for-Automated-Stock-Trading-Ensemble-Strategy-ICAIF-2020)</sub> | <sub>Part of FinRL and provided code for paper [deep reinformacement learning for automated stock trading](https://papers.ssrn.com/sol3/papers.cfm?abstract_id=3690996) focuses on ensemble.</sub>                                                                                                                                                                                                                                                                                              | <sub>2020-07-26 13:12:53</sub> | <sub>2024-07-01 08:09:06</sub> | <sub>2019.0</sub>       | <sub>:heavy_check_mark:</sub>       | <sub>:star:x4</sub> |
| <sub>[LTSM Recurrent](https://github.com/VivekPa/AIAlpha)</sub>                                                                                                                                                           | <sub>OHLC Average Prediction of Apple Inc. Using LSTM Recurrent Neural Network.</sub>                                                                                                                                                                                                                                                                                                                                                                                                           | <sub>2018-10-07 03:58:26</sub> | <sub>2019-08-03 09:00:44</sub> | <sub>1711.0</sub>       | <sub>:heavy_multiplication_x:</sub> | <sub>:star:x4</sub> |
| <sub>[awesome-deep-trading](https://github.com/cbailes/awesome-deep-trading)</sub>                                                                                                                                        | <sub>curated list of papers/repos on topics like CNN/LSTM/GAN/Reinforcement Learning etc. Categorized as deep learning for now but there are other topics here. Manually maintained by cbailes</sub>                                                                                                                                                                                                                                                                                            | <sub>2018-11-26 03:23:04</sub> | <sub>2021-01-01 09:41:21</sub> | <sub>1482.0</sub>       | <sub>:heavy_multiplication_x:</sub> | <sub>:star:x4</sub> |
| <sub>[trading-bot](https://github.com/pskrunner14/trading-bot)</sub>                                                                                                                                                      | <sub>Implementation of deep reinforcement learning using Deep Q Network (DQN). Only supports single security at the moment. Idea is roughly based [here](https://keon.github.io/deep-q-learning/) and uses tensorflow/keras. Interesting helper python libraries used here are [tqdm](https://tqdm.github.io/) for console based progress bar and [altair](https://altair-viz.github.io/) for declarative visualization in python </sub>                                                        | <sub>2018-08-13 10:44:08</sub> | <sub>2020-01-23 04:41:20</sub> | <sub>952.0</sub>        | <sub>:heavy_multiplication_x:</sub> | <sub>:star:x3</sub> |
| <sub>[crypto-rl](https://github.com/sadighian/crypto-rl)</sub>                                                                                                                                                            | <sub>Retrieve limit order book level data from coinbase pro and bitfinex -> record in [arctic](https://github.com/man-group/arctic) timeseries database then implemented trend following strategies (market orders) and market making (limit orders). Uses reinforcement learning (DQN) [keras-rl](https://github.com/keras-rl/keras-rl) to create agents and uses [openai gym](https://gym.openai.com/) to implement POMDP (partially observable markov decision process)</sub>                | <sub>2018-06-21 01:06:01</sub> | <sub>2021-11-30 13:52:18</sub> | <sub>849.0</sub>        | <sub>:heavy_multiplication_x:</sub> | <sub>:star:x3</sub> |<!-- [PLACEHOLDER_END:deep_learning_and_reinforcement_learning] --> 
 

## Other Models ([Wiki](https://github.com/firmai/financial-machine-learning/wiki/other_models))
<!-- [PLACEHOLDER_START:other_models] --> 
| <sub>repo</sub>                                                                                                                                                                    | <sub>comment</sub>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                | <sub>created_at</sub>          | <sub>last_commit</sub>         | <sub>star_count</sub>   | <sub>repo_status</sub>              | <sub>rating</sub>   |
|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-------------------------------|:-------------------------------|:------------------------|:------------------------------------|:--------------------|
| <sub>[Microservices-Based-Algorithmic-Trading-System](https://github.com/saeed349/Microservices-Based-Algorithmic-Trading-System)</sub>                                            | <sub>docker based platfrom for developing algo trading strategies. Very interesting combinations of open source components were used including [backtrader](https://www.backtrader.com/) for backtest strategies / [mlflow](https://mlflow.org/) for managing the machine learning model life cycle  (i.e. training and developing machine learning models) / [airflow](https://airflow.apache.org/) used as workflow management including schedule data download etc. / [superset](https://superset.apache.org/) web data visualization tool similar to tableau / [minio](https://min.io/) for fast object storage (i.e. storing saved models and model artifacts) / postgresql used to store security master and daily and minute data. Also contains some details on deployment on cloud</sub> | <sub>2020-01-06 00:21:58</sub> | <sub>2024-04-08 19:33:16</sub> | <sub>443.0</sub>        | <sub>:heavy_check_mark:</sub>       | <sub>:star:x5</sub> |
| <sub>[Awesome-Quant-Machine-Learning-Trading](https://github.com/grananqvist/Awesome-Quant-Machine-Learning-Trading)</sub>                                                         | <sub>curated list of books/online courses/youtube videos/blogs/interviews/papers/code etc. Updates are pretty infrequent</sub>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    | <sub>2018-11-05 21:09:06</sub> | <sub>2020-10-08 16:48:18</sub> | <sub>2675.0</sub>       | <sub>:heavy_multiplication_x:</sub> | <sub>:star:x5</sub> |
| <sub>[Hands-On-Machine-Learning-for-Algorithmic-Trading](https://github.com/PacktPublishing/Hands-On-Machine-Learning-for-Algorithmic-Trading)</sub>                               | <sub>repo for book [hands-on-machine learning for algorithmic trading](https://www.packtpub.com/product/hands-on-machine-learning-for-algorithmic-trading/9781789346411) covering topic from data/unsupervised learning/NPL/RNN & CNN/reinforcement learning etc. Leverage zipline/alphalens/sklearn/openai-gym etc as well. Good references to have</sub>                                                                                                                                                                                                                                                                                                                                                                                                                                        | <sub>2019-05-07 11:04:25</sub> | <sub>2023-01-18 09:16:47</sub> | <sub>1418.0</sub>       | <sub>:heavy_check_mark:</sub>       | <sub>:star:x5</sub> |
| <sub>[fin-ml](https://github.com/tatsath/fin-ml)</sub>                                                                                                                             | <sub>accompanying materials for book [Machine Learning and Data Science Blueprints for Finance](https://www.amazon.com/Machine-Learning-Science-Blueprints-Finance/dp/1492073059) on top of basic machine learning models i.e. nlp/reinforcement learning/supervised & unsupervised learning it covers wider topics including robo-advisors/fraud detection/loan default/derivative pricing/yield curve construction.</sub>                                                                                                                                                                                                                                                                                                                                                                       | <sub>2020-05-10 00:25:56</sub> | <sub>2023-01-26 22:03:20</sub> | <sub>846.0</sub>        | <sub>:heavy_check_mark:</sub>       | <sub>:star:x4</sub> |
| <sub>[Machine-Learning-for-Algorithmic-Trading-Second-Edition_Original](https://github.com/PacktPublishing/Machine-Learning-for-Algorithmic-Trading-Second-Edition_Original)</sub> | <sub>official repo for [machine learning for algorithmic trading](https://www.amazon.com/Machine-Learning-Algorithmic-Trading-alternative/dp/1839217715?pf_rd_r=GZH2XZ35GB3BET09PCCA&pf_rd_p=c5b6893a-24f2-4a59-9d4b-aff5065c90ec&pd_rd_r=91a679c7-f069-4a6e-bdbb-a2b3f548f0c8&pd_rd_w=2B0Q0&pd_rd_wg=GMY5S&ref_=pd_gw_ci_mcx_mr_hp_d) book. Covering topics including backtesting/boosting/nlp/deep&reinforcement learning. Leverage open source libraries including [backtrader](https://www.backtrader.com/) [zipline](https://github.com/quantopian/zipline) and [talib](https://github.com/mrjbq7/ta-lib)</sub>                                                                                                                                                                              | <sub>2019-11-15 08:51:40</sub> | <sub>2023-01-18 09:11:25</sub> | <sub>1192.0</sub>       | <sub>:heavy_check_mark:</sub>       | <sub>:star:x4</sub> |
| <sub>[AlphaPy](https://github.com/ScottfreeLLC/AlphaPy)</sub>                                                                                                                      | <sub>machine learning framework built on sklearn and pandas. Support pyfolio/xgboost/lightgmb/catboost(gradient boosting on decision tress) etc. Examples include financial market prediction/sports prediction/kaggle. Configurations are set though yaml file for all model process including feature selection/grid search on parameters and aggregate results for each model</sub>                                                                                                                                                                                                                                                                                                                                                                                                            | <sub>2016-02-14 00:47:32</sub> | <sub>2024-02-10 16:41:20</sub> | <sub>1137.0</sub>       | <sub>:heavy_check_mark:</sub>       | <sub>:star:x4</sub> |
| <sub>[Stock.Indicators](https://github.com/DaveSkender/Stock.Indicators)</sub>                                                                                                     | <sub>list of technical indicators implemented in c#. Full list and explanation available [here](https://daveskender.github.io/Stock.Indicators/docs/INDICATORS.html). This list contains several indicators that ta-lib does not cover</sub>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | <sub>2019-12-29 05:18:07</sub> | <sub>2024-09-09 18:29:11</sub> | <sub>963.0</sub>        | <sub>:heavy_check_mark:</sub>       | <sub>:star:x3</sub> |
| <sub>[Fundamental LT Forecasts](https://github.com/Hvass-Labs/FinanceOps)</sub>                                                                                                    | <sub>Research in investment finance for long term forecasts and a curated list of notebooks. Each topic contains a youtube video explaining in details. Interesting topics including using price per book ratio and other multiples for future return prediction and portfolio optimization. data sourced form [simfin](https://github.com/SimFin/simfin) yahoo finance and [s&p 500 earnings and estimate report](https://www.spglobal.com/spdji/en/documents/additional-material/sp-500-eps-est.xlsx) etc.</sub>                                                                                                                                                                                                                                                                                | <sub>2018-07-22 08:14:46</sub> | <sub>2022-02-12 13:26:40</sub> | <sub>838.0</sub>        | <sub>:heavy_multiplication_x:</sub> | <sub>:star:x3</sub> |
| <sub>[stock-trading-ml](https://github.com/yacoubb/stock-trading-ml)</sub>                                                                                                         | <sub>lstm model using keras to predict msft prices. Data is from [alphavantage](https://www.alphavantage.co/) which provides some free data through web services. Showing how to use concatenation layer to join timeseries data with TA data. Might be abit of overfitting on the model though</sub>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             | <sub>2019-10-10 09:44:02</sub> | <sub>2019-10-12 11:38:49</sub> | <sub>597.0</sub>        | <sub>:heavy_multiplication_x:</sub> | <sub>:star:x3</sub> |
| <sub>[MathAndScienceNotes](https://github.com/melling/MathAndScienceNotes)</sub>                                                                                                   | <sub>Collections of news/articles on various topics including quant trading and machine learning. Some articles are from [ycombinator message board](https://news.ycombinator.com/news) and [rediit algotrading forum](https://www.reddit.com/r/algotrading/)</sub>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               | <sub>2016-03-11 19:13:00</sub> | <sub>2020-12-21 03:54:51</sub> | <sub>504.0</sub>        | <sub>:heavy_multiplication_x:</sub> | <sub>:star:x3</sub> |
| <sub>[mlfinlab](https://github.com/hudson-and-thames/mlfinlab)</sub>                                                                                                               | <sub>open source library maintained by hudson and thames though much of the content has moved to a subscription model. Idea is to implement academic research in python code and aggregate it as a package. Sources from [Journal of financial data science](https://jfds.pm-research.com/) / [journal of portfolio management](https://jpm.pm-research.com/) / [journal of algorithmic finance](http://www.algorithmicfinance.org/) / [cambridge university press](https://www.cambridge.org/)</sub>                                                                                                                                                                                                                                                                                             | <sub>2019-02-13 16:57:25</sub> | <sub>2021-12-01 08:04:50</sub> | <sub>3933.0</sub>       | <sub>:heavy_multiplication_x:</sub> | <sub>:star:x3</sub> |
| <sub>[Machine-Learning-for-Algorithmic-Trading-Bots-with-Python](https://github.com/PacktPublishing/Machine-Learning-for-Algorithmic-Trading-Bots-with-Python)</sub>               | <sub>code repo for [machine learning for algorithmic trading bots](https://www.packtpub.com/application-development/machine-learning-algorithmic-trading-bots-python-video) video series. Contains notebooks and deep dive using [zipline](https://github.com/quantopian/zipline)</sub>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           | <sub>2018-12-06 11:35:08</sub> | <sub>2023-01-30 09:31:10</sub> | <sub>381.0</sub>        | <sub>:heavy_check_mark:</sub>       | <sub>:star:x3</sub> |
| <sub>[Machine-Learning-for-Finance](https://github.com/PacktPublishing/Machine-Learning-for-Finance)</sub>                                                                         | <sub>repo for book [machine learning for finance](https://www.packtpub.com/product/machine-learning-for-finance/9781789136364) with heavier focus on machine learning and less on finance. Topics covered including computer vision/time series/nlp/generative models (i.e. autoencoder)/reinforcement learning/debugging ml systems</sub>                                                                                                                                                                                                                                                                                                                                                                                                                                                        | <sub>2018-03-15 06:28:00</sub> | <sub>2023-01-30 09:45:35</sub> | <sub>356.0</sub>        | <sub>:heavy_check_mark:</sub>       | <sub>:star:x3</sub> |
| <sub>[awesome-ai-in-finance](https://github.com/georgezouq/awesome-ai-in-finance)</sub>                                                                                            | <sub>curated list of books/online courses/papers on AI and finance. Topics include crypto trading strategies/ta/backter etc.</sub>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                | <sub>2018-08-29 02:07:02</sub> | <sub>2024-06-10 07:13:13</sub> | <sub>3411.0</sub>       | <sub>:heavy_check_mark:</sub>       | <sub>:star:x3</sub> |
| <sub>[mosquito](https://github.com/miro-ka/mosquito)</sub>                                                                                                                         | <sub>base framework trading bot for crypto. Stores data in local mongodb instance and supports backtest and live trading on [poloniex](https://poloniex.com/) and [bittrex](https://bittrex.com/) which are 12-15th ranked crypto exchanges by volume. Leverage [talib](https://github.com/mrjbq7/ta-lib) for ta data and [plotly](https://github.com/plotly/plotly.py) for visualization</sub>                                                                                                                                                                                                                                                                                                                                                                                                   | <sub>2017-06-18 19:57:17</sub> | <sub>2023-04-23 21:39:31</sub> | <sub>261.0</sub>        | <sub>:heavy_check_mark:</sub>       | <sub>:star:x3</sub> |<!-- [PLACEHOLDER_END:other_models] --> 
 

## Data Processing Techniques and Transformations ([Wiki](https://github.com/firmai/financial-machine-learning/wiki/data_processing_techniques_and_transformations))
<!-- [PLACEHOLDER_START:data_processing_techniques_and_transformations] --> 
| <sub>repo</sub>                                                                                                 | <sub>comment</sub>                                                                                                                                                                                                                                                                                                            | <sub>created_at</sub>          | <sub>last_commit</sub>         | <sub>star_count</sub>   | <sub>repo_status</sub>              | <sub>rating</sub>   |
|:----------------------------------------------------------------------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-------------------------------|:-------------------------------|:------------------------|:------------------------------------|:--------------------|
| <sub>[Advanced ML](https://github.com/BlackArbsCEO/Adv_Fin_ML_Exercises)</sub>                                  | <sub>Exercises to book [advances in financial machine learning](https://www.wiley.com/en-us/Advances+in+Financial+Machine+Learning-p-9781119482109). Relevant topics include data cleaning and outlier detection (using MAD)</sub>                                                                                            | <sub>2018-04-25 17:22:40</sub> | <sub>2020-01-16 17:25:41</sub> | <sub>1698.0</sub>       | <sub>:heavy_multiplication_x:</sub> | <sub>:star:x4</sub> |
| <sub>[Twitter-Trends](https://github.com/Medha11/Twitter-Trends)</sub>                                          | <sub>sentiment analysis baed on twitter data. Relevant topics include data cleaning/tokenization/data aggregation using mangodb etc.</sub>                                                                                                                                                                                    | <sub>2017-05-22 17:07:45</sub> | <sub>2017-05-23 08:06:27</sub> | <sub>99.0</sub>         | <sub>:heavy_multiplication_x:</sub> | <sub>:star:x3</sub> |
| <sub>[Google-Finance-Stock-Data-Analysis](https://github.com/hpnhxxwn/Google-Finance-Stock-Data-Analysis)</sub> | <sub>data processing platform which stream data from kafka. The example shows two incoming data stream stock vs tweets and two spark streams are created to consume the kafka data then end results are stored in cassandra. Older tech stacks were used and not actively maintained.</sub>                                   | <sub>2017-07-23 02:59:59</sub> | <sub>2017-07-23 03:10:35</sub> | <sub>82.0</sub>         | <sub>:heavy_multiplication_x:</sub> | <sub>:star:x3</sub> |
| <sub>[finserv-application-blueprint](https://github.com/mapr-demos/finserv-application-blueprint)</sub>         | <sub>generate streamable data using mapr converged data platfrom built mostly in java. Uses apache [zepplin](https://zeppelin.apache.org/) for web visualization </sub>                                                                                                                                                       | <sub>2016-09-26 19:42:54</sub> | <sub>2021-06-07 17:38:13</sub> | <sub>84.0</sub>         | <sub>:heavy_multiplication_x:</sub> | <sub>:star:x2</sub> |
| <sub>[cointrader](https://github.com/timolson/cointrader)</sub>                                                 | <sub>java based platform for trading crypto. Relevant sections including using esper event queries to transform data and place orders</sub>                                                                                                                                                                                   | <sub>2014-06-01 01:14:12</sub> | <sub>2022-06-21 01:03:49</sub> | <sub>451.0</sub>        | <sub>:heavy_multiplication_x:</sub> | <sub>:star:x2</sub> |
| <sub>[CryptoNets](https://github.com/microsoft/CryptoNets)</sub>                                                | <sub>CryptoNets is a demonstration of the use of Neural-Networks over data encrypted with [Homomorphic Encryption](https://www.cs.cmu.edu/~odonnell/hits09/gentry-homomorphic-encryption.pdf). Homomorphic Encryptions allow performing operations such as addition and multiplication over data while it is encrypted.</sub> | <sub>2019-06-02 05:48:39</sub> | <sub>2022-09-09 15:57:24</sub> | <sub>280.0</sub>        | <sub>:heavy_multiplication_x:</sub> | <sub>:star:x2</sub> |
| <sub>[plaid-to-gsheets](https://github.com/williamlmao/plaid-to-gsheets)</sub>                                  | <sub>NEW</sub>                                                                                                                                                                                                                                                                                                                | <sub>2021-12-12 19:53:14</sub> | <sub>2023-02-03 15:36:49</sub> | <sub>71.0</sub>         | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[ninjabook](https://github.com/ninja-quant/ninjabook)</sub>                                                | <sub>NEW</sub>                                                                                                                                                                                                                                                                                                                | <sub>2024-04-10 01:01:10</sub> | <sub>2024-04-21 16:42:28</sub> | <sub>150.0</sub>        | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[Major-project-list](https://github.com/ManojKumarPatnaik/Major-project-list)</sub>                        | <sub>NEW</sub>                                                                                                                                                                                                                                                                                                                | <sub>2021-09-04 11:17:44</sub> | <sub>2024-09-07 15:22:27</sub> | <sub>115.0</sub>        | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |<!-- [PLACEHOLDER_END:data_processing_techniques_and_transformations] --> 
 

# Portfolio Management
## Portfolio Selection and Optimisation ([Wiki](https://github.com/firmai/financial-machine-learning/wiki/portfolio_selection_and_optimisation))
<!-- [PLACEHOLDER_START:portfolio_selection_and_optimisation] --> 
| <sub>repo</sub>                                                                                                                                   | <sub>comment</sub>                                                                                                                           | <sub>created_at</sub>          | <sub>last_commit</sub>         | <sub>star_count</sub>   | <sub>repo_status</sub>              | <sub>rating</sub>   |
|:--------------------------------------------------------------------------------------------------------------------------------------------------|:---------------------------------------------------------------------------------------------------------------------------------------------|:-------------------------------|:-------------------------------|:------------------------|:------------------------------------|:--------------------|
| <sub>[Modern Portfolio Theory](https://nbviewer.jupyter.org/github/Marigold/universal-portfolios/blob/master/modern-portfolio-theory.ipynb)</sub> | <sub>Universal portfolios; modern portfolio theory.</sub>                                                                                    | <sub>nan</sub>                 | <sub>nan</sub>                 | <sub>nan</sub>          | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[Online Portfolio Selection](https://nbviewer.jupyter.org/github/paulperry/quant/blob/master/OLPS_Comparison.ipynb)</sub>                    | <sub>****Comparing OLPS algorithms on a diversified set of ETFs.</sub>                                                                       | <sub>nan</sub>                 | <sub>nan</sub>                 | <sub>nan</sub>          | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[cvxportfolio](https://github.com/cvxgrp/cvxportfolio)</sub>                                                                                 | <sub>NEW</sub>                                                                                                                               | <sub>2017-01-11 01:16:16</sub> | <sub>2024-09-27 14:09:43</sub> | <sub>968.0</sub>        | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[DeepDow](https://github.com/jankrepl/deepdow)</sub>                                                                                         | <sub>Portfolio optimization with deep learning.</sub>                                                                                        | <sub>2020-02-02 08:46:33</sub> | <sub>2024-01-24 15:56:34</sub> | <sub>901.0</sub>        | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[Reinforcement Learning](https://github.com/filangel/qtrader)</sub>                                                                          | <sub>Reinforcement Learning for Portfolio Management.</sub>                                                                                  | <sub>2017-10-07 09:14:33</sub> | <sub>2018-06-26 09:22:27</sub> | <sub>453.0</sub>        | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[PyPortfolioOpt](https://github.com/robertmartin8/PyPortfolioOpt)</sub>                                                                      | <sub>Financial portfolio optimisation, including classical efficient frontier and advanced methods.</sub>                                    | <sub>2018-05-29 13:30:30</sub> | <sub>2024-05-28 23:05:51</sub> | <sub>4425.0</sub>       | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[Distribution Characteristic Optimisation](https://github.com/VivekPa/OptimalPortfolio)</sub>                                                | <sub>Extends classical portfolio optimisation to take the skewness and kurtosis of the distribution of market invariants into account.</sub> | <sub>2018-11-16 12:20:25</sub> | <sub>2024-02-27 21:38:36</sub> | <sub>352.0</sub>        | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[Riskfolio-Lib](https://github.com/dcajasn/Riskfolio-Lib)</sub>                                                                              | <sub>NEW</sub>                                                                                                                               | <sub>2020-03-02 19:49:06</sub> | <sub>2024-07-29 21:51:42</sub> | <sub>2985.0</sub>       | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[riskparity.py](https://github.com/convexfi/riskparity.py)</sub>                                                                             | <sub>NEW</sub>                                                                                                                               | <sub>2019-07-13 21:30:55</sub> | <sub>2024-05-27 00:29:29</sub> | <sub>285.0</sub>        | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[riskparity.py](https://github.com/dppalomar/riskparity.py)</sub>                                                                            | <sub>NEW</sub>                                                                                                                               | <sub>2019-07-13 21:30:55</sub> | <sub>2024-05-27 00:29:29</sub> | <sub>285.0</sub>        | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[okama](https://github.com/mbk-dev/okama)</sub>                                                                                              | <sub>NEW</sub>                                                                                                                               | <sub>2020-03-02 14:48:29</sub> | <sub>2024-07-06 13:39:25</sub> | <sub>205.0</sub>        | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[Efficient Frontier](https://github.com/tthustla/efficient_frontier/blob/master/Efficient%20_Frontier_implementation.ipynb)</sub>            | <sub>Modern Portfolio Theory.</sub>                                                                                                          | <sub>2018-02-17 08:19:46</sub> | <sub>2018-02-27 13:16:57</sub> | <sub>184.0</sub>        | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[Policy Gradient Portfolio](https://github.com/ZhengyaoJiang/PGPortfolio)</sub>                                                              | <sub>A Deep Reinforcement Learning Framework for the Financial Portfolio Management Problem.</sub>                                           | <sub>2017-11-12 16:08:44</sub> | <sub>2021-07-30 15:03:59</sub> | <sub>1739.0</sub>       | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[finance-courses](https://github.com/z4ir3/finance-courses)</sub>                                                                            | <sub>NEW</sub>                                                                                                                               | <sub>2019-10-10 10:50:03</sub> | <sub>2023-12-11 23:09:10</sub> | <sub>171.0</sub>        | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[401K Portfolio Optimisation](https://github.com/otosman/Python-for-Finance/blob/master/Portfolio%20Optimization%20401k.ipynb)</sub>         | <sub>Portfolio analyses and optimisation for 401K.</sub>                                                                                     | <sub>2018-08-01 19:48:24</sub> | <sub>2019-09-05 11:18:56</sub> | <sub>17.0</sub>         | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |<!-- [PLACEHOLDER_END:portfolio_selection_and_optimisation] -->

## Factor and Risk Analysis ([Wiki](https://github.com/firmai/financial-machine-learning/wiki/factor_and_risk_analysis))
<!-- [PLACEHOLDER_START:factor_and_risk_analysis] --> 
| <sub>repo</sub>                                                                                                                                                                                            | <sub>comment</sub>                                                                       | <sub>created_at</sub>          | <sub>last_commit</sub>         | <sub>star_count</sub>   | <sub>repo_status</sub>              | <sub>rating</sub>   |
|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------------------------------------------|:-------------------------------|:-------------------------------|:------------------------|:------------------------------------|:--------------------|
| <sub>[-1](https://github.com/Rastaman4e/-1)</sub>                                                                                                                                                          | <sub>NEW</sub>                                                                           | <sub>nan</sub>                 | <sub>nan</sub>                 | <sub>nan</sub>          | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[FEEDN](https://github.com/THEFEASTCOIN/FEEDN)</sub>                                                                                                                                                  | <sub>NEW</sub>                                                                           | <sub>nan</sub>                 | <sub>nan</sub>                 | <sub>nan</sub>          | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[factor-risk-parity](https://github.com/tngaspar/factor-risk-parity)</sub>                                                                                                                            | <sub>NEW</sub>                                                                           | <sub>2020-04-05 17:05:40</sub> | <sub>2022-09-18 14:42:03</sub> | <sub>9.0</sub>          | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[SafetyAndTrade](https://github.com/vrdcas/SafetyAndTrade)</sub>                                                                                                                                      | <sub>NEW</sub>                                                                           | <sub>2020-04-11 20:18:03</sub> | <sub>2020-04-12 17:00:36</sub> | <sub>9.0</sub>          | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[VaR GaN](https://github.com/hamaadshah/market_risk_gan_keras)</sub>                                                                                                                                  | <sub>Estimate Value-at-Risk for market risk management using Keras and TensorFlow.</sub> | <sub>2018-08-06 16:09:44</sub> | <sub>2022-06-24 19:05:55</sub> | <sub>84.0</sub>         | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[Liberty-House-Club-Whitepaper](https://github.com/realbeeed/Liberty-House-Club-Whitepaper)</sub>                                                                                                     | <sub>NEW</sub>                                                                           | <sub>2022-04-22 08:25:39</sub> | <sub>2022-04-22 08:27:24</sub> | <sub>8.0</sub>          | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[Various Risk Measures](https://github.com/Jorgencr/Alternative-and-Responsible-Investments/blob/master/Final_masterfile.ipynb)</sub>                                                                 | <sub>Risk measures and factors for alternative and responsible investments.</sub>        | <sub>2017-08-07 14:44:32</sub> | <sub>2017-08-08 22:52:11</sub> | <sub>8.0</sub>          | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[Factor Analysis](https://github.com/garvit-kudesia91/factor_analysis/blob/master/Factor%20Analysis%20of%20Mutual%20Funds.ipynb)</sub>                                                                | <sub>Factor analysis for mutual funds.</sub>                                             | <sub>2018-03-13 07:39:20</sub> | <sub>2018-03-13 07:42:36</sub> | <sub>8.0</sub>          | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[one_factor_Hull_White_python](https://github.com/open-source-modelling/one_factor_Hull_White_python)</sub>                                                                                           | <sub>NEW</sub>                                                                           | <sub>2023-01-29 17:45:51</sub> | <sub>2024-03-24 19:48:04</sub> | <sub>8.0</sub>          | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[whitepaper](https://github.com/peacockbsc/whitepaper)</sub>                                                                                                                                          | <sub>NEW</sub>                                                                           | <sub>2021-07-31 23:39:41</sub> | <sub>2022-08-25 09:52:38</sub> | <sub>7.0</sub>          | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[An-Analysis-of-PCA-and-Autoencoder-Generated-Factors-in-Predicting-SP500-Returns](https://github.com/Leo8216/An-Analysis-of-PCA-and-Autoencoder-Generated-Factors-in-Predicting-SP500-Returns)</sub> | <sub>NEW</sub>                                                                           | <sub>2020-01-18 00:53:46</sub> | <sub>2020-01-18 03:59:36</sub> | <sub>7.0</sub>          | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[The-Reason-Why-Everyone-Love-Mining-Tools](https://github.com/dcstechnoweb/The-Reason-Why-Everyone-Love-Mining-Tools)</sub>                                                                          | <sub>NEW</sub>                                                                           | <sub>2022-06-13 05:11:36</sub> | <sub>2022-06-13 05:12:52</sub> | <sub>7.0</sub>          | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[-L-](https://github.com/jettbrains/-L-)</sub>                                                                                                                                                        | <sub>NEW</sub>                                                                           | <sub>2019-10-28 21:50:26</sub> | <sub>2019-10-28 21:51:19</sub> | <sub>67.0</sub>         | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[Bitcoin_Since_Pandemic](https://github.com/at-tan/Bitcoin_Since_Pandemic)</sub>                                                                                                                      | <sub>NEW</sub>                                                                           | <sub>2022-02-12 11:12:37</sub> | <sub>2022-02-12 17:46:45</sub> | <sub>6.0</sub>          | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[Pyfolio](https://github.com/quantopian/pyfolio)</sub>                                                                                                                                                | <sub>Portfolio and risk analytics in Python.</sub>                                       | <sub>2015-06-01 15:31:39</sub> | <sub>2020-02-28 17:30:19</sub> | <sub>5631.0</sub>       | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |<!-- [PLACEHOLDER_END:factor_and_risk_analysis] -->

# Techniques
## Unsupervised ([Wiki](https://github.com/firmai/financial-machine-learning/wiki/unsupervised))
<!-- [PLACEHOLDER_START:unsupervised] --> 
| <sub>repo</sub>                                                                                                                                  | <sub>comment</sub>                                                                                        | <sub>created_at</sub>          | <sub>last_commit</sub>         | <sub>star_count</sub>   | <sub>repo_status</sub>              | <sub>rating</sub>   |
|:-------------------------------------------------------------------------------------------------------------------------------------------------|:----------------------------------------------------------------------------------------------------------|:-------------------------------|:-------------------------------|:------------------------|:------------------------------------|:--------------------|
| <sub>[PCA Pairs Trading](https://github.com/joelQF/quant-finance/tree/master/Artificial_IntelIigence_for_Trading)</sub>                          | <sub>PCA, Factor Returns, and trading strategies.</sub>                                                   | <sub>nan</sub>                 | <sub>nan</sub>                 | <sub>nan</sub>          | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[Eigen-Portfolio](https://github.com/Gustrigos/Eigen-Portfolio)</sub>                                                                       | <sub>NEW</sub>                                                                                            | <sub>2018-09-05 05:29:18</sub> | <sub>2020-04-09 21:40:04</sub> | <sub>67.0</sub>         | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[hmm_market_behavior](https://github.com/lamres/hmm_market_behavior)</sub>                                                                  | <sub>NEW</sub>                                                                                            | <sub>2019-09-08 17:37:39</sub> | <sub>2020-05-10 14:36:03</sub> | <sub>40.0</sub>         | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[VRA Stock Embedding](https://github.com/ml-hongkong/stock2vec)</sub>                                                                       | <sub>Variational Reccurrent Autoencoder for Embedding stocks to vectors based on the price history.</sub> | <sub>2017-06-21 04:47:14</sub> | <sub>2017-06-21 04:51:13</sub> | <sub>38.0</sub>         | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[AnomalyDetectionOnRisk](https://github.com/SimonWesterlindVPD/AnomalyDetectionOnRisk)</sub>                                                | <sub>NEW</sub>                                                                                            | <sub>2018-05-31 15:53:02</sub> | <sub>2018-05-31 16:18:28</sub> | <sub>21.0</sub>         | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[Pairs Trading](https://github.com/marketneutral/pairs-trading-with-ML/blob/master/Pairs%2BTrading%2Bwith%2BMachine%2BLearning.ipynb)</sub> | <sub>Finding pairs with cluster analysis.</sub>                                                           | <sub>2017-09-05 19:19:19</sub> | <sub>2017-09-27 20:42:14</sub> | <sub>203.0</sub>        | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[all-classification-templetes-for-ML](https://github.com/sayantann11/all-classification-templetes-for-ML)</sub>                             | <sub>NEW</sub>                                                                                            | <sub>2020-05-05 10:28:52</sub> | <sub>2024-05-15 11:46:23</sub> | <sub>198.0</sub>        | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[Credit-Card-Fraud-Detection](https://github.com/sharmaroshan/Credit-Card-Fraud-Detection)</sub>                                            | <sub>NEW</sub>                                                                                            | <sub>2019-03-31 05:33:17</sub> | <sub>2019-03-31 05:38:43</sub> | <sub>16.0</sub>         | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[Industry Clustering](https://github.com/SeanMcOwen/FinanceAndPython.com-ClusteringIndustries)</sub>                                        | <sub>Clustering of industries.</sub>                                                                      | <sub>2017-07-21 02:12:51</sub> | <sub>2017-07-23 02:53:37</sub> | <sub>14.0</sub>         | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[Industry Clustering](https://github.com/SeanMcOwen/FinanceAndPython.com-ClusteringIndustries)</sub>                                        | <sub>Project to cluster industries according to financial attributes.</sub>                               | <sub>2017-07-21 02:12:51</sub> | <sub>2017-07-23 02:53:37</sub> | <sub>14.0</sub>         | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[tableQA-Chinese](https://github.com/svjack/tableQA-Chinese)</sub>                                                                          | <sub>NEW</sub>                                                                                            | <sub>2021-03-16 14:54:53</sub> | <sub>2023-04-20 06:20:56</sub> | <sub>12.0</sub>         | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[Fund Clusters](https://github.com/frechfrechfrech/Mutual-Fund-Market-Clusters/blob/master/Initial%20Data%20Exploration.ipynb)</sub>        | <sub>Data exploration of fund clusters.</sub>                                                             | <sub>2018-04-16 22:18:55</sub> | <sub>2018-06-07 22:01:32</sub> | <sub>11.0</sub>         | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[Stock_Support_Resistance_ML](https://github.com/judopro/Stock_Support_Resistance_ML)</sub>                                                 | <sub>NEW</sub>                                                                                            | <sub>2019-12-22 20:25:48</sub> | <sub>2021-05-02 04:25:21</sub> | <sub>100.0</sub>        | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[Learning-Technical-Trading](https://github.com/NJ-Murphy/Learning-Technical-Trading)</sub>                                                 | <sub>NEW</sub>                                                                                            | <sub>2019-03-25 11:47:49</sub> | <sub>2020-04-08 12:39:53</sub> | <sub>10.0</sub>         | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |<!-- [PLACEHOLDER_END:unsupervised] -->


## Textual ([Wiki](https://github.com/firmai/financial-machine-learning/wiki/textual))
<!-- [PLACEHOLDER_START:textual] --> 
| <sub>repo</sub>                                                                                                                       | <sub>comment</sub>                                                                   | <sub>created_at</sub>          | <sub>last_commit</sub>         | <sub>star_count</sub>   | <sub>repo_status</sub>              | <sub>rating</sub>   |
|:--------------------------------------------------------------------------------------------------------------------------------------|:-------------------------------------------------------------------------------------|:-------------------------------|:-------------------------------|:------------------------|:------------------------------------|:--------------------|
| <sub>[NLP](https://github.com/toamitesh/NLPinFinance)</sub>                                                                           | <sub>This project assembles a lot of NLP operations needed for finance domain.</sub> | <sub>nan</sub>                 | <sub>nan</sub>                 | <sub>nan</sub>          | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[NLP Event](https://github.com/yuriak/DLQuant)</sub>                                                                             | <sub>Applying Deep Learning and NLP in Quantitative Trading.</sub>                   | <sub>2018-07-02 23:50:52</sub> | <sub>2019-01-31 14:08:20</sub> | <sub>99.0</sub>         | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[Financial Sentiment Analysis](https://github.com/EricHe98/Financial-Statements-Text-Analysis)</sub>                             | <sub>Sentiment, distance and proportion analysis for trading signals.</sub>          | <sub>2017-06-23 00:05:49</sub> | <sub>2023-05-08 00:58:50</sub> | <sub>94.0</sub>         | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[Cornucopia-LLaMA-Fin-Chinese](https://github.com/jerry1993-tech/Cornucopia-LLaMA-Fin-Chinese)</sub>                             | <sub>NEW</sub>                                                                       | <sub>2023-04-30 06:11:18</sub> | <sub>2023-06-30 07:52:13</sub> | <sub>582.0</sub>        | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[awesome-financial-nlp](https://github.com/icoxfog417/awesome-financial-nlp)</sub>                                               | <sub>NEW</sub>                                                                       | <sub>2019-10-03 03:53:20</sub> | <sub>2020-02-01 08:28:16</sub> | <sub>402.0</sub>        | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[Buzzwords](https://github.com/swap9047/Cutting-Edge-Technologies-Effect-on-S-P500-Companies-Performance-and-Mutual-Funds)</sub> | <sub>Return performance and mutual fund selection.</sub>                             | <sub>2018-02-04 21:51:16</sub> | <sub>2018-02-04 21:57:09</sub> | <sub>4.0</sub>          | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[FinNLP-Progress](https://github.com/YangLinyi/FinNLP-Progress)</sub>                                                            | <sub>NEW</sub>                                                                       | <sub>2020-05-21 09:59:56</sub> | <sub>2022-04-18 09:21:22</sub> | <sub>390.0</sub>        | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[news-emotion](https://github.com/dongyuanxin/news-emotion)</sub>                                                                | <sub>NEW</sub>                                                                       | <sub>2017-09-14 02:59:03</sub> | <sub>2018-06-11 13:47:51</sub> | <sub>331.0</sub>        | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[financial-news-dataset](https://github.com/philipperemy/financial-news-dataset)</sub>                                           | <sub>NEW</sub>                                                                       | <sub>2016-08-23 13:29:07</sub> | <sub>2023-03-09 06:53:26</sub> | <sub>223.0</sub>        | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[FinBERT](https://github.com/psnonis/FinBERT)</sub>                                                                              | <sub>NEW</sub>                                                                       | <sub>2019-07-09 16:34:27</sub> | <sub>2020-05-19 02:02:20</sub> | <sub>197.0</sub>        | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[Accounting Anomalies](https://github.com/GitiHubi/deepAI/blob/master/GTC_2018_Lab-solutions.ipynb)</sub>                        | <sub>Using deep-learning frameworks to identify accounting anomalies.</sub>          | <sub>2017-05-24 12:36:38</sub> | <sub>2019-08-07 21:47:08</sub> | <sub>196.0</sub>        | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[fin-sight](https://github.com/vishwasg217/fin-sight)</sub>                                                                      | <sub>NEW</sub>                                                                       | <sub>2023-09-06 13:01:39</sub> | <sub>2024-04-22 07:21:27</sub> | <sub>195.0</sub>        | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[finsight](https://github.com/vishwasg217/finsight)</sub>                                                                        | <sub>NEW</sub>                                                                       | <sub>2023-09-06 13:01:39</sub> | <sub>2024-04-22 07:21:27</sub> | <sub>189.0</sub>        | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[Financial Statement Sentiment](https://github.com/MAydogdu/TextualAnalysis)</sub>                                               | <sub>Extracting sentiment from financial statements using neural networks.</sub>     | <sub>2018-06-04 20:54:14</sub> | <sub>2018-06-04 20:56:02</sub> | <sub>18.0</sub>         | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[BDCI2019-Negative_Finance_Info_Judge](https://github.com/A-Rain/BDCI2019-Negative_Finance_Info_Judge)</sub>                     | <sub>NEW</sub>                                                                       | <sub>2019-12-27 03:49:31</sub> | <sub>2020-12-04 03:38:57</sub> | <sub>153.0</sub>        | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |<!-- [PLACEHOLDER_END:textual] -->

# Other Assets
## Derivatives and Hedging ([Wiki](https://github.com/firmai/financial-machine-learning/wiki/derivatives_and_hedging))
<!-- [PLACEHOLDER_START:derivatives_and_hedging] --> 
| <sub>repo</sub>                                                                                                                          | <sub>comment</sub>                          | <sub>created_at</sub>          | <sub>last_commit</sub>         | <sub>star_count</sub>   | <sub>repo_status</sub>              | <sub>rating</sub>   |
|:-----------------------------------------------------------------------------------------------------------------------------------------|:--------------------------------------------|:-------------------------------|:-------------------------------|:------------------------|:------------------------------------|:--------------------|
| <sub>[Options](https://github.com/PHBS/2018.M1.ASP/tree/master/py)</sub>                                                                 | <sub>Black Scholes and Copula.</sub>        | <sub>nan</sub>                 | <sub>nan</sub>                 | <sub>nan</sub>          | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[injective-helix-demo](https://github.com/InjectiveLabs/injective-helix-demo)</sub>                                                 | <sub>NEW</sub>                              | <sub>2021-04-12 13:36:25</sub> | <sub>2024-07-15 17:00:25</sub> | <sub>99.0</sub>         | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[optopsy](https://github.com/michaelchu/optopsy)</sub>                                                                              | <sub>NEW</sub>                              | <sub>2017-09-17 01:49:54</sub> | <sub>2024-07-06 19:33:10</sub> | <sub>978.0</sub>        | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[akshare](https://github.com/jindaxiang/akshare)</sub>                                                                              | <sub>NEW</sub>                              | <sub>2019-10-01 07:34:12</sub> | <sub>2024-09-28 06:49:57</sub> | <sub>9042.0</sub>       | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[AlgorithmicTrading](https://github.com/JerBouma/AlgorithmicTrading)</sub>                                                          | <sub>NEW</sub>                              | <sub>2019-03-14 09:33:37</sub> | <sub>2023-08-13 07:15:09</sub> | <sub>878.0</sub>        | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[lumibot](https://github.com/Lumiwealth/lumibot)</sub>                                                                              | <sub>NEW</sub>                              | <sub>2020-09-10 10:00:16</sub> | <sub>2024-09-27 04:30:14</sub> | <sub>877.0</sub>        | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[Strata](https://github.com/OpenGamma/Strata)</sub>                                                                                 | <sub>NEW</sub>                              | <sub>2014-06-16 11:45:55</sub> | <sub>2024-08-28 16:12:28</sub> | <sub>842.0</sub>        | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[Derman](https://github.com/rstreppa/valuation-convertibles-Goldman1994/blob/master/ConvertibleBond_Goldman1994_Derman.ipynb)</sub> | <sub>Binomial tree for American call.</sub> | <sub>2018-05-18 18:08:16</sub> | <sub>2018-09-21 19:59:01</sub> | <sub>8.0</sub>          | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[Options-Trading-Strategies-in-Python](https://github.com/PyPatel/Options-Trading-Strategies-in-Python)</sub>                       | <sub>NEW</sub>                              | <sub>2017-08-30 06:00:15</sub> | <sub>2019-08-21 15:47:57</sub> | <sub>799.0</sub>        | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[gs-quant](https://github.com/goldmansachs/gs-quant)</sub>                                                                          | <sub>NEW</sub>                              | <sub>2018-12-14 21:10:40</sub> | <sub>2024-09-23 11:01:29</sub> | <sub>7582.0</sub>       | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[StockSharp](https://github.com/StockSharp/StockSharp)</sub>                                                                        | <sub>NEW</sub>                              | <sub>2014-12-08 07:53:44</sub> | <sub>2024-09-23 21:13:42</sub> | <sub>7097.0</sub>       | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[optlib](https://github.com/dbrojas/optlib)</sub>                                                                                   | <sub>NEW</sub>                              | <sub>2020-08-17 00:30:14</sub> | <sub>2022-11-18 19:12:54</sub> | <sub>644.0</sub>        | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[algotrader](https://github.com/torreyleonard/algotrader)</sub>                                                                     | <sub>NEW</sub>                              | <sub>2018-04-10 02:31:26</sub> | <sub>2020-08-27 08:16:44</sub> | <sub>635.0</sub>        | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[trading-server](https://github.com/s-brez/trading-server)</sub>                                                                    | <sub>NEW</sub>                              | <sub>2019-03-05 03:06:19</sub> | <sub>2022-11-17 01:42:13</sub> | <sub>619.0</sub>        | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[Delta Hedging](https://github.com/RobinsonGarcia/delta-hedging)</sub>                                                              | <sub>Advanced derivatives.</sub>            | <sub>2018-03-02 23:53:53</sub> | <sub>2018-07-17 23:32:23</sub> | <sub>6.0</sub>          | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |<!-- [PLACEHOLDER_END:derivatives_and_hedging] -->

## Fixed Income ([Wiki](https://github.com/firmai/financial-machine-learning/wiki/fixed_income))
<!-- [PLACEHOLDER_START:fixed_income] --> 
| <sub>repo</sub>                                                                                                        | <sub>comment</sub>                                                          | <sub>created_at</sub>          | <sub>last_commit</sub>         | <sub>star_count</sub>   | <sub>repo_status</sub>              | <sub>rating</sub>   |
|:-----------------------------------------------------------------------------------------------------------------------|:----------------------------------------------------------------------------|:-------------------------------|:-------------------------------|:------------------------|:------------------------------------|:--------------------|
| <sub>[Binomial Tree](https://github.com/hy-lei/math-finance-exercise)</sub>                                            | <sub>Utility functions in fixed income securities.</sub>                    | <sub>2019-02-02 08:44:14</sub> | <sub>2019-05-03 17:16:52</sub> | <sub>8.0</sub>          | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[Vasicek](https://github.com/RobinsonGarcia/fixed-income/blob/master/2.0%20Vasicek%20-%20example.ipynb)</sub>     | <sub>Bootstrapping and interpolation.</sub>                                 | <sub>2018-07-18 19:26:54</sub> | <sub>2018-07-18 19:34:48</sub> | <sub>6.0</sub>          | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[neurons](https://github.com/Aryia-Behroziuan/neurons)</sub>                                                      | <sub>NEW</sub>                                                              | <sub>2020-11-07 12:17:04</sub> | <sub>2020-11-07 12:17:06</sub> | <sub>55.0</sub>         | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[R-fixedincome](https://github.com/wilsonfreitas/R-fixedincome)</sub>                                             | <sub>NEW</sub>                                                              | <sub>2013-09-16 01:10:50</sub> | <sub>2023-06-27 08:10:20</sub> | <sub>51.0</sub>         | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[rating_history](https://github.com/govwiki/rating_history)</sub>                                                 | <sub>NEW</sub>                                                              | <sub>2017-11-23 22:52:14</sub> | <sub>2023-06-29 22:16:57</sub> | <sub>47.0</sub>         | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[TRACE-corporate-bond-processing](https://github.com/Alexander-M-Dickerson/TRACE-corporate-bond-processing)</sub> | <sub>NEW</sub>                                                              | <sub>2020-12-18 10:20:12</sub> | <sub>2024-07-18 02:33:32</sub> | <sub>43.0</sub>         | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[augmented-finance-protocol](https://github.com/augmented-finance/augmented-finance-protocol)</sub>               | <sub>NEW</sub>                                                              | <sub>2021-03-27 11:01:43</sub> | <sub>2022-02-16 15:58:35</sub> | <sub>38.0</sub>         | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[market-data](https://github.com/kriasoft/market-data)</sub>                                                      | <sub>NEW</sub>                                                              | <sub>2012-12-07 13:42:48</sub> | <sub>2012-12-15 12:10:06</sub> | <sub>35.0</sub>         | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[DROP-Fixed-Income](https://github.com/lakshmiDRIP/DROP-Fixed-Income)</sub>                                       | <sub>NEW</sub>                                                              | <sub>2017-08-10 20:58:18</sub> | <sub>2018-09-26 19:21:02</sub> | <sub>28.0</sub>         | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[woe](https://github.com/boredbird/woe)</sub>                                                                     | <sub>NEW</sub>                                                              | <sub>2017-09-11 07:15:04</sub> | <sub>2018-03-01 10:45:40</sub> | <sub>256.0</sub>        | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[punk.protocol](https://github.com/PunkFinance/punk.protocol)</sub>                                               | <sub>NEW</sub>                                                              | <sub>2021-04-29 08:39:42</sub> | <sub>2021-08-13 11:53:11</sub> | <sub>23.0</sub>         | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[fixed-income](https://github.com/daniel-m-campos/fixed-income)</sub>                                             | <sub>NEW</sub>                                                              | <sub>2017-09-17 05:23:47</sub> | <sub>2020-12-18 01:35:41</sub> | <sub>21.0</sub>         | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[sagemaker-corporate-credit-rating](https://github.com/awslabs/sagemaker-corporate-credit-rating)</sub>           | <sub>NEW</sub>                                                              | <sub>2021-11-12 00:49:14</sub> | <sub>2022-12-20 17:11:03</sub> | <sub>20.0</sub>         | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[Corporate Bonds](https://github.com/ishank011/gs-quantify-bond-prediction)</sub>                                 | <sub>Predicting the buying and selling volume of the corporate bonds.</sub> | <sub>2017-09-27 19:57:13</sub> | <sub>2017-09-27 20:00:29</sub> | <sub>19.0</sub>         | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[pyratings](https://github.com/hsbc/pyratings)</sub>                                                              | <sub>NEW</sub>                                                              | <sub>2022-03-24 14:51:59</sub> | <sub>2024-06-18 07:03:07</sub> | <sub>19.0</sub>         | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |<!-- [PLACEHOLDER_END:fixed_income] -->

## Alternative Finance ([Wiki](https://github.com/firmai/financial-machine-learning/wiki/alternative_finance))
<!-- [PLACEHOLDER_START:alternative_finance] --> 
| <sub>repo</sub>                                                                                                                                                                    | <sub>comment</sub>                                                                                                | <sub>created_at</sub>          | <sub>last_commit</sub>         | <sub>star_count</sub>   | <sub>repo_status</sub>              | <sub>rating</sub>   |
|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:------------------------------------------------------------------------------------------------------------------|:-------------------------------|:-------------------------------|:------------------------|:------------------------------------|:--------------------|
| <sub>[Venture Capital NN](https://github.com/tr7200/National-Culture-and-Venture-Capital-Monitoring)</sub>                                                                         | <sub>Cox-PH neural network predictions for VC/innovations finance research.</sub>                                 | <sub>nan</sub>                 | <sub>nan</sub>                 | <sub>nan</sub>          | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[EDMarketConnector](https://github.com/EDCD/EDMarketConnector)</sub>                                                                                                          | <sub>NEW</sub>                                                                                                    | <sub>2015-06-02 19:17:34</sub> | <sub>2024-09-24 23:28:42</sub> | <sub>988.0</sub>        | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[yahoofinancials](https://github.com/JECSand/yahoofinancials)</sub>                                                                                                           | <sub>NEW</sub>                                                                                                    | <sub>2017-10-22 03:10:57</sub> | <sub>2023-12-17 07:54:07</sub> | <sub>910.0</sub>        | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[Watch Valuation](https://github.com/alporter08/Luxury-Watch-Valuation/blob/master/Luxury-Watch-Valuation.ipynb)</sub>                                                        | <sub>Analysis of luxury watch data to classify whether a certain model is likely to be over-or undervalued.</sub> | <sub>2017-02-08 18:39:29</sub> | <sub>2017-04-27 22:55:55</sub> | <sub>9.0</sub>          | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[Kiva Crowdfunding](https://github.com/CJL89/Kiva-Crowdfunding/blob/master/Kiva%20Crowdfunding.ipynb)</sub>                                                                   | <sub>Exploratory data analysis.</sub>                                                                             | <sub>2018-02-27 16:46:02</sub> | <sub>2019-02-13 00:15:27</sub> | <sub>7.0</sub>          | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[Venture Capital](https://github.com/julian-chan/etothex)</sub>                                                                                                               | <sub>Insight into a new founder to make data-driven investment decisions.</sub>                                   | <sub>2017-12-04 08:59:44</sub> | <sub>2017-12-13 05:35:27</sub> | <sub>7.0</sub>          | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[botupdate](https://github.com/botupdate/botupdate)</sub>                                                                                                                     | <sub>NEW</sub>                                                                                                    | <sub>2019-07-01 20:22:44</sub> | <sub>2020-10-29 02:31:17</sub> | <sub>582.0</sub>        | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[VC OLS](https://github.com/fionawhitefield/venture-capital-ols/blob/master/sec_project.ipynb)</sub>                                                                          | <sub>VC regression.</sub>                                                                                         | <sub>2018-03-29 23:31:13</sub> | <sub>2018-03-29 23:33:19</sub> | <sub>4.0</sub>          | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[awesome-systematic-trading](https://github.com/edarchimbaud/awesome-systematic-trading)</sub>                                                                                | <sub>NEW</sub>                                                                                                    | <sub>2022-02-05 20:48:52</sub> | <sub>2024-08-16 12:06:38</sub> | <sub>3783.0</sub>       | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[pitch_deck](https://github.com/joelparkerhenderson/pitch_deck)</sub>                                                                                                         | <sub>NEW</sub>                                                                                                    | <sub>2016-09-17 01:30:26</sub> | <sub>2024-05-16 16:23:12</sub> | <sub>343.0</sub>        | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[pitch-deck](https://github.com/joelparkerhenderson/pitch-deck)</sub>                                                                                                         | <sub>NEW</sub>                                                                                                    | <sub>2016-09-17 01:30:26</sub> | <sub>2024-05-16 16:23:12</sub> | <sub>343.0</sub>        | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[HomeHarvest](https://github.com/ZacharyHampton/HomeHarvest)</sub>                                                                                                            | <sub>NEW</sub>                                                                                                    | <sub>2023-09-15 19:29:01</sub> | <sub>2024-09-06 22:49:07</sub> | <sub>314.0</sub>        | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[Private Equity](https://github.com/TheVinhLuong102/ChicagoBooth-EntrepreneurialFinancePrivateEquity/blob/master/RightNow%20Technologies/RightNow%20Technologies.ipynb)</sub> | <sub>Valuation models.</sub>                                                                                      | <sub>2016-01-27 21:13:33</sub> | <sub>2016-03-14 20:03:52</sub> | <sub>22.0</sub>         | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[Art Valuation](https://github.com/ahmedhosny/theGreenCanvas/blob/gh-pages/ImageProcessing1210.ipynb)</sub>                                                                   | <sub>Art evaluation analytics.</sub>                                                                              | <sub>2014-12-11 00:25:39</sub> | <sub>2014-12-12 21:25:46</sub> | <sub>19.0</sub>         | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[Blockchain](https://github.com/nud3l/dInvest)</sub>                                                                                                                          | <sub>Repository for distributed autonomous investment banking.</sub>                                              | <sub>2016-09-05 19:12:40</sub> | <sub>2017-04-24 10:48:56</sub> | <sub>18.0</sub>         | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |<!-- [PLACEHOLDER_END:alternative_finance] -->

# Extended Research ([Wiki](https://github.com/firmai/financial-machine-learning/wiki/extended_research))
<!-- [PLACEHOLDER_START:extended_research] --> 
| <sub>repo</sub>                                                                                        | <sub>comment</sub>                                                                          | <sub>created_at</sub>          | <sub>last_commit</sub>         | <sub>star_count</sub>   | <sub>repo_status</sub>              | <sub>rating</sub>   |
|:-------------------------------------------------------------------------------------------------------|:--------------------------------------------------------------------------------------------|:-------------------------------|:-------------------------------|:------------------------|:------------------------------------|:--------------------|
| <sub>[Real Estate Property Fraud](https://github.com/aviroop1/Real_Estate_Property_Fraud)</sub>        | <sub>Unsupervised fraud detection model that can identify likely candidates of fraud.</sub> | <sub>nan</sub>                 | <sub>nan</sub>                 | <sub>nan</sub>          | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[Commodity](https://github.com/felipessalvatore/fin2vec/blob/master/src/Commodity2BR.ipynb)</sub> | <sub>Commodity influence over Brazilian stocks.</sub>                                       | <sub>nan</sub>                 | <sub>nan</sub>                 | <sub>nan</sub>          | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[HFT-Orderbook](https://github.com/Crypto-toolbox/HFT-Orderbook)</sub>                            | <sub>NEW</sub>                                                                              | <sub>2017-07-26 08:42:19</sub> | <sub>2022-02-18 20:01:44</sub> | <sub>991.0</sub>        | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[Awesome-AI-for-cybersecurity](https://github.com/Billy1900/Awesome-AI-for-cybersecurity)</sub>   | <sub>NEW</sub>                                                                              | <sub>2021-09-20 04:44:45</sub> | <sub>2023-10-03 14:25:10</sub> | <sub>98.0</sub>         | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[crypto-database](https://github.com/ivopetiz/crypto-database)</sub>                              | <sub>NEW</sub>                                                                              | <sub>2018-02-22 21:34:11</sub> | <sub>2019-10-04 13:06:18</sub> | <sub>98.0</sub>         | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[Mathematical Finance](https://github.com/Auquan/Tutorials)</sub>                                 | <sub>Notebooks for math and financial tutorials.</sub>                                      | <sub>2017-01-21 11:24:18</sub> | <sub>2020-08-01 17:03:32</sub> | <sub>974.0</sub>        | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[VPIN_HFT](https://github.com/theopenstreet/VPIN_HFT)</sub>                                       | <sub>NEW</sub>                                                                              | <sub>2017-12-12 15:29:33</sub> | <sub>2017-12-12 17:32:54</sub> | <sub>97.0</sub>         | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[freqtrade_bot](https://github.com/michael-fourie/freqtrade_bot)</sub>                            | <sub>NEW</sub>                                                                              | <sub>2020-12-21 00:14:25</sub> | <sub>2021-01-07 19:52:54</sub> | <sub>96.0</sub>         | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[BERT4ETH](https://github.com/git-disl/BERT4ETH)</sub>                                            | <sub>NEW</sub>                                                                              | <sub>2023-02-05 20:36:20</sub> | <sub>2024-06-21 17:45:01</sub> | <sub>96.0</sub>         | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[PythonMatchingEngine](https://github.com/Surbeivol/PythonMatchingEngine)</sub>                   | <sub>NEW</sub>                                                                              | <sub>2019-05-16 12:06:21</sub> | <sub>2021-12-30 10:17:35</sub> | <sub>95.0</sub>         | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[LSTM-FX](https://github.com/AdamTibi/LSTM-FX)</sub>                                              | <sub>NEW</sub>                                                                              | <sub>2020-09-29 21:30:20</sub> | <sub>2020-09-29 23:15:18</sub> | <sub>95.0</sub>         | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[go-quantcup](https://github.com/rdingwall/go-quantcup)</sub>                                     | <sub>NEW</sub>                                                                              | <sub>2015-02-04 10:33:12</sub> | <sub>2015-06-11 12:50:09</sub> | <sub>94.0</sub>         | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[Quant-Developers-Resources](https://github.com/cybergeekgyan/Quant-Developers-Resources)</sub>   | <sub>NEW</sub>                                                                              | <sub>2023-10-16 18:04:31</sub> | <sub>2024-07-28 08:06:18</sub> | <sub>94.0</sub>         | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[FraudDetection-Microservices](https://github.com/melofred/FraudDetection-Microservices)</sub>    | <sub>NEW</sub>                                                                              | <sub>2016-06-08 23:24:21</sub> | <sub>2017-01-18 17:52:01</sub> | <sub>93.0</sub>         | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[HFT-Pairs-Trading](https://github.com/sapphire921/HFT-Pairs-Trading)</sub>                       | <sub>NEW</sub>                                                                              | <sub>2018-05-03 22:36:16</sub> | <sub>2019-02-27 17:41:22</sub> | <sub>93.0</sub>         | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |<!-- [PLACEHOLDER_END:extended_research] -->

# Courses ([Wiki](https://github.com/firmai/financial-machine-learning/wiki/courses))
<!-- [PLACEHOLDER_START:courses] --> 
| <sub>repo</sub>                                                                                                       | <sub>comment</sub>                | <sub>created_at</sub>          | <sub>last_commit</sub>         | <sub>star_count</sub>   | <sub>repo_status</sub>              | <sub>rating</sub>   |
|:----------------------------------------------------------------------------------------------------------------------|:----------------------------------|:-------------------------------|:-------------------------------|:------------------------|:------------------------------------|:--------------------|
| <sub>[mlcourse.ai](https://github.com/Yorko/mlcourse.ai)</sub>                                                        | <sub>NEW</sub>                    | <sub>2017-02-27 08:32:20</sub> | <sub>2024-08-25 08:08:31</sub> | <sub>9695.0</sub>       | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[datascience-box](https://github.com/rstudio-education/datascience-box)</sub>                                    | <sub>NEW</sub>                    | <sub>2017-12-29 22:16:17</sub> | <sub>2024-08-15 22:45:51</sub> | <sub>956.0</sub>        | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[machine-learning-zoomcamp](https://github.com/DataTalksClub/machine-learning-zoomcamp)</sub>                    | <sub>NEW</sub>                    | <sub>2020-04-17 04:29:23</sub> | <sub>2024-09-24 09:02:07</sub> | <sub>9337.0</sub>       | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[datasci_course_materials](https://github.com/uwescience/datasci_course_materials)</sub>                         | <sub>NEW</sub>                    | <sub>2013-04-12 05:54:36</sub> | <sub>2017-03-21 19:21:02</sub> | <sub>918.0</sub>        | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[ml-mipt](https://github.com/girafe-ai/ml-mipt)</sub>                                                            | <sub>NEW</sub>                    | <sub>2022-09-01 16:16:05</sub> | <sub>2022-09-02 08:44:48</sub> | <sub>9.0</sub>          | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[ciml](https://github.com/hal3/ciml)</sub>                                                                       | <sub>NEW</sub>                    | <sub>2015-08-12 19:26:00</sub> | <sub>2017-01-20 16:24:19</sub> | <sub>888.0</sub>        | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[cornell-cs5785-applied-ml](https://github.com/kuleshov/cornell-cs5785-applied-ml)</sub>                         | <sub>NEW</sub>                    | <sub>2021-03-26 06:33:58</sub> | <sub>2021-09-02 00:34:55</sub> | <sub>874.0</sub>        | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[ml-course-msu](https://github.com/esokolov/ml-course-msu)</sub>                                                 | <sub>NEW</sub>                    | <sub>2015-09-11 08:51:24</sub> | <sub>2018-05-07 15:40:56</sub> | <sub>871.0</sub>        | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[Octave](https://github.com/schneems/Octave)</sub>                                                               | <sub>NEW</sub>                    | <sub>2011-10-24 23:50:52</sub> | <sub>2016-07-08 20:45:40</sub> | <sub>824.0</sub>        | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[machine_learning_with_python_jadi](https://github.com/jadijadi/machine_learning_with_python_jadi)</sub>         | <sub>NEW</sub>                    | <sub>2021-09-20 08:19:48</sub> | <sub>2024-08-16 05:12:53</sub> | <sub>801.0</sub>        | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[DAT4](https://github.com/justmarkham/DAT4)</sub>                                                                | <sub>NEW</sub>                    | <sub>2014-12-10 19:38:29</sub> | <sub>2021-02-15 23:26:27</sub> | <sub>794.0</sub>        | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[deploying-machine-learning-models](https://github.com/trainindata/deploying-machine-learning-models)</sub>      | <sub>NEW</sub>                    | <sub>2019-01-09 20:30:46</sub> | <sub>2023-04-19 17:15:38</sub> | <sub>790.0</sub>        | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[Algo Trading](https://github.com/JCreeks/Machine-Learning-in-Finance/tree/master/0_Intro_to_Algo_Trading)</sub> | <sub>Intro to algo trading.</sub> | <sub>2017-10-29 20:34:54</sub> | <sub>2019-01-22 06:56:08</sub> | <sub>79.0</sub>         | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[master](https://github.com/ML-course/master)</sub>                                                              | <sub>NEW</sub>                    | <sub>2017-02-04 22:44:35</sub> | <sub>2024-04-01 10:09:20</sub> | <sub>784.0</sub>        | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[DataScienceSpCourseNotes](https://github.com/sux13/DataScienceSpCourseNotes)</sub>                              | <sub>NEW</sub>                    | <sub>2015-03-09 00:51:32</sub> | <sub>2016-02-16 06:12:54</sub> | <sub>764.0</sub>        | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |<!-- [PLACEHOLDER_END:courses] -->

# Data ([Wiki](https://github.com/firmai/financial-machine-learning/wiki/data))
<!-- [PLACEHOLDER_START:data] --> 
| <sub>repo</sub>                                                                                    | <sub>comment</sub>   | <sub>created_at</sub>          | <sub>last_commit</sub>         | <sub>star_count</sub>   | <sub>repo_status</sub>              | <sub>rating</sub>   |
|:---------------------------------------------------------------------------------------------------|:---------------------|:-------------------------------|:-------------------------------|:------------------------|:------------------------------------|:--------------------|
| <sub>[Tools-termux](https://github.com/Taoviqinvicible/Tools-termux)</sub>                         | <sub>NEW</sub>       | <sub>nan</sub>                 | <sub>nan</sub>                 | <sub>nan</sub>          | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[Rating Industries](http://www.ratingshistory.info/)</sub>                                    | <sub>nan</sub>       | <sub>nan</sub>                 | <sub>nan</sub>                 | <sub>nan</sub>          | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[http://finance.yahoo.com/](http://finance.yahoo.com/)</sub>                                  | <sub>nan</sub>       | <sub>nan</sub>                 | <sub>nan</sub>                 | <sub>nan</sub>          | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[https://fred.stlouisfed.org/](https://fred.stlouisfed.org/)</sub>                            | <sub>nan</sub>       | <sub>nan</sub>                 | <sub>nan</sub>                 | <sub>nan</sub>          | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[https://stooq.com](https://stooq.com)</sub>                                                  | <sub>nan</sub>       | <sub>nan</sub>                 | <sub>nan</sub>                 | <sub>nan</sub>          | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[Capital Markets Data](https://www.capitalmarketsdata.com/)</sub>                             | <sub>nan</sub>       | <sub>nan</sub>                 | <sub>nan</sub>                 | <sub>nan</sub>          | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[Financial Corporate](http://raw.rutgers.edu/Corporate%20Financial%20Data.html)</sub>         | <sub>nan</sub>       | <sub>nan</sub>                 | <sub>nan</sub>                 | <sub>nan</sub>          | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[IRS](http://social-metrics.org/sox/)</sub>                                                   | <sub>nan</sub>       | <sub>nan</sub>                 | <sub>nan</sub>                 | <sub>nan</sub>          | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[Non-financial Corporate](http://raw.rutgers.edu/Non-Financial%20Corporate%20Data.html)</sub> | <sub>nan</sub>       | <sub>nan</sub>                 | <sub>nan</sub>                 | <sub>nan</sub>          | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[redesigned-pancake](https://github.com/Sfedfcv/redesigned-pancake)</sub>                     | <sub>NEW</sub>       | <sub>nan</sub>                 | <sub>nan</sub>                 | <sub>nan</sub>          | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[PyPOTS](https://github.com/WenjieDu/PyPOTS)</sub>                                            | <sub>NEW</sub>       | <sub>2022-03-29 14:22:47</sub> | <sub>2024-09-26 17:17:28</sub> | <sub>997.0</sub>        | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[aeon](https://github.com/aeon-toolkit/aeon)</sub>                                            | <sub>NEW</sub>       | <sub>2022-12-20 12:44:09</sub> | <sub>2024-09-27 18:03:06</sub> | <sub>976.0</sub>        | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[hypercube](https://github.com/hypercube-lab/hypercube)</sub>                                 | <sub>NEW</sub>       | <sub>2021-09-08 06:47:07</sub> | <sub>2021-10-14 13:44:17</sub> | <sub>975.0</sub>        | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[Deedle](https://github.com/fslaborg/Deedle)</sub>                                            | <sub>NEW</sub>       | <sub>2013-09-17 18:53:34</sub> | <sub>2023-01-17 21:18:55</sub> | <sub>937.0</sub>        | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[BitcoinExchangeFH](https://github.com/BitcoinExchangeFH/BitcoinExchangeFH)</sub>             | <sub>NEW</sub>       | <sub>2016-10-24 13:30:31</sub> | <sub>2022-12-28 17:07:41</sub> | <sub>936.0</sub>        | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |<!-- [PLACEHOLDER_END:data] -->

# Colleges, Centers and Departments ([Wiki](https://github.com/firmai/financial-machine-learning/wiki/colleges_centers_and_departments))
<!-- [PLACEHOLDER_START:colleges_centers_and_departments] --> 
| <sub>repo</sub>                                                                                                                                            | <sub>comment</sub>                                                         | <sub>created_at</sub>   | <sub>last_commit</sub>   | <sub>star_count</sub>   | <sub>repo_status</sub>        | <sub>rating</sub>   |
|:-----------------------------------------------------------------------------------------------------------------------------------------------------------|:---------------------------------------------------------------------------|:------------------------|:-------------------------|:------------------------|:------------------------------|:--------------------|
| <sub>[NYU FRE](https://engineering.nyu.edu/academics/departments/finance-and-risk-engineering)</sub>                                                       | <sub>Finance and Risk Engineering (NYU Tandon)</sub>                       | <sub>nan</sub>          | <sub>nan</sub>           | <sub>nan</sub>          | <sub>:heavy_check_mark:</sub> | <sub></sub>         |
| <sub>[Oxford Man](https://www.oxford-man.ox.ac.uk/)</sub>                                                                                                  | <sub>Oxford-Man Institute of Quantitative Finance</sub>                    | <sub>nan</sub>          | <sub>nan</sub>           | <sub>nan</sub>          | <sub>:heavy_check_mark:</sub> | <sub></sub>         |
| <sub>[Berkeley Lab CIFT](https://cs.lbl.gov/news-media/news/news-archive/2010/berkeley-lab-launches-new-center-for-innovative-financial-technology/)</sub> | <sub>nan</sub>                                                             | <sub>nan</sub>          | <sub>nan</sub>           | <sub>nan</sub>          | <sub>:heavy_check_mark:</sub> | <sub></sub>         |
| <sub>[Cornell University](https://www.cornell.edu/)</sub>                                                                                                  | <sub>nan</sub>                                                             | <sub>nan</sub>          | <sub>nan</sub>           | <sub>nan</sub>          | <sub>:heavy_check_mark:</sub> | <sub></sub>         |
| <sub>[NYU Courant](https://cims.nyu.edu/)</sub>                                                                                                            | <sub>Courant Institute of Mathematical Sciences, New York University</sub> | <sub>nan</sub>          | <sub>nan</sub>           | <sub>nan</sub>          | <sub>:heavy_check_mark:</sub> | <sub></sub>         |
| <sub>[Stanford Advanced Financial Technologies](https://fintech.stanford.edu/)</sub>                                                                       | <sub>Stanford Advanced Financial Technologies Laboratory</sub>             | <sub>nan</sub>          | <sub>nan</sub>           | <sub>nan</sub>          | <sub>:heavy_check_mark:</sub> | <sub></sub>         |<!-- [PLACEHOLDER_END:colleges_centers_and_departments] -->


================================================
FILE: conf.py
================================================
import os
PROJECT_ROOT_DIR = os.path.dirname(os.path.abspath(__file__))


================================================
FILE: generated_wiki/__init__.py
================================================


================================================
FILE: generated_wiki/alternative_finance.md
================================================
| <sub>repo</sub>                                                                                                                                                                    | <sub>comment</sub>                                                                                                | <sub>created_at</sub>          | <sub>last_commit</sub>         | <sub>star_count</sub>   | <sub>repo_status</sub>              | <sub>rating</sub>   |
|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:------------------------------------------------------------------------------------------------------------------|:-------------------------------|:-------------------------------|:------------------------|:------------------------------------|:--------------------|
| <sub>[Venture Capital NN](https://github.com/tr7200/National-Culture-and-Venture-Capital-Monitoring)</sub>                                                                         | <sub>Cox-PH neural network predictions for VC/innovations finance research.</sub>                                 | <sub>nan</sub>                 | <sub>nan</sub>                 | <sub>nan</sub>          | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[EDMarketConnector](https://github.com/EDCD/EDMarketConnector)</sub>                                                                                                          | <sub>NEW</sub>                                                                                                    | <sub>2015-06-02 19:17:34</sub> | <sub>2024-09-24 23:28:42</sub> | <sub>988.0</sub>        | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[yahoofinancials](https://github.com/JECSand/yahoofinancials)</sub>                                                                                                           | <sub>NEW</sub>                                                                                                    | <sub>2017-10-22 03:10:57</sub> | <sub>2023-12-17 07:54:07</sub> | <sub>910.0</sub>        | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[Watch Valuation](https://github.com/alporter08/Luxury-Watch-Valuation/blob/master/Luxury-Watch-Valuation.ipynb)</sub>                                                        | <sub>Analysis of luxury watch data to classify whether a certain model is likely to be over-or undervalued.</sub> | <sub>2017-02-08 18:39:29</sub> | <sub>2017-04-27 22:55:55</sub> | <sub>9.0</sub>          | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[Kiva Crowdfunding](https://github.com/CJL89/Kiva-Crowdfunding/blob/master/Kiva%20Crowdfunding.ipynb)</sub>                                                                   | <sub>Exploratory data analysis.</sub>                                                                             | <sub>2018-02-27 16:46:02</sub> | <sub>2019-02-13 00:15:27</sub> | <sub>7.0</sub>          | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[Venture Capital](https://github.com/julian-chan/etothex)</sub>                                                                                                               | <sub>Insight into a new founder to make data-driven investment decisions.</sub>                                   | <sub>2017-12-04 08:59:44</sub> | <sub>2017-12-13 05:35:27</sub> | <sub>7.0</sub>          | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[botupdate](https://github.com/botupdate/botupdate)</sub>                                                                                                                     | <sub>NEW</sub>                                                                                                    | <sub>2019-07-01 20:22:44</sub> | <sub>2020-10-29 02:31:17</sub> | <sub>582.0</sub>        | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[VC OLS](https://github.com/fionawhitefield/venture-capital-ols/blob/master/sec_project.ipynb)</sub>                                                                          | <sub>VC regression.</sub>                                                                                         | <sub>2018-03-29 23:31:13</sub> | <sub>2018-03-29 23:33:19</sub> | <sub>4.0</sub>          | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[awesome-systematic-trading](https://github.com/edarchimbaud/awesome-systematic-trading)</sub>                                                                                | <sub>NEW</sub>                                                                                                    | <sub>2022-02-05 20:48:52</sub> | <sub>2024-08-16 12:06:38</sub> | <sub>3783.0</sub>       | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[pitch_deck](https://github.com/joelparkerhenderson/pitch_deck)</sub>                                                                                                         | <sub>NEW</sub>                                                                                                    | <sub>2016-09-17 01:30:26</sub> | <sub>2024-05-16 16:23:12</sub> | <sub>343.0</sub>        | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[pitch-deck](https://github.com/joelparkerhenderson/pitch-deck)</sub>                                                                                                         | <sub>NEW</sub>                                                                                                    | <sub>2016-09-17 01:30:26</sub> | <sub>2024-05-16 16:23:12</sub> | <sub>343.0</sub>        | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[HomeHarvest](https://github.com/ZacharyHampton/HomeHarvest)</sub>                                                                                                            | <sub>NEW</sub>                                                                                                    | <sub>2023-09-15 19:29:01</sub> | <sub>2024-09-06 22:49:07</sub> | <sub>314.0</sub>        | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[Private Equity](https://github.com/TheVinhLuong102/ChicagoBooth-EntrepreneurialFinancePrivateEquity/blob/master/RightNow%20Technologies/RightNow%20Technologies.ipynb)</sub> | <sub>Valuation models.</sub>                                                                                      | <sub>2016-01-27 21:13:33</sub> | <sub>2016-03-14 20:03:52</sub> | <sub>22.0</sub>         | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[Art Valuation](https://github.com/ahmedhosny/theGreenCanvas/blob/gh-pages/ImageProcessing1210.ipynb)</sub>                                                                   | <sub>Art evaluation analytics.</sub>                                                                              | <sub>2014-12-11 00:25:39</sub> | <sub>2014-12-12 21:25:46</sub> | <sub>19.0</sub>         | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[Blockchain](https://github.com/nud3l/dInvest)</sub>                                                                                                                          | <sub>Repository for distributed autonomous investment banking.</sub>                                              | <sub>2016-09-05 19:12:40</sub> | <sub>2017-04-24 10:48:56</sub> | <sub>18.0</sub>         | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[realtime-forex-crypto-stock-tick-finance-websocket-api](https://github.com/alltick/realtime-forex-crypto-stock-tick-finance-websocket-api)</sub>                             | <sub>NEW</sub>                                                                                                    | <sub>2024-03-14 06:07:55</sub> | <sub>2024-09-18 10:16:09</sub> | <sub>147.0</sub>        | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[cot_reports](https://github.com/NDelventhal/cot_reports)</sub>                                                                                                               | <sub>NEW</sub>                                                                                                    | <sub>2020-11-16 19:16:18</sub> | <sub>2023-12-29 23:14:53</sub> | <sub>120.0</sub>        | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[notebooks](https://github.com/tradingeconomics/notebooks)</sub>                                                                                                              | <sub>NEW</sub>                                                                                                    | <sub>2020-11-13 13:39:37</sub> | <sub>2023-07-20 12:27:16</sub> | <sub>104.0</sub>        | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |

================================================
FILE: generated_wiki/colleges_centers_and_departments.md
================================================
| <sub>repo</sub>                                                                                                                                            | <sub>comment</sub>                                                         | <sub>created_at</sub>   | <sub>last_commit</sub>   | <sub>star_count</sub>   | <sub>repo_status</sub>        | <sub>rating</sub>   |
|:-----------------------------------------------------------------------------------------------------------------------------------------------------------|:---------------------------------------------------------------------------|:------------------------|:-------------------------|:------------------------|:------------------------------|:--------------------|
| <sub>[NYU FRE](https://engineering.nyu.edu/academics/departments/finance-and-risk-engineering)</sub>                                                       | <sub>Finance and Risk Engineering (NYU Tandon)</sub>                       | <sub>nan</sub>          | <sub>nan</sub>           | <sub>nan</sub>          | <sub>:heavy_check_mark:</sub> | <sub></sub>         |
| <sub>[Oxford Man](https://www.oxford-man.ox.ac.uk/)</sub>                                                                                                  | <sub>Oxford-Man Institute of Quantitative Finance</sub>                    | <sub>nan</sub>          | <sub>nan</sub>           | <sub>nan</sub>          | <sub>:heavy_check_mark:</sub> | <sub></sub>         |
| <sub>[Berkeley Lab CIFT](https://cs.lbl.gov/news-media/news/news-archive/2010/berkeley-lab-launches-new-center-for-innovative-financial-technology/)</sub> | <sub>nan</sub>                                                             | <sub>nan</sub>          | <sub>nan</sub>           | <sub>nan</sub>          | <sub>:heavy_check_mark:</sub> | <sub></sub>         |
| <sub>[Cornell University](https://www.cornell.edu/)</sub>                                                                                                  | <sub>nan</sub>                                                             | <sub>nan</sub>          | <sub>nan</sub>           | <sub>nan</sub>          | <sub>:heavy_check_mark:</sub> | <sub></sub>         |
| <sub>[NYU Courant](https://cims.nyu.edu/)</sub>                                                                                                            | <sub>Courant Institute of Mathematical Sciences, New York University</sub> | <sub>nan</sub>          | <sub>nan</sub>           | <sub>nan</sub>          | <sub>:heavy_check_mark:</sub> | <sub></sub>         |
| <sub>[Stanford Advanced Financial Technologies](https://fintech.stanford.edu/)</sub>                                                                       | <sub>Stanford Advanced Financial Technologies Laboratory</sub>             | <sub>nan</sub>          | <sub>nan</sub>           | <sub>nan</sub>          | <sub>:heavy_check_mark:</sub> | <sub></sub>         |

================================================
FILE: generated_wiki/courses.md
================================================
| <sub>repo</sub>                                                                                                                                                                     | <sub>comment</sub>                                                                                             | <sub>created_at</sub>          | <sub>last_commit</sub>         | <sub>star_count</sub>   | <sub>repo_status</sub>              | <sub>rating</sub>   |
|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:---------------------------------------------------------------------------------------------------------------|:-------------------------------|:-------------------------------|:------------------------|:------------------------------------|:--------------------|
| <sub>[mlcourse.ai](https://github.com/Yorko/mlcourse.ai)</sub>                                                                                                                      | <sub>NEW</sub>                                                                                                 | <sub>2017-02-27 08:32:20</sub> | <sub>2024-08-25 08:08:31</sub> | <sub>9695.0</sub>       | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[datascience-box](https://github.com/rstudio-education/datascience-box)</sub>                                                                                                  | <sub>NEW</sub>                                                                                                 | <sub>2017-12-29 22:16:17</sub> | <sub>2024-08-15 22:45:51</sub> | <sub>956.0</sub>        | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[machine-learning-zoomcamp](https://github.com/DataTalksClub/machine-learning-zoomcamp)</sub>                                                                                  | <sub>NEW</sub>                                                                                                 | <sub>2020-04-17 04:29:23</sub> | <sub>2024-09-24 09:02:07</sub> | <sub>9337.0</sub>       | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[datasci_course_materials](https://github.com/uwescience/datasci_course_materials)</sub>                                                                                       | <sub>NEW</sub>                                                                                                 | <sub>2013-04-12 05:54:36</sub> | <sub>2017-03-21 19:21:02</sub> | <sub>918.0</sub>        | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[ml-mipt](https://github.com/girafe-ai/ml-mipt)</sub>                                                                                                                          | <sub>NEW</sub>                                                                                                 | <sub>2022-09-01 16:16:05</sub> | <sub>2022-09-02 08:44:48</sub> | <sub>9.0</sub>          | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[ciml](https://github.com/hal3/ciml)</sub>                                                                                                                                     | <sub>NEW</sub>                                                                                                 | <sub>2015-08-12 19:26:00</sub> | <sub>2017-01-20 16:24:19</sub> | <sub>888.0</sub>        | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[cornell-cs5785-applied-ml](https://github.com/kuleshov/cornell-cs5785-applied-ml)</sub>                                                                                       | <sub>NEW</sub>                                                                                                 | <sub>2021-03-26 06:33:58</sub> | <sub>2021-09-02 00:34:55</sub> | <sub>874.0</sub>        | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[ml-course-msu](https://github.com/esokolov/ml-course-msu)</sub>                                                                                                               | <sub>NEW</sub>                                                                                                 | <sub>2015-09-11 08:51:24</sub> | <sub>2018-05-07 15:40:56</sub> | <sub>871.0</sub>        | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[Octave](https://github.com/schneems/Octave)</sub>                                                                                                                             | <sub>NEW</sub>                                                                                                 | <sub>2011-10-24 23:50:52</sub> | <sub>2016-07-08 20:45:40</sub> | <sub>824.0</sub>        | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[machine_learning_with_python_jadi](https://github.com/jadijadi/machine_learning_with_python_jadi)</sub>                                                                       | <sub>NEW</sub>                                                                                                 | <sub>2021-09-20 08:19:48</sub> | <sub>2024-08-16 05:12:53</sub> | <sub>801.0</sub>        | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[DAT4](https://github.com/justmarkham/DAT4)</sub>                                                                                                                              | <sub>NEW</sub>                                                                                                 | <sub>2014-12-10 19:38:29</sub> | <sub>2021-02-15 23:26:27</sub> | <sub>794.0</sub>        | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[deploying-machine-learning-models](https://github.com/trainindata/deploying-machine-learning-models)</sub>                                                                    | <sub>NEW</sub>                                                                                                 | <sub>2019-01-09 20:30:46</sub> | <sub>2023-04-19 17:15:38</sub> | <sub>790.0</sub>        | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[Algo Trading](https://github.com/JCreeks/Machine-Learning-in-Finance/tree/master/0_Intro_to_Algo_Trading)</sub>                                                               | <sub>Intro to algo trading.</sub>                                                                              | <sub>2017-10-29 20:34:54</sub> | <sub>2019-01-22 06:56:08</sub> | <sub>79.0</sub>         | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[master](https://github.com/ML-course/master)</sub>                                                                                                                            | <sub>NEW</sub>                                                                                                 | <sub>2017-02-04 22:44:35</sub> | <sub>2024-04-01 10:09:20</sub> | <sub>784.0</sub>        | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[DataScienceSpCourseNotes](https://github.com/sux13/DataScienceSpCourseNotes)</sub>                                                                                            | <sub>NEW</sub>                                                                                                 | <sub>2015-03-09 00:51:32</sub> | <sub>2016-02-16 06:12:54</sub> | <sub>764.0</sub>        | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[DataScienceCourse](https://github.com/briandalessandro/DataScienceCourse)</sub>                                                                                               | <sub>NEW</sub>                                                                                                 | <sub>2014-10-01 08:45:51</sub> | <sub>2020-12-20 13:03:56</sub> | <sub>751.0</sub>        | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[causalML](https://github.com/altdeep/causalML)</sub>                                                                                                                          | <sub>NEW</sub>                                                                                                 | <sub>2018-12-17 05:22:47</sub> | <sub>2024-07-28 18:22:15</sub> | <sub>726.0</sub>        | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[machine-learning-course](https://github.com/instillai/machine-learning-course)</sub>                                                                                          | <sub>NEW</sub>                                                                                                 | <sub>2019-02-15 00:23:19</sub> | <sub>2020-04-21 03:19:12</sub> | <sub>7012.0</sub>       | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[stat479-machine-learning-fs19](https://github.com/rasbt/stat479-machine-learning-fs19)</sub>                                                                                  | <sub>NEW</sub>                                                                                                 | <sub>2019-08-07 07:36:20</sub> | <sub>2020-11-28 00:04:07</sub> | <sub>697.0</sub>        | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[python_ka_chilla2023](https://github.com/AammarTufail/python_ka_chilla2023)</sub>                                                                                             | <sub>NEW</sub>                                                                                                 | <sub>2022-12-29 21:05:56</sub> | <sub>2023-02-21 22:22:08</sub> | <sub>680.0</sub>        | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[ML Specialisation](https://github.com/Ahmed0028/Machine-Learning-and-Reinforcement-Learning-in-Finance-Specialization)</sub>                                                  | <sub>Machine Learning in Finance.</sub>                                                                        | <sub>2019-01-24 02:55:01</sub> | <sub>2020-01-03 21:54:16</sub> | <sub>67.0</sub>         | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[DAT3](https://github.com/justmarkham/DAT3)</sub>                                                                                                                              | <sub>NEW</sub>                                                                                                 | <sub>2014-09-18 20:30:19</sub> | <sub>2020-05-19 09:21:02</sub> | <sub>659.0</sub>        | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[competitive-data-science](https://github.com/hse-aml/competitive-data-science)</sub>                                                                                          | <sub>NEW</sub>                                                                                                 | <sub>2017-10-28 14:56:44</sub> | <sub>2020-06-13 13:44:26</sub> | <sub>647.0</sub>        | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[DP100](https://github.com/MicrosoftLearning/DP100)</sub>                                                                                                                      | <sub>NEW</sub>                                                                                                 | <sub>2020-01-06 20:38:41</sub> | <sub>2020-12-30 17:22:42</sub> | <sub>635.0</sub>        | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[ML-Course-Notes](https://github.com/dair-ai/ML-Course-Notes)</sub>                                                                                                            | <sub>NEW</sub>                                                                                                 | <sub>2022-03-17 11:18:50</sub> | <sub>2023-02-13 03:38:54</sub> | <sub>6005.0</sub>       | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[dtu_mlops](https://github.com/SkafteNicki/dtu_mlops)</sub>                                                                                                                    | <sub>NEW</sub>                                                                                                 | <sub>2021-04-07 09:27:30</sub> | <sub>2024-08-09 09:10:24</sub> | <sub>574.0</sub>        | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[GML2023](https://github.com/xbresson/GML2023)</sub>                                                                                                                           | <sub>NEW</sub>                                                                                                 | <sub>2024-02-12 01:05:08</sub> | <sub>2024-08-27 06:06:36</sub> | <sub>572.0</sub>        | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[mlcourse](https://github.com/davidrosenberg/mlcourse)</sub>                                                                                                                   | <sub>NEW</sub>                                                                                                 | <sub>2015-10-11 22:18:25</sub> | <sub>2023-11-02 21:29:07</sub> | <sub>567.0</sub>        | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[course-resources-ml-with-experts-budgets](https://github.com/datacamp/course-resources-ml-with-experts-budgets)</sub>                                                         | <sub>NEW</sub>                                                                                                 | <sub>2017-03-02 13:10:27</sub> | <sub>2017-12-14 20:46:54</sub> | <sub>558.0</sub>        | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[Artificial-Intelligence-and-Machine-Learning](https://github.com/emilmont/Artificial-Intelligence-and-Machine-Learning)</sub>                                                 | <sub>NEW</sub>                                                                                                 | <sub>2011-10-16 22:51:06</sub> | <sub>2013-07-20 18:21:51</sub> | <sub>545.0</sub>        | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[serverless-ml-course](https://github.com/featurestoreorg/serverless-ml-course)</sub>                                                                                          | <sub>NEW</sub>                                                                                                 | <sub>2022-09-01 14:09:52</sub> | <sub>2024-09-24 20:48:47</sub> | <sub>529.0</sub>        | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[Stanford-Machine-Learning-Course](https://github.com/zhouxc/Stanford-Machine-Learning-Course)</sub>                                                                           | <sub>NEW</sub>                                                                                                 | <sub>2011-12-25 10:00:48</sub> | <sub>2011-12-25 10:01:12</sub> | <sub>527.0</sub>        | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[geospatialdatascience](https://github.com/mszell/geospatialdatascience)</sub>                                                                                                 | <sub>NEW</sub>                                                                                                 | <sub>2022-05-14 12:59:52</sub> | <sub>2022-11-02 08:27:01</sub> | <sub>515.0</sub>        | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[DataScience](https://github.com/JuliaAcademy/DataScience)</sub>                                                                                                               | <sub>NEW</sub>                                                                                                 | <sub>2020-05-21 01:26:52</sub> | <sub>2022-10-01 13:34:26</sub> | <sub>490.0</sub>        | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[stat479-machine-learning-fs18](https://github.com/rasbt/stat479-machine-learning-fs18)</sub>                                                                                  | <sub>NEW</sub>                                                                                                 | <sub>2018-09-06 00:30:56</sub> | <sub>2018-12-20 23:45:13</sub> | <sub>489.0</sub>        | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[Quant-Finance-Resources](https://github.com/PyPatel/Quant-Finance-Resources)</sub>                                                                                            | <sub>NEW</sub>                                                                                                 | <sub>2019-08-12 15:19:22</sub> | <sub>2021-09-13 10:13:59</sub> | <sub>487.0</sub>        | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[Coursera-Stanford-ML-Python](https://github.com/mstampfer/Coursera-Stanford-ML-Python)</sub>                                                                                  | <sub>NEW</sub>                                                                                                 | <sub>2015-10-28 19:51:00</sub> | <sub>2016-09-02 00:21:30</sub> | <sub>444.0</sub>        | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[awesome-full-stack-machine-courses](https://github.com/leehanchung/awesome-full-stack-machine-courses)</sub>                                                                  | <sub>NEW</sub>                                                                                                 | <sub>2019-10-31 19:26:14</sub> | <sub>2023-09-02 01:23:09</sub> | <sub>427.0</sub>        | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[coursera-machine-learning-engineering-for-prod-mlops-specialization](https://github.com/amanchadha/coursera-machine-learning-engineering-for-prod-mlops-specialization)</sub> | <sub>NEW</sub>                                                                                                 | <sub>2021-06-22 04:46:37</sub> | <sub>2023-06-30 05:03:32</sub> | <sub>426.0</sub>        | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[Introduction-to-Machine-Learning](https://github.com/codeheroku/Introduction-to-Machine-Learning)</sub>                                                                       | <sub>NEW</sub>                                                                                                 | <sub>2019-02-09 12:07:52</sub> | <sub>2020-11-28 08:44:08</sub> | <sub>426.0</sub>        | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[Artificial-Intelligence-And-Data-Science-Pro](https://github.com/pranavanand24/Artificial-Intelligence-And-Data-Science-Pro)</sub>                                            | <sub>NEW</sub>                                                                                                 | <sub>2020-05-12 07:34:21</sub> | <sub>2023-01-29 11:51:23</sub> | <sub>422.0</sub>        | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[courses](https://github.com/DataScienceSpecialization/courses)</sub>                                                                                                          | <sub>NEW</sub>                                                                                                 | <sub>2014-01-21 10:22:57</sub> | <sub>2016-03-16 12:13:44</sub> | <sub>4050.0</sub>       | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[TradingView-neural-networks-Learning](https://github.com/darkness337/TradingView-neural-networks-Learning)</sub>                                                              | <sub>NEW</sub>                                                                                                 | <sub>2024-02-22 17:17:37</sub> | <sub>2024-02-24 16:57:13</sub> | <sub>405.0</sub>        | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[Basic Derivatives](https://github.com/SeanMcOwen/FinanceAndPython.com-Derivatives)</sub>                                                                                      | <sub>Basic forward contracts and hedging.</sub>                                                                | <sub>2017-08-24 00:11:37</sub> | <sub>2017-10-13 01:32:23</sub> | <sub>4.0</sub>          | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[machine-learning-resources](https://github.com/datascienceid/machine-learning-resources)</sub>                                                                                | <sub>NEW</sub>                                                                                                 | <sub>2018-04-09 15:10:08</sub> | <sub>2019-07-30 14:25:27</sub> | <sub>396.0</sub>        | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[Online-Courses-Learning](https://github.com/MrinmoiHossain/Online-Courses-Learning)</sub>                                                                                     | <sub>NEW</sub>                                                                                                 | <sub>2018-08-12 18:52:29</sub> | <sub>2019-07-14 21:07:56</sub> | <sub>391.0</sub>        | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[machine-learning-programming-assignments-coursera-andrew-ng](https://github.com/AvaisP/machine-learning-programming-assignments-coursera-andrew-ng)</sub>                     | <sub>NEW</sub>                                                                                                 | <sub>2016-08-20 18:05:22</sub> | <sub>2016-09-05 19:14:41</sub> | <sub>389.0</sub>        | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[MTH594_MachineLearning](https://github.com/diefimov/MTH594_MachineLearning)</sub>                                                                                             | <sub>NEW</sub>                                                                                                 | <sub>2016-03-09 07:35:19</sub> | <sub>2017-03-31 21:46:26</sub> | <sub>383.0</sub>        | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[stanford-CS229](https://github.com/ccombier/stanford-CS229)</sub>                                                                                                             | <sub>NEW</sub>                                                                                                 | <sub>2018-07-30 20:19:32</sub> | <sub>2018-09-10 19:03:06</sub> | <sub>380.0</sub>        | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[Computational-Finance-Course](https://github.com/LechGrzelak/Computational-Finance-Course)</sub>                                                                              | <sub>NEW</sub>                                                                                                 | <sub>2021-02-20 16:09:03</sub> | <sub>2024-03-01 11:58:38</sub> | <sub>369.0</sub>        | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[ml-workspace](https://github.com/AdicherlaVenkataSai/ml-workspace)</sub>                                                                                                      | <sub>NEW</sub>                                                                                                 | <sub>2020-07-10 06:38:10</sub> | <sub>2021-09-03 07:21:14</sub> | <sub>369.0</sub>        | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[AdvancedML](https://github.com/sjhwang82/AdvancedML)</sub>                                                                                                                    | <sub>NEW</sub>                                                                                                 | <sub>2019-02-22 09:15:04</sub> | <sub>2022-11-25 10:53:47</sub> | <sub>366.0</sub>        | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[feature-engineering-for-machine-learning](https://github.com/solegalli/feature-engineering-for-machine-learning)</sub>                                                        | <sub>NEW</sub>                                                                                                 | <sub>2019-05-01 08:05:42</sub> | <sub>2023-12-05 12:07:06</sub> | <sub>366.0</sub>        | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[MLOps-Specialization-Notes](https://github.com/kennethleungty/MLOps-Specialization-Notes)</sub>                                                                               | <sub>NEW</sub>                                                                                                 | <sub>2021-07-11 14:20:24</sub> | <sub>2023-05-17 16:28:29</sub> | <sub>351.0</sub>        | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[msds621](https://github.com/parrt/msds621)</sub>                                                                                                                              | <sub>NEW</sub>                                                                                                 | <sub>2019-07-01 18:21:25</sub> | <sub>2021-12-07 19:51:49</sub> | <sub>348.0</sub>        | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[machine-learning-notebooks](https://github.com/krasserm/machine-learning-notebooks)</sub>                                                                                     | <sub>NEW</sub>                                                                                                 | <sub>2017-07-24 10:21:05</sub> | <sub>2020-09-07 12:48:43</sub> | <sub>341.0</sub>        | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[machine-learning-online-2018](https://github.com/coding-blocks-archives/machine-learning-online-2018)</sub>                                                                   | <sub>NEW</sub>                                                                                                 | <sub>2018-07-18 04:24:58</sub> | <sub>2020-07-02 09:24:40</sub> | <sub>340.0</sub>        | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[ai-developer-resources](https://github.com/duncantmiller/ai-developer-resources)</sub>                                                                                        | <sub>NEW</sub>                                                                                                 | <sub>2023-12-04 17:31:24</sub> | <sub>2024-05-09 04:24:25</sub> | <sub>332.0</sub>        | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[python-seminar](https://github.com/profjsb/python-seminar)</sub>                                                                                                              | <sub>NEW</sub>                                                                                                 | <sub>2012-08-23 03:30:01</sub> | <sub>2022-04-25 22:56:48</sub> | <sub>325.0</sub>        | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[datacamp](https://github.com/ozlerhakan/datacamp)</sub>                                                                                                                       | <sub>NEW</sub>                                                                                                 | <sub>2018-07-20 09:19:43</sub> | <sub>2024-04-21 08:17:00</sub> | <sub>322.0</sub>        | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[2014](https://github.com/cs109/2014)</sub>                                                                                                                                    | <sub>NEW</sub>                                                                                                 | <sub>2014-07-21 22:46:20</sub> | <sub>2014-12-17 14:37:02</sub> | <sub>318.0</sub>        | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[Machine-Learning-by-Andrew-Ng-in-Python](https://github.com/Benlau93/Machine-Learning-by-Andrew-Ng-in-Python)</sub>                                                           | <sub>NEW</sub>                                                                                                 | <sub>2018-12-06 02:20:59</sub> | <sub>2019-01-11 04:24:52</sub> | <sub>311.0</sub>        | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[coursera-deep-learning-specialization](https://github.com/amanchadha/coursera-deep-learning-specialization)</sub>                                                             | <sub>NEW</sub>                                                                                                 | <sub>2020-06-24 05:59:01</sub> | <sub>2024-04-13 01:45:25</sub> | <sub>3047.0</sub>       | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[Handson Python for Finance](https://github.com/PacktPublishing/Hands-on-Python-for-Finance)</sub>                                                                             | <sub>Hands-on Python for Finance published by Packt.</sub>                                                     | <sub>2018-08-20 14:10:37</sub> | <sub>2023-01-30 09:07:24</sub> | <sub>304.0</sub>        | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[PyMLSlides](https://github.com/dmitriydligach/PyMLSlides)</sub>                                                                                                               | <sub>NEW</sub>                                                                                                 | <sub>2017-06-05 13:59:15</sub> | <sub>2021-10-07 17:34:18</sub> | <sub>303.0</sub>        | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[ML_Process_Course](https://github.com/PlayingNumbers/ML_Process_Course)</sub>                                                                                                 | <sub>NEW</sub>                                                                                                 | <sub>2022-06-30 22:04:48</sub> | <sub>2023-06-21 18:39:45</sub> | <sub>297.0</sub>        | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[matrixcalc](https://github.com/mitmath/matrixcalc)</sub>                                                                                                                      | <sub>NEW</sub>                                                                                                 | <sub>2022-01-04 15:39:28</sub> | <sub>2024-02-09 17:17:51</sub> | <sub>297.0</sub>        | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[Data-Science-Free](https://github.com/frontbenchHQ/Data-Science-Free)</sub>                                                                                                   | <sub>NEW</sub>                                                                                                 | <sub>2019-02-10 14:29:29</sub> | <sub>2020-07-13 06:36:25</sub> | <sub>295.0</sub>        | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[feature-selection-for-machine-learning](https://github.com/solegalli/feature-selection-for-machine-learning)</sub>                                                            | <sub>NEW</sub>                                                                                                 | <sub>2020-01-08 17:08:12</sub> | <sub>2024-04-27 16:24:40</sub> | <sub>290.0</sub>        | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[zero-to-mastery-ml](https://github.com/mrdbourke/zero-to-mastery-ml)</sub>                                                                                                    | <sub>NEW</sub>                                                                                                 | <sub>2019-09-23 04:56:51</sub> | <sub>2024-09-25 06:05:55</sub> | <sub>2876.0</sub>       | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[tensorflow-without-a-phd](https://github.com/GoogleCloudPlatform/tensorflow-without-a-phd)</sub>                                                                              | <sub>NEW</sub>                                                                                                 | <sub>2018-05-09 18:33:40</sub> | <sub>2020-06-03 21:08:32</sub> | <sub>2778.0</sub>       | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[mlbookcamp-code](https://github.com/alexeygrigorev/mlbookcamp-code)</sub>                                                                                                     | <sub>NEW</sub>                                                                                                 | <sub>2023-08-01 14:02:25</sub> | <sub>2024-09-15 09:54:55</sub> | <sub>276.0</sub>        | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[machine-learning-andrew-ng](https://github.com/susilvaalmeida/machine-learning-andrew-ng)</sub>                                                                               | <sub>NEW</sub>                                                                                                 | <sub>2019-03-15 23:51:58</sub> | <sub>2020-05-30 23:46:44</sub> | <sub>274.0</sub>        | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[awesome-ml-courses](https://github.com/luspr/awesome-ml-courses)</sub>                                                                                                        | <sub>NEW</sub>                                                                                                 | <sub>2020-05-08 20:41:59</sub> | <sub>2024-06-18 07:14:47</sub> | <sub>2688.0</sub>       | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[MachineLearningWithPython](https://github.com/JerryKurata/MachineLearningWithPython)</sub>                                                                                    | <sub>NEW</sub>                                                                                                 | <sub>2016-04-24 21:20:10</sub> | <sub>2023-01-27 01:12:06</sub> | <sub>259.0</sub>        | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[stanford-cs231](https://github.com/machinelearningnanodegree/stanford-cs231)</sub>                                                                                            | <sub>NEW</sub>                                                                                                 | <sub>2016-09-05 01:40:41</sub> | <sub>2017-02-03 16:46:46</sub> | <sub>258.0</sub>        | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[iNeuron-Full-Stack-Data-Science-Assignments](https://github.com/amanovishnu/iNeuron-Full-Stack-Data-Science-Assignments)</sub>                                                | <sub>NEW</sub>                                                                                                 | <sub>2021-05-31 10:46:57</sub> | <sub>2022-07-17 10:52:33</sub> | <sub>256.0</sub>        | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[TeachingDataScience](https://github.com/yogeshhk/TeachingDataScience)</sub>                                                                                                   | <sub>NEW</sub>                                                                                                 | <sub>2019-04-13 23:43:45</sub> | <sub>2024-09-28 02:39:36</sub> | <sub>255.0</sub>        | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[PythonDataScienceFullThrottle](https://github.com/pdeitel/PythonDataScienceFullThrottle)</sub>                                                                                | <sub>NEW</sub>                                                                                                 | <sub>2019-07-18 15:53:01</sub> | <sub>2024-08-13 13:38:57</sub> | <sub>253.0</sub>        | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[MachineLearning6.867](https://github.com/peteflorence/MachineLearning6.867)</sub>                                                                                             | <sub>NEW</sub>                                                                                                 | <sub>2015-09-08 16:25:19</sub> | <sub>2015-10-20 15:43:40</sub> | <sub>242.0</sub>        | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[365datascience](https://github.com/UsmanNiazi/365datascience)</sub>                                                                                                           | <sub>NEW</sub>                                                                                                 | <sub>2020-04-12 12:01:18</sub> | <sub>2020-11-01 07:39:21</sub> | <sub>241.0</sub>        | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[Udemy---Machine-Learning](https://github.com/jmportilla/Udemy---Machine-Learning)</sub>                                                                                       | <sub>NEW</sub>                                                                                                 | <sub>2015-04-27 22:44:40</sub> | <sub>2016-07-06 23:58:33</sub> | <sub>238.0</sub>        | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[ML_RiskManagement](https://github.com/albahnsen/ML_RiskManagement)</sub>                                                                                                      | <sub>NEW</sub>                                                                                                 | <sub>2016-05-16 19:37:52</sub> | <sub>2018-02-08 21:05:21</sub> | <sub>235.0</sub>        | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[Intro](https://github.com/rstudio/Intro)</sub>                                                                                                                                | <sub>NEW</sub>                                                                                                 | <sub>2014-11-11 20:45:33</sub> | <sub>2014-11-12 13:42:32</sub> | <sub>235.0</sub>        | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[JSE_OkCupid](https://github.com/rudeboybert/JSE_OkCupid)</sub>                                                                                                                | <sub>NEW</sub>                                                                                                 | <sub>2015-03-28 08:38:27</sub> | <sub>2021-04-26 18:35:26</sub> | <sub>234.0</sub>        | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[Developing_Data_Products](https://github.com/DataScienceSpecialization/Developing_Data_Products)</sub>                                                                        | <sub>NEW</sub>                                                                                                 | <sub>2016-08-25 19:47:39</sub> | <sub>2017-07-31 15:11:59</sub> | <sub>233.0</sub>        | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[julia-ml-course](https://github.com/adrhill/julia-ml-course)</sub>                                                                                                            | <sub>NEW</sub>                                                                                                 | <sub>2023-04-24 15:17:08</sub> | <sub>2024-09-06 13:36:23</sub> | <sub>233.0</sub>        | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[DAT7](https://github.com/justmarkham/DAT7)</sub>                                                                                                                              | <sub>NEW</sub>                                                                                                 | <sub>2015-05-16 02:29:54</sub> | <sub>2016-03-18 16:20:30</sub> | <sub>231.0</sub>        | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[MachineLearning_Ng](https://github.com/HuangCongQing/MachineLearning_Ng)</sub>                                                                                                | <sub>NEW</sub>                                                                                                 | <sub>2017-10-14 13:06:55</sub> | <sub>2020-05-11 01:56:28</sub> | <sub>229.0</sub>        | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[qmlcourse](https://github.com/quantum-ods/qmlcourse)</sub>                                                                                                                    | <sub>NEW</sub>                                                                                                 | <sub>2021-03-06 04:19:25</sub> | <sub>2024-07-07 23:51:37</sub> | <sub>228.0</sub>        | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[Python-Learning](https://github.com/AmirHosseinBabaeayan/Python-Learning)</sub>                                                                                               | <sub>NEW</sub>                                                                                                 | <sub>2021-09-14 15:45:23</sub> | <sub>2023-09-16 20:43:57</sub> | <sub>226.0</sub>        | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[AmazonSageMakerCourse](https://github.com/ChandraLingam/AmazonSageMakerCourse)</sub>                                                                                          | <sub>NEW</sub>                                                                                                 | <sub>2019-04-02 16:31:20</sub> | <sub>2024-05-30 04:54:39</sub> | <sub>225.0</sub>        | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[machine-learning-coursera](https://github.com/yhyap/machine-learning-coursera)</sub>                                                                                          | <sub>NEW</sub>                                                                                                 | <sub>2013-05-03 09:41:53</sub> | <sub>2013-05-05 11:58:38</sub> | <sub>224.0</sub>        | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[datasciencecoursera](https://github.com/mGalarnyk/datasciencecoursera)</sub>                                                                                                  | <sub>NEW</sub>                                                                                                 | <sub>2016-12-27 03:59:24</sub> | <sub>2021-02-19 04:16:58</sub> | <sub>2225.0</sub>       | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[dl-workshop](https://github.com/ericmjl/dl-workshop)</sub>                                                                                                                    | <sub>NEW</sub>                                                                                                 | <sub>2018-12-20 22:34:43</sub> | <sub>2022-05-14 19:09:02</sub> | <sub>222.0</sub>        | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[Machine-Learning-AndrewNg-DeepLearning.AI](https://github.com/azminewasi/Machine-Learning-AndrewNg-DeepLearning.AI)</sub>                                                     | <sub>NEW</sub>                                                                                                 | <sub>2022-07-24 11:14:14</sub> | <sub>2023-06-11 06:21:18</sub> | <sub>221.0</sub>        | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[supervised-ML-case-studies-course](https://github.com/juliasilge/supervised-ML-case-studies-course)</sub>                                                                     | <sub>NEW</sub>                                                                                                 | <sub>2019-06-01 21:32:47</sub> | <sub>2021-08-22 23:19:32</sub> | <sub>221.0</sub>        | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[umich-eecs545-lectures](https://github.com/thejakeyboy/umich-eecs545-lectures)</sub>                                                                                          | <sub>NEW</sub>                                                                                                 | <sub>2016-01-24 18:46:16</sub> | <sub>2016-08-29 20:34:54</sub> | <sub>219.0</sub>        | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[ml-course](https://github.com/girafe-ai/ml-course)</sub>                                                                                                                      | <sub>NEW</sub>                                                                                                 | <sub>2019-02-01 16:20:39</sub> | <sub>2024-08-24 16:37:56</sub> | <sub>2186.0</sub>       | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[python_data_science_and_machine_learning_bootcamp](https://github.com/ccniuj/python_data_science_and_machine_learning_bootcamp)</sub>                                         | <sub>NEW</sub>                                                                                                 | <sub>2017-01-15 12:05:12</sub> | <sub>2017-01-15 12:20:06</sub> | <sub>217.0</sub>        | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[Introduction-to-Data-Science-in-python](https://github.com/sidsriv/Introduction-to-Data-Science-in-python)</sub>                                                              | <sub>NEW</sub>                                                                                                 | <sub>2016-11-01 15:41:24</sub> | <sub>2017-01-22 10:28:21</sub> | <sub>216.0</sub>        | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[ml-intro](https://github.com/rolling-scopes-school/ml-intro)</sub>                                                                                                            | <sub>NEW</sub>                                                                                                 | <sub>2020-11-27 14:55:34</sub> | <sub>2022-06-02 10:13:04</sub> | <sub>216.0</sub>        | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[Core-Machine-Learning-Course](https://github.com/ayush714/Core-Machine-Learning-Course)</sub>                                                                                 | <sub>NEW</sub>                                                                                                 | <sub>2023-04-12 03:09:33</sub> | <sub>2023-04-12 03:50:57</sub> | <sub>214.0</sub>        | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[creative_ml](https://github.com/acids-ircam/creative_ml)</sub>                                                                                                                | <sub>NEW</sub>                                                                                                 | <sub>2023-03-16 07:08:54</sub> | <sub>2024-07-11 13:24:13</sub> | <sub>212.0</sub>        | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[MonteCarloMethodsInFinance](https://github.com/olafSmits/MonteCarloMethodsInFinance)</sub>                                                                                    | <sub>NEW</sub>                                                                                                 | <sub>2014-01-21 14:38:39</sub> | <sub>2014-04-21 19:43:21</sub> | <sub>210.0</sub>        | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[Data-Science-Essentials](https://github.com/MicrosoftLearning/Data-Science-Essentials)</sub>                                                                                  | <sub>NEW</sub>                                                                                                 | <sub>2016-05-16 21:42:29</sub> | <sub>2018-03-01 02:34:46</sub> | <sub>210.0</sub>        | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[Python for Finance](https://github.com/siaen/python_finance_course)</sub>                                                                                                     | <sub>CEU python for finance course material.</sub>                                                             | <sub>2017-12-12 11:54:46</sub> | <sub>2020-02-25 20:31:41</sub> | <sub>21.0</sub>         | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[Computational-Social-Science-Training-Program](https://github.com/dlab-berkeley/Computational-Social-Science-Training-Program)</sub>                                          | <sub>NEW</sub>                                                                                                 | <sub>2020-07-14 00:53:09</sub> | <sub>2024-09-26 20:27:57</sub> | <sub>209.0</sub>        | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[Machine_Learning_2018](https://github.com/snrazavi/Machine_Learning_2018)</sub>                                                                                               | <sub>NEW</sub>                                                                                                 | <sub>2018-10-16 10:16:35</sub> | <sub>2021-09-16 14:14:05</sub> | <sub>208.0</sub>        | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[CS-7641-Machine-Learning-Notes](https://github.com/mohamedameen93/CS-7641-Machine-Learning-Notes)</sub>                                                                       | <sub>NEW</sub>                                                                                                 | <sub>2019-01-22 00:53:10</sub> | <sub>2021-01-19 22:18:02</sub> | <sub>203.0</sub>        | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[CourseraML](https://github.com/kaleko/CourseraML)</sub>                                                                                                                       | <sub>NEW</sub>                                                                                                 | <sub>2015-12-08 00:03:22</sub> | <sub>2018-10-30 23:49:56</sub> | <sub>2017.0</sub>       | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[amazon-sagemaker-architecting-for-ml](https://github.com/aws-samples/amazon-sagemaker-architecting-for-ml)</sub>                                                              | <sub>NEW</sub>                                                                                                 | <sub>2018-12-20 21:53:20</sub> | <sub>2020-08-12 22:24:32</sub> | <sub>200.0</sub>        | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[MLND](https://github.com/mtyylx/MLND)</sub>                                                                                                                                   | <sub>NEW</sub>                                                                                                 | <sub>2017-05-07 15:05:10</sub> | <sub>2018-04-01 15:58:24</sub> | <sub>200.0</sub>        | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[china-dictatorship](https://github.com/cirosantilli/china-dictatorship)</sub>                                                                                                 | <sub>NEW</sub>                                                                                                 | <sub>2015-04-02 20:51:50</sub> | <sub>2022-08-03 13:01:21</sub> | <sub>1997.0</sub>       | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[cs229-2018-autumn](https://github.com/maxim5/cs229-2018-autumn)</sub>                                                                                                         | <sub>NEW</sub>                                                                                                 | <sub>2021-02-08 14:39:48</sub> | <sub>2024-04-15 16:56:26</sub> | <sub>1787.0</sub>       | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[Basic Investments](https://github.com/SeanMcOwen/FinanceAndPython.com-Investments)</sub>                                                                                      | <sub>Basic investment tools in python.</sub>                                                                   | <sub>2017-08-02 21:52:19</sub> | <sub>2017-08-17 03:24:53</sub> | <sub>17.0</sub>         | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[DAT8](https://github.com/justmarkham/DAT8)</sub>                                                                                                                              | <sub>NEW</sub>                                                                                                 | <sub>2015-08-07 03:35:51</sub> | <sub>2016-04-18 18:34:09</sub> | <sub>1606.0</sub>       | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[ML-YouTube-Courses](https://github.com/dair-ai/ML-YouTube-Courses)</sub>                                                                                                      | <sub>NEW</sub>                                                                                                 | <sub>2021-06-25 09:39:16</sub> | <sub>2024-01-22 15:52:28</sub> | <sub>15798.0</sub>      | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[PythonNumericalDemos](https://github.com/GeostatsGuy/PythonNumericalDemos)</sub>                                                                                              | <sub>NEW</sub>                                                                                                 | <sub>2017-10-13 15:44:06</sub> | <sub>2024-09-10 22:02:32</sub> | <sub>1397.0</sub>       | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[Machine Learning for Trading](https://github.com/stefan-jansen/machine-learning-for-trading)</sub>                                                                            | <sub>Notebooks, resources and references accompanying the book Machine Learning for Algorithmic Trading.</sub> | <sub>2018-05-09 12:33:08</sub> | <sub>2023-03-05 17:14:58</sub> | <sub>13043.0</sub>      | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[Basic Finance](https://github.com/SeanMcOwen/FinanceAndPython.com-BasicFinance)</sub>                                                                                         | <sub>Source code notebooks basic finance applications.</sub>                                                   | <sub>2017-05-06 02:39:05</sub> | <sub>2017-06-21 04:04:09</sub> | <sub>13.0</sub>         | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[Risk Management](https://github.com/andrey-lukyanov/Risk-Management)</sub>                                                                                                    | <sub>Finance risk engagement course resources.</sub>                                                           | <sub>2018-10-03 16:26:14</sub> | <sub>2018-12-13 08:04:15</sub> | <sub>13.0</sub>         | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[ppd599](https://github.com/gboeing/ppd599)</sub>                                                                                                                              | <sub>NEW</sub>                                                                                                 | <sub>2015-09-01 19:59:59</sub> | <sub>2024-04-28 19:25:58</sub> | <sub>1265.0</sub>       | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[Play-with-Machine-Learning-Algorithms](https://github.com/liuyubobobo/Play-with-Machine-Learning-Algorithms)</sub>                                                            | <sub>NEW</sub>                                                                                                 | <sub>2017-10-17 23:13:24</sub> | <sub>2022-08-22 00:45:23</sub> | <sub>1259.0</sub>       | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[ML_course](https://github.com/epfml/ML_course)</sub>                                                                                                                          | <sub>NEW</sub>                                                                                                 | <sub>2016-07-13 15:37:38</sub> | <sub>2024-09-27 14:37:10</sub> | <sub>1247.0</sub>       | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[home](https://github.com/gege-circle/home)</sub>                                                                                                                              | <sub>NEW</sub>                                                                                                 | <sub>2020-09-20 04:47:25</sub> | <sub>2024-08-15 10:36:10</sub> | <sub>1168.0</sub>       | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[DataCamp](https://github.com/wblakecannon/DataCamp)</sub>                                                                                                                     | <sub>NEW</sub>                                                                                                 | <sub>2017-09-18 20:51:08</sub> | <sub>2020-10-01 20:13:05</sub> | <sub>1167.0</sub>       | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[dive-into-machine-learning](https://github.com/hangtwenty/dive-into-machine-learning)</sub>                                                                                   | <sub>NEW</sub>                                                                                                 | <sub>2015-02-22 23:48:16</sub> | <sub>2022-06-17 23:22:08</sub> | <sub>11262.0</sub>      | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[machine-learning-coursera-1](https://github.com/Borye/machine-learning-coursera-1)</sub>                                                                                      | <sub>NEW</sub>                                                                                                 | <sub>2014-08-28 10:48:18</sub> | <sub>2014-06-17 10:37:27</sub> | <sub>1126.0</sub>       | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[OptML_course](https://github.com/epfml/OptML_course)</sub>                                                                                                                    | <sub>NEW</sub>                                                                                                 | <sub>2018-02-21 19:06:55</sub> | <sub>2024-06-27 19:57:58</sub> | <sub>1120.0</sub>       | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[Mathematical Finance](https://github.com/yadongli/nyumath2048)</sub>                                                                                                          | <sub>NYU Math-GA 2048: Scientific Computing in Finance.</sub>                                                  | <sub>2015-01-25 21:10:37</sub> | <sub>2020-03-25 04:24:25</sub> | <sub>106.0</sub>        | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[stanford-cs229](https://github.com/zyxue/stanford-cs229)</sub>                                                                                                                | <sub>NEW</sub>                                                                                                 | <sub>2017-10-31 23:01:08</sub> | <sub>2021-08-04 03:03:28</sub> | <sub>0.0</sub>          | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |

================================================
FILE: generated_wiki/data.md
================================================
| <sub>repo</sub>                                                                                                                                                                                                    | <sub>comment</sub>   | <sub>created_at</sub>          | <sub>last_commit</sub>         | <sub>star_count</sub>   | <sub>repo_status</sub>              | <sub>rating</sub>   |
|:-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:---------------------|:-------------------------------|:-------------------------------|:------------------------|:------------------------------------|:--------------------|
| <sub>[Tools-termux](https://github.com/Taoviqinvicible/Tools-termux)</sub>                                                                                                                                         | <sub>NEW</sub>       | <sub>nan</sub>                 | <sub>nan</sub>                 | <sub>nan</sub>          | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[Rating Industries](http://www.ratingshistory.info/)</sub>                                                                                                                                                    | <sub>nan</sub>       | <sub>nan</sub>                 | <sub>nan</sub>                 | <sub>nan</sub>          | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[http://finance.yahoo.com/](http://finance.yahoo.com/)</sub>                                                                                                                                                  | <sub>nan</sub>       | <sub>nan</sub>                 | <sub>nan</sub>                 | <sub>nan</sub>          | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[https://fred.stlouisfed.org/](https://fred.stlouisfed.org/)</sub>                                                                                                                                            | <sub>nan</sub>       | <sub>nan</sub>                 | <sub>nan</sub>                 | <sub>nan</sub>          | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[https://stooq.com](https://stooq.com)</sub>                                                                                                                                                                  | <sub>nan</sub>       | <sub>nan</sub>                 | <sub>nan</sub>                 | <sub>nan</sub>          | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[Capital Markets Data](https://www.capitalmarketsdata.com/)</sub>                                                                                                                                             | <sub>nan</sub>       | <sub>nan</sub>                 | <sub>nan</sub>                 | <sub>nan</sub>          | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[Financial Corporate](http://raw.rutgers.edu/Corporate%20Financial%20Data.html)</sub>                                                                                                                         | <sub>nan</sub>       | <sub>nan</sub>                 | <sub>nan</sub>                 | <sub>nan</sub>          | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[IRS](http://social-metrics.org/sox/)</sub>                                                                                                                                                                   | <sub>nan</sub>       | <sub>nan</sub>                 | <sub>nan</sub>                 | <sub>nan</sub>          | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[Non-financial Corporate](http://raw.rutgers.edu/Non-Financial%20Corporate%20Data.html)</sub>                                                                                                                 | <sub>nan</sub>       | <sub>nan</sub>                 | <sub>nan</sub>                 | <sub>nan</sub>          | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[redesigned-pancake](https://github.com/Sfedfcv/redesigned-pancake)</sub>                                                                                                                                     | <sub>NEW</sub>       | <sub>nan</sub>                 | <sub>nan</sub>                 | <sub>nan</sub>          | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[PyPOTS](https://github.com/WenjieDu/PyPOTS)</sub>                                                                                                                                                            | <sub>NEW</sub>       | <sub>2022-03-29 14:22:47</sub> | <sub>2024-09-26 17:17:28</sub> | <sub>997.0</sub>        | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[aeon](https://github.com/aeon-toolkit/aeon)</sub>                                                                                                                                                            | <sub>NEW</sub>       | <sub>2022-12-20 12:44:09</sub> | <sub>2024-09-27 18:03:06</sub> | <sub>976.0</sub>        | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[hypercube](https://github.com/hypercube-lab/hypercube)</sub>                                                                                                                                                 | <sub>NEW</sub>       | <sub>2021-09-08 06:47:07</sub> | <sub>2021-10-14 13:44:17</sub> | <sub>975.0</sub>        | <sub>:heavy_multiplication_x:</sub> | <sub></sub>         |
| <sub>[Deedle](https://github.com/fslaborg/Deedle)</sub>                                                                                                                                                            | <sub>NEW</sub>       | <sub>2013-09-17 18:53:34</sub> | <sub>2023-01-17 21:18:55</sub> | <sub>937.0</sub>        | <sub>:heavy_check_mark:</sub>       | <sub></sub>         |
| <sub>[BitcoinExchangeFH](https://github.com/BitcoinExchangeFH/BitcoinExchangeFH)</sub>                                                                                                                             | <sub>NEW</sub>       | <sub>2016-10-24 13:30:31</sub> | <sub>2022-12-28 17:07:41</sub> | <sub>936.0</sub>        | <sub>
Download .txt
gitextract_jumbvm5a/

├── .github/
│   └── workflows/
│       ├── repo_search.yml
│       ├── repo_status.yml
│       └── wiki_gen.yml
├── .gitignore
├── README.md
├── conf.py
├── generated_wiki/
│   ├── __init__.py
│   ├── alternative_finance.md
│   ├── colleges_centers_and_departments.md
│   ├── courses.md
│   ├── data.md
│   ├── data_processing_techniques_and_transformations.md
│   ├── deep_learning_and_reinforcement_learning.md
│   ├── derivatives_and_hedging.md
│   ├── extended_research.md
│   ├── factor_and_risk_analysis.md
│   ├── fixed_income.md
│   ├── other_models.md
│   ├── personal_papers.md
│   ├── portfolio_selection_and_optimisation.md
│   ├── reinforcement_learning.md
│   ├── textual.md
│   └── unsupervised.md
├── git_search.py
├── git_status.py
├── git_util.py
├── raw_data/
│   ├── __init__.py
│   ├── process.drawio
│   └── url_list.csv
├── requirements.txt
└── wiki_gen.py
Download .txt
SYMBOL INDEX (17 symbols across 4 files)

FILE: git_search.py
  function convert_repo_list_to_df (line 12) | def convert_repo_list_to_df(repo_list, category):
  function search_repo (line 28) | def search_repo(search_term: str, qualifier_dict: Dict):
  function search_repo_multiple_terms (line 39) | def search_repo_multiple_terms(term_list: List[str],
  function search_repo_simple (line 76) | def search_repo_simple(search_term: str = None,
  function search_new_repo_by_category (line 111) | def search_new_repo_by_category(category: str,
  function search_new_repo_and_append (line 307) | def search_new_repo_and_append(min_stars_number: int = 100, filter_list=...
  function search_new_repo_by_category_per_day (line 333) | def search_new_repo_by_category_per_day(min_stars_number: int = 100):

FILE: git_status.py
  function get_repo_list (line 9) | def get_repo_list():
  function get_repo_status (line 16) | def get_repo_status():
  function parse_readme_md (line 37) | def parse_readme_md():

FILE: git_util.py
  function get_github_client (line 6) | def get_github_client():
  function get_repo_path (line 23) | def get_repo_path(in_url):
  function get_last_commit_date (line 31) | def get_last_commit_date(input_repo: Repository):
  function get_repo_attributes_dict (line 41) | def get_repo_attributes_dict(input_repo: Repository, last_commit_within_...

FILE: wiki_gen.py
  function get_wiki_status_color (line 10) | def get_wiki_status_color(input_text):
  function get_wiki_rating (line 18) | def get_wiki_rating(input_rating):
  function generate_wiki_per_category (line 26) | def generate_wiki_per_category(output_path, update_readme: bool = True):
Condensed preview — 31 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (979K chars).
[
  {
    "path": ".github/workflows/repo_search.yml",
    "chars": 1021,
    "preview": "name: Repo-Search\n\non:\n  schedule:\n    - cron: '0 1 * * *'\n\njobs:\n  # Set the job key. The key is displayed as the job n"
  },
  {
    "path": ".github/workflows/repo_status.yml",
    "chars": 1032,
    "preview": "name: Repo-Updater\n\non:\n  schedule:\n    - cron: '0 0 * * 0' # weekly\n\n\njobs:\n  # Set the job key. The key is displayed a"
  },
  {
    "path": ".github/workflows/wiki_gen.yml",
    "chars": 1665,
    "preview": "name: Wiki-Generator\n\n# generate wiki page on every push\non: push\n\njobs:\n  # Set the job key. The key is displayed as th"
  },
  {
    "path": ".gitignore",
    "chars": 1831,
    "preview": "# Byte-compiled / optimized / DLL files\n__pycache__/\n*.py[cod]\n*$py.class\n\n# C extensions\n*.so\n\n# Distribution / packagi"
  },
  {
    "path": "README.md",
    "chars": 114212,
    "preview": "[![Repo-Updater](https://github.com/firmai/financial-machine-learning/actions/workflows/repo_status.yml/badge.svg)](http"
  },
  {
    "path": "conf.py",
    "chars": 72,
    "preview": "import os\nPROJECT_ROOT_DIR = os.path.dirname(os.path.abspath(__file__))\n"
  },
  {
    "path": "generated_wiki/__init__.py",
    "chars": 0,
    "preview": ""
  },
  {
    "path": "generated_wiki/alternative_finance.md",
    "chars": 9019,
    "preview": "| <sub>repo</sub>                                                                                                       "
  },
  {
    "path": "generated_wiki/colleges_centers_and_departments.md",
    "chars": 2951,
    "preview": "| <sub>repo</sub>                                                                                                       "
  },
  {
    "path": "generated_wiki/courses.md",
    "chars": 60165,
    "preview": "| <sub>repo</sub>                                                                                                       "
  },
  {
    "path": "generated_wiki/data.md",
    "chars": 160289,
    "preview": "| <sub>repo</sub>                                                                                                       "
  },
  {
    "path": "generated_wiki/data_processing_techniques_and_transformations.md",
    "chars": 6467,
    "preview": "| <sub>repo</sub>                                                                                                 | <sub"
  },
  {
    "path": "generated_wiki/deep_learning_and_reinforcement_learning.md",
    "chars": 63227,
    "preview": "| <sub>repo</sub>                                                                                                       "
  },
  {
    "path": "generated_wiki/derivatives_and_hedging.md",
    "chars": 29879,
    "preview": "| <sub>repo</sub>                                                                                                       "
  },
  {
    "path": "generated_wiki/extended_research.md",
    "chars": 107197,
    "preview": "| <sub>repo</sub>                                                                                                       "
  },
  {
    "path": "generated_wiki/factor_and_risk_analysis.md",
    "chars": 18899,
    "preview": "| <sub>repo</sub>                                                                                                       "
  },
  {
    "path": "generated_wiki/fixed_income.md",
    "chars": 6706,
    "preview": "| <sub>repo</sub>                                                                                                       "
  },
  {
    "path": "generated_wiki/other_models.md",
    "chars": 62045,
    "preview": "| <sub>repo</sub>                                                                                                       "
  },
  {
    "path": "generated_wiki/personal_papers.md",
    "chars": 1835,
    "preview": "| <sub>repo</sub>                                                                                                       "
  },
  {
    "path": "generated_wiki/portfolio_selection_and_optimisation.md",
    "chars": 9344,
    "preview": "| <sub>repo</sub>                                                                                                       "
  },
  {
    "path": "generated_wiki/reinforcement_learning.md",
    "chars": 3077,
    "preview": "| <sub>repo</sub>                                                                                             | <sub>com"
  },
  {
    "path": "generated_wiki/textual.md",
    "chars": 8294,
    "preview": "| <sub>repo</sub>                                                                                                       "
  },
  {
    "path": "generated_wiki/unsupervised.md",
    "chars": 6543,
    "preview": "| <sub>repo</sub>                                                                                                       "
  },
  {
    "path": "git_search.py",
    "chars": 17985,
    "preview": "import datetime\nimport os\nfrom typing import Dict, List\n\nimport pandas as pd\n\nfrom conf import PROJECT_ROOT_DIR\nfrom git"
  },
  {
    "path": "git_status.py",
    "chars": 3559,
    "preview": "import os\nfrom conf import PROJECT_ROOT_DIR\nimport re\nimport pandas as pd\n\nfrom git_util import get_repo_attributes_dict"
  },
  {
    "path": "git_util.py",
    "chars": 2088,
    "preview": "from github import Github, Repository, GithubException\nimport os\nimport datetime\n\n\ndef get_github_client():\n    # search"
  },
  {
    "path": "raw_data/__init__.py",
    "chars": 0,
    "preview": ""
  },
  {
    "path": "raw_data/process.drawio",
    "chars": 1783,
    "preview": "<mxfile host=\"Electron\" modified=\"2021-03-31T15:34:53.871Z\" agent=\"5.0 (Macintosh; Intel Mac OS X 11_2_3) AppleWebKit/53"
  },
  {
    "path": "raw_data/url_list.csv",
    "chars": 268884,
    "preview": "name,url,comment,category,last_update,star_count,fork_count,contributors_count,created_at,last_commit,repo_path,repo_sta"
  },
  {
    "path": "requirements.txt",
    "chars": 46,
    "preview": "pandas==1.2.1\nPyGithub==1.54.1\ntabulate==0.8.9"
  },
  {
    "path": "wiki_gen.py",
    "chars": 3742,
    "preview": "from conf import PROJECT_ROOT_DIR\nimport os\nimport pandas as pd\nimport numpy as np\nimport re\n\nfrom git_status import get"
  }
]

About this extraction

This page contains the full source code of the firmai/financial-machine-learning GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 31 files (951.0 KB), approximately 273.0k tokens, and a symbol index with 17 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.

Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.

Copied to clipboard!