Change Log
Major Features and Improvements
- Add new models: [DCN-M](https://deepctr-torch.readthedocs.io/en/latest/Features.html#dcn-deep-cross-network) and [DCN-mix](https://deepctr-torch.readthedocs.io/en/latest/Features.html#dcn-mix-improved-deep-cross-network-with-mix-of-experts-and-matrix-kernel)
- Add `EarlyStopping` and `ModelCheckpoint` callbacks, [example](https://deepctr-torch.readthedocs.io/en/latest/FAQ.html#set-learning-rate-and-use-earlystopping)
Bug Fixes and Other Changes
- Use `float64` in metric to prevent nan/inf loss when calculating logloss
API changes
- `DCN` add a new parameter:
`cross_parameterization`: string, ``"vector"`` or ``"matrix"``, way to parameterize the cross network.if set to ``"matrix"`` then it will be `DCN-M`
- Add `EarlyStopping` and `ModelCheckpoint` in `deepctr_torch.callbacks`