Support for multiple data sources
Open
@sdesrozis is already working on this.
Since May 19, 2020.
enhancement
- Dominant language
- Python
- Stars
- 4.8k
- Forks
- 726
- Avg merge
- 5d 21h
- Merged PRs (30d)
- 5
Description
Idea is to enhance Engine to be able to run on multiple data sources:
data1 = ...
data2 = ...
data3 = ...
...
def process_function(engine, batches):
batch1 = batches['data1']
batch2 = batches['data2']
batch3 = batches['data3']
...
engine = Engine(process_function)
engine.run({"data1": data1, "data2": data2, "data3": data3}, max_epochs=10)
Contributor guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Assessment
This issue has not been assessed yet.