Add FrozenSerializable, Optional Subparsers
Simple release: Adds optional subparsers.
This is the first step towards my ultimate goal, which is to have multiple, independent, optional subparsers.
Doesn't sound like much now, but this would be a killer feature, which would really help simple-parsing step above the subparser limitations of argparse.
This would be especially useful when creating command-line APIs for ML applications, when you might need a subparser for each type of model, or for each type of dataset, or for each type of optimizer, etc etc.
This is best achieved using subparsers, however the current API is a bit clumsy.
Here is the roadmap for that feature:
- Optional subparsers (This release)
- Multiple independant subparsers on a single dataclass (Next release)
- Multiple, inter-dependant subparsers (stretch goal)
- (e.g. where the default value is dependant on the types of other fields)
Let me know what you think!
What's Changed
Full Changelog: v0.0.17...v0.0.18