feature-engineering
Here are 1,411 public repositories matching this topic...
-
Updated
Mar 3, 2022 - Python
- As a user, I wish featuretools
dfswould take a string as cutoff_time aswell as a datetime object
Code Example
fm, features = ft.dfs(entityset=es,
target_dataframe_name='customers',
cutoff_time="2014-1-1 05:00",
instance_ids=[1],
cutoff_time_in_index=True)as well as
Expected Behavior
Feast should allow users to create feature views with .csv data sources and retrieve features from offline store without any issues.
Current Behavior
Presently, I have a .csv file sitting in S3 bucket and I am able to create a feature view using this .csv file but while fetching the features from offline store getting below error
-------------------------
-
Updated
Apr 22, 2022 - Java
Problem
Some of our transformers & estimators are not thoroughly tested or not tested at all.
Solution
Use OpTransformerSpec and OpEstimatorSpec base test specs to provide tests for all existing transformers & estimators.
When using r2 as eval metric for regression task (with 'Explain' mode) the metric values reported in Leaderboard (at README.md file) are multiplied by -1.
For instance, the metric value for some model shown in the Leaderboard is -0.41, while when clicking the model name leads to the detailed results page - and there the value of r2 is 0.41.
I've noticed that when one of R2 metric values in the L
-
Updated
Feb 10, 2021 - Python
-
Updated
Apr 22, 2022 - Scala
pstmt is useless, delete it. And delete statement in finally block.
-
Updated
Feb 14, 2017 - Jupyter Notebook
-
Updated
Feb 11, 2022 - Python
Add missing_only functionality to all imputers to use in combination with variables=None
When variables is None, the imputers select all numerical, or categorical or all variables by default. With the missing_only, it would select only those from each subgroup that show missing data during fit.
-
Updated
Dec 20, 2017 - Python
-
Updated
Feb 4, 2021 - Jupyter Notebook
-
Updated
Dec 15, 2018 - Jupyter Notebook
-
Updated
Mar 6, 2022 - Python
-
Updated
Jan 20, 2021 - Python
-
Updated
May 8, 2019 - Python
-
Updated
Apr 18, 2022 - Jupyter Notebook
-
Updated
Oct 26, 2018
-
Updated
Apr 5, 2022 - Python
In #3324 , we had to mark some tests as expected to fail since XGBoost was throwing a FutureWarning. The warning has been addressed in XGBoost, so we're just waiting for the PR merged to be released. This issue is discussed in the #3275 issue.
evalml/tests/component_tests/test_xgboost_classifier.py needs to have the @pytest.mark.xfail removed f
-
Updated
Apr 21, 2022 - Python
-
Updated
Feb 16, 2022 - Jupyter Notebook
Is your feature request related to a problem? Please describe.
We should implement useful implementations of:
class ResultMixin(object):
"""Base class housing the static function.
Why a static function? That's because certain frameworks can only pickle a static function, not an entire
object.
"""
@staticmethod
@abc.abstractmethod
def build_-
Updated
Mar 1, 2022 - Jupyter Notebook
-
Updated
Jul 1, 2019 - Python
Improve this page
Add a description, image, and links to the feature-engineering topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the feature-engineering topic, visit your repo's landing page and select "manage topics."


Describe the issue:
During computing Channel Dependencies
reshape_break_channel_dependencydoes following code to ensure that the number of input channels equals the number of output channels:This is correct