The Wayback Machine - https://web.archive.org/web/20220422181848/https://github.com/topics/feature-engineering
Skip to content
#

feature-engineering

Here are 1,411 public repositories matching this topic...

nni
pkubik
pkubik commented Mar 14, 2022

Describe the issue:
During computing Channel Dependencies reshape_break_channel_dependency does following code to ensure that the number of input channels equals the number of output channels:

in_shape = op_node.auxiliary['in_shape']
out_shape = op_node.auxiliary['out_shape']
in_channel = in_shape[1]
out_channel = out_shape[1]
return in_channel != out_channel

This is correct

bug help wanted good first issue model compression
featuretools
Parvez-Khan-1
Parvez-Khan-1 commented Apr 18, 2022

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

-------------------------
mljar-supervised
moshe-rl
moshe-rl commented Nov 30, 2021

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

bug help wanted good first issue
feature_engine
evalml
chukarsten
chukarsten commented Feb 15, 2022

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

testing good first issue tech debt
skrawcz
skrawcz commented Feb 11, 2022

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_
enhancement good first issue dask

Improve this page

Add a description, image, and links to the feature-engineering topic page so that developers can more easily learn about it.

Curate this topic

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."

Learn more