Gaurav Sheni

Results 154 issues of Gaurav Sheni

> cosine similarity is simply the cosine of the angle between two vectors ![1_C7HsPWATekvZtFyPesB-BA](https://user-images.githubusercontent.com/8726321/162989868-311cf0c6-33af-4c8a-806f-eeba82927a1e.png)

- https://docs.scipy.org/doc/scipy/reference/generated/scipy.spatial.distance.chebyshev.html - https://en.wikipedia.org/wiki/Chebyshev_distance

- There is currently an error with Python 3.10 and M1 Macs - There seems to be some libomp (or gcc/llvm) issue with matrixprofile (which is a tsfresh requirement) :...

- Before releasing Featuretools 1.0.0, we should update setup.py to specify the Woodwork typing support version: - https://github.com/alteryx/featuretools/blob/9344680f3980c84eb1bb376feef007896864c823/setup.py#L12

> Geohash is a public domain geocode system invented in 2008 by Gustavo Niemeyer[1] and (similar work in 1966) G.M. Morton,[2] which encodes a geographic location into a short string...

When a primitive like `RollingMax` or `RollingMean` is passed into DFS along with cutoff times, the resulting features do not correctly calculate the value of interest over the specified `time_frame`....

AutoNormalize should be available for download via conda-forge. Documentation on how to contribute a package: https://conda-forge.org/docs/maintainer/adding_pkgs.html Example PR of contributing a package: https://github.com/conda-forge/staged-recipes/pull/16033

- We should add a `release.md` file that follows our other libraries - https://github.com/alteryx/woodwork/blob/main/release.md - https://github.com/alteryx/featuretools/blob/main/release.md - Some parts of this will apply to `autonormalize` and some parts will not

- Using this [dataset.csv.zip](https://github.com/FeatureLabs/autonormalize/files/4418093/dataset.csv.zip) ```python import pandas as pd import autonormalize as an data = pd.read_csv('dataset.csv.zip') es = an.auto_entityset(data, name="fraud", index='id', time_index='datetime') ``` Results in the following error: ``` ValueError:...

- We should modify the Install Test workflow that install EvalML in MacOS and Ubuntu (currently its only Ubuntu): ```yaml name: Install Test jobs: install_ft_complete: name: ${{ matrix.os }} -...

enhancement