You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Ipyannotator uses an API that contains a pair of Input/Output and a Settings class. The Settings contains parameters that are used for all annotators, but some of them are redundant.
This task tries to reduce the Settings class to three parameters:
The remaining parameters should be stored in Input/Output classes. This will avoid the following redundant code (from 01b_tutorial_image_classification.ipynb):
To do this the get_settings function needs to be refactored. A suggestion is to rename get_settings to get_api and return a tuple with input, output, and settings.
The text was updated successfully, but these errors were encountered:
Ipyannotator uses an API that contains a pair of Input/Output and a Settings class. The
Settings
contains parameters that are used for all annotators, but some of them are redundant.This task tries to reduce the
Settings
class to three parameters:The remaining parameters should be stored in Input/Output classes. This will avoid the following redundant code (from
01b_tutorial_image_classification.ipynb):
To do this the
get_settings
function needs to be refactored. A suggestion is to renameget_settings
toget_api
and return a tuple with input, output, and settings.The text was updated successfully, but these errors were encountered: