Questions tagged [machine-learning]

How can we build computer systems that automatically improve with experience, and what are the fundamental laws that govern all learning processes?

From The Discipline of Machine Learning by Tom Mitchell:

The field of Machine Learning seeks to answer the question "How can we build computer systems that automatically improve with experience, and what are the fundamental laws that govern all learning processes?" This question covers a broad range of learning tasks, such as how to design autonomous mobile robots that learn to navigate from their own experience, how to data mine historical medical records to learn which future patients will respond best to which treatments, and how to build search engines that automatically customize to their user's interests. To be more precise, we say that a machine learns with respect to a particular task T, performance metric P, and type of experience E, if the system reliably improves its performance P at task T, following experience E. Depending on how we specify T, P, and E, the learning task might also be called by names such as data mining, autonomous discovery, database updating, programming by example, etc.

3322 questions
-1
votes
1 answer

No free lunch theorem, number of sequences

At the beginning of the prove, there is this sentence: There are $k = (2m)^m$ possible sequences of $m$ examples from $C$. From other source: If our input space consists of $2m$ points and our training data consists of a sequence of $m$ points, then…
-1
votes
2 answers

formula in DataScience book

$$P(y^i = 1 | x^i)$$ Can't remember from book what's mean this P? Someone can help me? book: "applied deep learning: a case-based approach to understanding deep neural networks"
-1
votes
2 answers

confusion matrix - how to determine values of TN and FN

Given is a problem statement - Let there be 10 balls of which 6 are white and 4 are red. Let it be required to pick up the red balls from them. Suppose, we pick up 7 balls as the red balls of which only 2 are actually red balls. What are the values…
-1
votes
1 answer

How to select histogram bins for machine learning task?

I'm using a histogram values as features in the machine learning task. How to select the best bins? I thought at the beginning to break the range into large bins, than break significant bins again but until when? And may be there a special…
-1
votes
2 answers

Svm Classification

What can be the theoretical reason/s for which a support vector machine with linear kernel (implemented with LinearSVC from sklearn) fails miserably in a multi-class (5 classes) classification?
-1
votes
1 answer

How does feature mapping work in Andrew Ng's Logistic Regression course?

1 ✓ x₁ ✓ x₂ ✓ x₁^2 sure.... x₁x₂ ✓i guess x₂^2 ✓ x₁^3 ???????????? This is a sequence, right? I can't figure out the pattern. Why not just 1,x₁,x₂,x₁x₂,(x₁^2)x₂,x₁(x₂^2),(x₁^2)(x₂^2), etc?
-2
votes
1 answer

How to derive the logistic regression formula?

My question is how to derive we can use sigmoid function 1/(1+e^(-w*x)) to map w*x to probability space? what's the theory behind to prove sigmoid function is optimal method for mapping? Thanks for you help.
Ntydrm
  • 111
1 2 3
14
15