├── beifen.csv ├── data ├── count_fitment.png ├── ershoufang.csv ├── model_count.png ├── rawdata.csv ├── res.csv ├── spider.py └── test.csv ├── ershoufang.csv ├── main.py ├── pretreatment ├── address.py ├── direction.py ├── fitment.py ├── floor.py ├── model.py ├── overview.py ├── pretreat.py └── transform.py ├── readme.md ├── report ├── report.pdf └── static │ ├── direction.jpg │ ├── jingtai.png │ ├── res1.png │ ├── res2.png │ ├── res3.png │ ├── res4.png │ ├── res5.png │ └── res6.png ├── requirements.txt ├── spider.py └── train └── train.py /beifen.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiashen532/DataMining/HEAD/beifen.csv -------------------------------------------------------------------------------- /data/count_fitment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiashen532/DataMining/HEAD/data/count_fitment.png -------------------------------------------------------------------------------- /data/ershoufang.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiashen532/DataMining/HEAD/data/ershoufang.csv -------------------------------------------------------------------------------- /data/model_count.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiashen532/DataMining/HEAD/data/model_count.png -------------------------------------------------------------------------------- /data/rawdata.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiashen532/DataMining/HEAD/data/rawdata.csv -------------------------------------------------------------------------------- /data/res.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiashen532/DataMining/HEAD/data/res.csv -------------------------------------------------------------------------------- /data/spider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiashen532/DataMining/HEAD/data/spider.py -------------------------------------------------------------------------------- /data/test.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiashen532/DataMining/HEAD/data/test.csv -------------------------------------------------------------------------------- /ershoufang.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiashen532/DataMining/HEAD/ershoufang.csv -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiashen532/DataMining/HEAD/main.py -------------------------------------------------------------------------------- /pretreatment/address.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiashen532/DataMining/HEAD/pretreatment/address.py -------------------------------------------------------------------------------- /pretreatment/direction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiashen532/DataMining/HEAD/pretreatment/direction.py -------------------------------------------------------------------------------- /pretreatment/fitment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiashen532/DataMining/HEAD/pretreatment/fitment.py -------------------------------------------------------------------------------- /pretreatment/floor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiashen532/DataMining/HEAD/pretreatment/floor.py -------------------------------------------------------------------------------- /pretreatment/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiashen532/DataMining/HEAD/pretreatment/model.py -------------------------------------------------------------------------------- /pretreatment/overview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiashen532/DataMining/HEAD/pretreatment/overview.py -------------------------------------------------------------------------------- /pretreatment/pretreat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiashen532/DataMining/HEAD/pretreatment/pretreat.py -------------------------------------------------------------------------------- /pretreatment/transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiashen532/DataMining/HEAD/pretreatment/transform.py -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiashen532/DataMining/HEAD/readme.md -------------------------------------------------------------------------------- /report/report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiashen532/DataMining/HEAD/report/report.pdf -------------------------------------------------------------------------------- /report/static/direction.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiashen532/DataMining/HEAD/report/static/direction.jpg -------------------------------------------------------------------------------- /report/static/jingtai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiashen532/DataMining/HEAD/report/static/jingtai.png -------------------------------------------------------------------------------- /report/static/res1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiashen532/DataMining/HEAD/report/static/res1.png -------------------------------------------------------------------------------- /report/static/res2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiashen532/DataMining/HEAD/report/static/res2.png -------------------------------------------------------------------------------- /report/static/res3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiashen532/DataMining/HEAD/report/static/res3.png -------------------------------------------------------------------------------- /report/static/res4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiashen532/DataMining/HEAD/report/static/res4.png -------------------------------------------------------------------------------- /report/static/res5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiashen532/DataMining/HEAD/report/static/res5.png -------------------------------------------------------------------------------- /report/static/res6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiashen532/DataMining/HEAD/report/static/res6.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiashen532/DataMining/HEAD/requirements.txt -------------------------------------------------------------------------------- /spider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiashen532/DataMining/HEAD/spider.py -------------------------------------------------------------------------------- /train/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiashen532/DataMining/HEAD/train/train.py --------------------------------------------------------------------------------