Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
Add a comprehensive description of proposed changes
List associated issue number(s) if exist(s): #6 (for example)
Documentation PR (if needed): #1340 (for example)
Benchmarks PR (if needed): IntelPython/scikit-learn_bench#155 (for example)
This PR fixes an issue in which the HTML widget representations of sklearnex were not showing the usual help button that base sklearn estimators have.
Since the classes have the exact same arguments and docs as those of sklearn, the logic in this PR is to make them point to the docs from sklearn.
Before:
![image](https://private-user-images.githubusercontent.com/180380222/410059216-1d6614ba-ee87-42b6-95c9-37ea08239508.png?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3Mzk0MjU4NTAsIm5iZiI6MTczOTQyNTU1MCwicGF0aCI6Ii8xODAzODAyMjIvNDEwMDU5MjE2LTFkNjYxNGJhLWVlODctNDJiNi05NWM5LTM3ZWEwODIzOTUwOC5wbmc_WC1BbXotQWxnb3JpdGhtPUFXUzQtSE1BQy1TSEEyNTYmWC1BbXotQ3JlZGVudGlhbD1BS0lBVkNPRFlMU0E1M1BRSzRaQSUyRjIwMjUwMjEzJTJGdXMtZWFzdC0xJTJGczMlMkZhd3M0X3JlcXVlc3QmWC1BbXotRGF0ZT0yMDI1MDIxM1QwNTQ1NTBaJlgtQW16LUV4cGlyZXM9MzAwJlgtQW16LVNpZ25hdHVyZT0zYTUwNTZlNWRjYTExZmFlOGYwOGMyMGRlMGI1ZWFkNDdhNjNkNzEzNjAwZjc2MDBmMTg1MDVmM2RlOGQzYTY4JlgtQW16LVNpZ25lZEhlYWRlcnM9aG9zdCJ9.xYeUHDnyf_nVTw8yHdIsFg6V8mYi9Mugd_KdfjksqLg)
After:
![image](https://private-user-images.githubusercontent.com/180380222/410058928-40ae954c-981a-477a-a1ce-fe6093bc7e95.png?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3Mzk0MjU4NTAsIm5iZiI6MTczOTQyNTU1MCwicGF0aCI6Ii8xODAzODAyMjIvNDEwMDU4OTI4LTQwYWU5NTRjLTk4MWEtNDc3YS1hMWNlLWZlNjA5M2JjN2U5NS5wbmc_WC1BbXotQWxnb3JpdGhtPUFXUzQtSE1BQy1TSEEyNTYmWC1BbXotQ3JlZGVudGlhbD1BS0lBVkNPRFlMU0E1M1BRSzRaQSUyRjIwMjUwMjEzJTJGdXMtZWFzdC0xJTJGczMlMkZhd3M0X3JlcXVlc3QmWC1BbXotRGF0ZT0yMDI1MDIxM1QwNTQ1NTBaJlgtQW16LUV4cGlyZXM9MzAwJlgtQW16LVNpZ25hdHVyZT03ODc1ZmE2MmFlNjlhNWIyMDYyYmVmN2EyOWE3OGQ3ZmQ3ODkzNjQyZDUzNjY5ZWFlMWRlNjBlMjc0ZDlkYjk0JlgtQW16LVNpZ25lZEhlYWRlcnM9aG9zdCJ9.XtOAJgcv0nPn-__Nm0vCTiwzEsGmpanCVpy3Of_PkwM)
Checklist to comply with before moving PR from draft:
PR completeness and readability
Testing
Performance
Not applicable.