inspection
Here are 68 public repositories matching this topic...
| Code | Level | Rule | Explanation |
|---|---|---|---|
| VXXX | MAJOR | Added | An abstract class cannot be instantiated anymore. |
| VXXX | MINOR | Removed | Is backward compatible |
Since all the inspections now have up-to-date metadata, which is accessible from the code, we can automate generating documentation that could replace the
inspections section in the readme file https://github.com/sksamuel/scapegoat#inspections.
Probably a separate markdown page that could be linked from the readme would be the easiest thing to start with.
Users should be able to hover a ? hint and see a description of the annotation.
Implement this for the BASE_STYLE annotation.
Overview
This issue contains CLI improvements
Tasks
- support
headersoptions - support granular check options
- support providing validation config instead of options (like stringified json)
My guess would be:
goodtables --checks "{'duplicate-row': True}" datapackage datapackage.json
But it returns:
goodtables.exceptions.GoodtablesE
-
Updated
Jun 13, 2020 - Java
-
Updated
Jul 5, 2018 - Python
-
Updated
Jun 16, 2020
-
Updated
Dec 19, 2019 - JavaScript
-
Updated
Apr 19, 2020 - GLSL
-
Updated
Nov 9, 2015 - Java
-
Updated
Nov 15, 2018 - Python
https://github.com/celery/django-celery is deprecated and it is also an unnecessary dependency.
We can redo the active_status endpoint without django-celery but using https://github.com/jezdez/django-celery-monitor/
So the new code would be added here: https://github.com/psychok7/django-celery-inspect/blob/master/celery_inspect/api/viewsets.py#L29 and it would instead import from:
`from
-
Updated
Jun 25, 2020 - Haskell
-
Updated
Jan 6, 2018 - C++
-
Updated
Feb 5, 2020 - Kotlin
-
Updated
Dec 14, 2017 - Java
-
Updated
Mar 2, 2019
-
Updated
Jan 16, 2020 - Dockerfile
-
Updated
Nov 12, 2019 - Python
-
Updated
Mar 6, 2020 - Python
-
Updated
Dec 11, 2017 - Shell
-
Updated
Aug 21, 2017 - JavaScript
-
Updated
Jun 20, 2019 - JavaScript
-
Updated
Apr 7, 2020 - C++
-
Updated
Aug 5, 2019 - JavaScript
-
Updated
May 7, 2018 - Java
Improve this page
Add a description, image, and links to the inspection topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the inspection topic, visit your repo's landing page and select "manage topics."


RFE/RFECV are not only feature selectors (SelectorMixin) but also classifiers/regressors (MetaEstimatorMixin), though ELI5 explain_weights doesn't support them as classifiers/regressors. The final fit of an RFE/RFECV object is a fitted estimator with either
rfe.estimator_.coef_orrfe.estimator_.feature_importances_and in sklearn you do not usually follow up RFE/RFECV with another classifier