tipresias/augury

View on GitHub
conf/local/catalog.yml

Summary

Maintainability
Test Coverage
# Raw data
match_data:
  type: pandas.JSONDataSet
  filepath: /app/data/01_raw/match-data_1897-01-01_2021-12-31.json
  save_args:
    indent: 2
    orient: records
    date_format: iso
player_data:
  type: pandas.JSONDataSet
  filepath: /app/data/01_raw/player-data_1965-01-01_2021-12-31.json
  save_args:
    indent: 2
    orient: records
    date_format: iso

# Intermediate data
final_betting_data:
  type: pandas.JSONDataSet
  filepath: /app/data/02_intermediate/betting-data_2010-01-01_2022-12-31.json
  save_args:
    indent: 2
    orient: records
    date_format: iso
final_match_data:
  type: pandas.JSONDataSet
  filepath: /app/data/02_intermediate/match-data_1897-01-01_2022-12-31.json
  save_args:
    indent: 2
    orient: records
    date_format: iso
final_player_data:
  type: pandas.JSONDataSet
  filepath: /app/data/02_intermediate/player-data_1965-01-01_2022-12-31.json
  save_args:
    indent: 2
    orient: records
    date_format: iso

# Final data
full_data:
  type: pandas.JSONDataSet
  filepath: /app/data/05_model_input/full-data_1897-01-01_2022-12-31.json
  save_args:
    indent: 2
    orient: records
    date_format: iso

# Models
tipresias_margin_2021:
  type: pickle.PickleDataSet
  filepath: data/06_models/tipresias_margin_2021.pkl
  backend: joblib