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

feature-engineering

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

nni
shenoynikhil98
shenoynikhil98 commented Mar 23, 2022

https://github.com/microsoft/nni/blob/8d5f643c64580bb26a7b10a3c4c9accf617f65b1/nni/compression/pytorch/speedup/jit_translate.py#L382

While trying to speedup my single shot detector, the following error comes up. Any way to fix this,

/usr/local/lib/python3.8/dist-packages/nni/compression/pytorch/speedup/jit_translate.py in forward(self, *args)
    363 
    364         def forward(self, *
featuretools
felixwang9817
felixwang9817 commented Apr 6, 2022

Expected Behavior

The __hash__ methods should not be implemented like this:

def __hash__(self) -> int:
    return hash((id(self), self.name))

Objects with the __hash__ method implemented in such a way are not being deduplicated correctly in e.g. sets and dicts.

Current Behavior

Steps to reproduce

Specifications

  • Version:
  • Platform:
  • Subsystem:
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