mattharrison / effective_xgboost_book

262 stars 25 forks source link

Unable to locate xg_helpers.py #9

Open jgriffi opened 11 months ago

jgriffi commented 11 months ago

xg_helpers library mentioned/referenced in book but I can't locate it in repo nor book.

akthe-at commented 10 months ago

@jgriffi This is a custom file you create and put the defined functions/classes into that @mattharrison highlights in the book. You then import this into your working file when building your memory. This keeps all of your function/class definitions out of your working space to keep it clean, and you can reuse them later if you turn them into a proper package/module.