Skip to content
#

machine-learning-algorithms

Machine learning is the practice of teaching a computer to learn. The concept uses pattern recognition, as well as other forms of predictive algorithms, to make judgments on incoming data. This field is closely related to artificial intelligence and computational statistics.

Here are 7,200 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, *
Learn-Data-Science-For-Free

This repositary is a combination of different resources lying scattered all over the internet. The reason for making such an repositary is to combine all the valuable resources in a sequential manner, so that it helps every beginners who are in a search of free and structured learning resource for Data Science. For Constant Updates Follow me in Twitter.

  • Updated Apr 2, 2021
igel
nidhaloff
nidhaloff commented May 27, 2021

Hello everyone,

First of all, I want to take a moment to thank all contributors and people who supported this project in any way ;) you are awesome!

If you like the project and have any interest in contributing/maintaining it, you can contact me here or send me a msg privately:

PS: You need to be familiar with python and machine learning

help wanted good first issue contribution feature
VibhuJawa
VibhuJawa commented Apr 1, 2022

Describe the bug

We should raise better error messages in the scenario when users pass stuff like pandas.Series/list etc to the vectorizer.

Steps/Code to reproduce bug

import cudf
import pandas
from cuml.feature_extraction.text import TfidfVectorizer

vec =  TfidfVectorizer()
text_s = pandas.Series(["apple", "is", "great"])

 vec.fit_transform(text_s)
bug good first issue Cython / Python
adocherty
adocherty commented Nov 27, 2019

Description

Currently our unit tests are disorganized and each test creates example StellarGraph graphs in different or similar ways with no sharing of this code.

This issue is to improve the unit tests by making functions to create example graphs available to all unit tests by, for example, making them pytest fixtures at the top level of the tests (see https://docs.pytest.org/en/latest/

Wikipedia
Wikipedia