Skip to content
#

feature-extraction

Here are 1,076 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, *
Oortone
Oortone commented Oct 26, 2021

Is your feature request related to a problem? Please describe.
Using the CLI to output parameters, those audio features who are multidimensional like amplitudeSpectrumand mfcc will not get corresponding label names in the first row of the generated csv-file. This makes it complicated to import using csv-importers like pandas in Python.
It's also unclear which bin each column represents.

feature_engine
solegalli
solegalli commented Dec 17, 2021

The transformer should create computations over windows of past values of the features, and populate them at time t, t being the time of the forecast.

It uses pandas rolling, outputs several comptutations, mean, max, std, etc, and pandas shift to move the computations to the right row.

tmp = (data[variables]
       .rolling(window='3H').mean()  # Average the last 3 hr values.
       .
new feature good first issue

Feature engineering is the process of using domain knowledge to extract features from raw data via data mining techniques. These features can be used to improve the performance of machine learning algorithms. Feature engineering can be considered as applied machine learning itself.

  • Updated Nov 29, 2020
  • Jupyter Notebook

Improve this page

Add a description, image, and links to the feature-extraction 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-extraction topic, visit your repo's landing page and select "manage topics."

Learn more