We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Related Discussion: nyunAI/nyuntam-vision#20 (comment)
In the create_from_dict() method in nyuntam/factory.py, the caller iterating over cls always throws an error. But if we do something like:
create_from_dict()
nyuntam/factory.py
cls = get_factories(task, job_service) if(cls[0]): return cls[0](args) else: raise Exception("Factory instance could not be created.")
This can be done because cls only has a single element. Also, it works locally.
cc @Akash-guna @Arnav0400
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Related Discussion: nyunAI/nyuntam-vision#20 (comment)
In the
create_from_dict()
method innyuntam/factory.py
, the caller iterating over cls always throws an error. But if we do something like:This can be done because cls only has a single element. Also, it works locally.
cc @Akash-guna @Arnav0400
The text was updated successfully, but these errors were encountered: