init research

This commit is contained in:
2026-02-08 11:20:43 -10:00
commit bdf064f54d
3041 changed files with 1592200 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
#!/usr/bin/env bash
DATA_DIR=test/data/ames-house-prices
mkdir -p $DATA_DIR
wget https://s3.us-east-2.amazonaws.com/tech.public.data/house-prices-advanced-regression-techniques.zip
unzip -o house-prices-advanced-regression-techniques.zip -d $DATA_DIR
# Of course the files have incorrect permissions...
chmod 644 $(find test/data/ames-house-prices -type f)
rm house-prices-advanced-regression-techniques.zip