# 购房贷款违约预测
### 数据集说明
训练集 train.csv
```python
# train_data can be read as a DataFrame
# for example
import pandas as pd
df = pd.read_csv('train.csv')
print(df.iloc[0]) # list of 51 features and one label
```
测试集 test.csv
```python
# test_data can be read as a DataFrame
# for example
import pandas as pd
df = pd.read_csv('test.csv')
print(df.iloc[0]) # list of 51 features
```
测试集标签文件 test_label.txt,格式如下
```txt
1
0
1
1
...
...
```
其中训练集12万条,测试集3万条。
包括准确率计算 sklearn jupyter
1