Skip to content
#

Machine learning

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 37,385 public repositories matching this topic...

fdb
fdb commented Jan 6, 2020

URL(s) with the issue:

https://www.tensorflow.org/tfx/tutorials/transform/census#python_check_imports_and_globals

Description of issue (what needs changing):

The text says "First we'll make sure that we're using Python 2, and then go ahead and install and import the stuff we need." but the code below indicates we need to use Python 3.

Clear description

The text states:

Sandy4321
Sandy4321 commented Dec 1, 2019

Description

if MultinomialNB there is strange behavior of clf.coef_:
clf.coef_ is the same as clf.feature_log_prob_[1]

and

clf.intercept_ is the same as only one clf.class_log_prior_

for example
clf.feature_log_prob_[0][0:3]

array([-3.63942161, -3.17296199, -4.59417863])

clf.feature_log_prob_[1][0:3]

array([-3.51935008, -3.010937 , -6.41836494])

clf.coef_[0][0:3]

yf225
yf225 commented Sep 30, 2019

Context

We would like to add torch::nn::functional::normalize to the C++ API, so that C++ users can easily find the equivalent of Python API torch.nn.functional.normalize.

Steps

  • Add torch::nn::NormalizeOptions to torch/csrc/api/include/torch/nn/options/normalization.h (add this file if it doesn’t exist), which should include the following parameters (based on https://pytorch.
NilsIrl
NilsIrl commented Dec 25, 2019

Current Behavior:

The the wiki page APIExample, for the python example, the handle api is is run through the TessBaseAPIDelete funciton if the api failed to be initialized whereas for the C example below, this is not the case.

python:

rc = tesseract.TessBaseAPIInit3(api, TESSDATA_PREFIX, lang)
if (rc):
    te
julia
GuntaButya
GuntaButya commented Feb 10, 2019

@microsoft AI Team - Fantastic Product! Thank You!

PLEASE: Better documentation on Source Code and Fields, Properties, Methods, and Constructors, just a detailed Summary, please in the C# projects.

When coding, the IntelliSense documentation is very handy! I would really appreciate more detailed documentation.

An example: PreviousMinibatchEvaluationAverage - I have no idea what its ac

openpose
ran2207
ran2207 commented Dec 5, 2019

I am having difficulty in running this package as a Webservice. Would appreciate if we could provide any kind of documentation on implementing an API to get the keypoints from an image. Our aim is to able to deploy this API as an Azure Function and also know if it is feasible.

HendricButz
HendricButz commented Nov 17, 2019

I got a conllU file, from my university, where the head column is filled with .
Processing such file with the cli.convert method will result in a int cast error in
https://github.com/explosion/spaCy/blob/master/spacy/cli/converters/conllu2json.py line 73
in the read_conllx method (head = (int(head) - 1) if head != "0" else id
).

In the format documentation on https://universaldependencie

You can’t perform that action at this time.