-
Notifications
You must be signed in to change notification settings - Fork 169
New issue
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
Updating profile example to have unstructured #252
Conversation
@@ -272,7 +272,7 @@ | |||
"id": "e2285f19-9b34-4484-beaa-79df890b2825", | |||
"metadata": {}, | |||
"source": [ | |||
"# A deeper dive into `CSVData`\n", | |||
"## A deeper dive into `CSVData`\n", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This has needed to be changed for a while. The auto-documentation gets messed up if there are two of the largest headings in the same example.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
small comments
Can you add this to the fixes in here? Should be simple few line changes: #254 |
" \"int.is_enabled\": False, \n", | ||
" \"float.is_enabled\": False, \n", | ||
" \"order.is_enabled\": False, \n", | ||
" \"category.is_enabled\": False, \n", | ||
" \"datetime.is_enabled\": False,})\n", | ||
"profile_options.set({'data_labeler.data_labeler_object': data_labeler})\n", | ||
"profile_options.set({'structured_options.data_labeler.data_labeler_object': data_labeler})\n", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
bug fix
@@ -405,7 +405,7 @@ | |||
"outputs": [], | |||
"source": [ | |||
"# predict with the labeler loaded from path\n", | |||
"profile_options.set({'data_labeler.data_labeler_dirpath': 'data_labeler_saved'})\n", | |||
"profile_options.set({'structured_options.data_labeler.data_labeler_dirpath': 'data_labeler_saved'})\n", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
bug fix
Let me know what you think