nodet / dowml

A library and command line client to use Decision Optimization on IBM Watson Machine Learning (WML). NOT SUPPORTED BY IBM.
Apache License 2.0
3 stars 0 forks source link

DOWMLLib should return the outputs of a job as a dict, not as a list #18

Closed nodet closed 2 years ago

nodet commented 2 years ago

Rather than returning the outputs as a list of pairs ([('name1', content1), ('name2', content2)], the library should return a dictionary such as {'name1' : content1, 'name2' : content2}. Much more pythonesque...