This repository was archived by the owner on Sep 11, 2023. It is now read-only.
Align DataSource constructor args with config YAML field names #285
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Pull Request
Description
Modify the DataSource constructor arguments and YAML config field names so they align precisely.
This PR touches a lot of files because it renames a few argument names. But the actual underlying conceptual change is (hopefully!) quite small!
I haven't renamed all the variables in
datamodule.py
andprepare_ml_data.py
because these files will be removed soon!This is one small step towards the "big new design" described in issue #213.
DataSourceList.from_config()
. The main reason for aligning the DataSource constructor args with the YAML config field names is so we can create this simple little function to create every DataSource from the YAML config 🙂DataSourceList
to define the geospatial location of each example, instead use a newDataSourceList.data_source_which_defines_geospatial_locations
attribute. This is more explicit and makes the code a little easier. But I've also made the code backwards-compatible for now.DataSourceList.from_config()
.Related issues:
How Has This Been Tested?
The tests pass
Checklist: