Changes
- Deprecated `n_times` in `RandomSwap`, use `alpha` instead. alpha parameter can be float type. If a `float`, it is the number of times to repeat the word-swapping process is calculated as `N = alpha * L`, where `L` is the length of the text.
- Added license, readme, third-party-licenses to the package.
Deprecations
RandomSwap
- Old way:
python
RandomSwap(n_times=3)
- New way:
python
RandomSwap(alpha=3)