In machine learning, pattern recognition is the assignment of a label to a given input value. An example of pattern recognition is classification, which attempts to assign each input value to one of a given set of classes (for example, determine whether a given email is "spam" or "non-spam"). However, pattern recognition is a more general problem that encompasses other types of output as well. Other examples are regression, which assigns a real-valued output to each input; sequence labeling, which assigns a class to each member of a sequence of values (for example, part of speech tagging, which assigns a part of speech to each word in an input sentence); and parsing, which assigns a parse tree to an input sentence, describing the syntactic structure of the sentence.
Monday, May 7, 2012
Monday, November 14, 2011
Million Dollar Business this Weekend
I've been looking around at facebook with many subscriptions that show up at my home page. I found this one wich caught my attention.
a piece of the text:
For some reason, people love to make excuses about why they haven’t created their dream business or even gotten started. This is the “wantrepreneur” epidemic, where people prevent themselves from ever actually doing the side-project they always talk about over beers. The truth of the matter is that you don’t have to spend a lot of time building the foundation for a successful business. In most cases, it shouldn’t take you more than a couple days.
Here is the link about creating a business like MINT:
Friday, March 4, 2011
Visual Studio Profiler
Here is an article about Visual Studio Profiler. I was checking at the enviroment and then no such a thing like a performance tools in Tools option. so I checked around to find out my version was a Profesional Edition, and that "It is by design that Professional edition of Visual Studio doesn't have this feature. you need the Visual Studio Developer edition or Team Suite edition."
Well everything goes and I will try AQTime then to watch performance on FastBanking application.
Well everything goes and I will try AQTime then to watch performance on FastBanking application.
Wednesday, March 2, 2011
how good is to divide groups
Reading about this topic in programmers exchange, I assume that maybe small groups would communicate better but some projects might be a bit bigger so you need to create a module for each team and focalize what you have. Still who will lead the group would have to create a methodology so developers could giveback with no overpressure. I think is good to be inmerse in UI and BL both so you would have a better understanding of the solution, but sometimes, when a developer is more skillful in one area than the other(design) you probably would have better results focusing people on what they feel more comfortable.
measure of response in method
I had the task to test a method and measure how much time was taken.
Here is how i did it:
Stopwatch sw = new System.Diagnostics.Stopwatch();
sw.Start();
FillDropDownList();
buttonContinue.Text = "it take... (ms): " + sw.ElapsedMilliseconds;
sw.Stop();
Notice that in order to use StopWatch you will need the System.Diagnostics.
Here is how i did it:
Stopwatch sw = new System.Diagnostics.Stopwatch();
sw.Start();
FillDropDownList();
buttonContinue.Text = "it take... (ms): " + sw.ElapsedMilliseconds;
sw.Stop();
Notice that in order to use StopWatch you will need the System.Diagnostics.
Tuesday, January 25, 2011
Send Mail on a quick way
here is a sending e-mail on a quick way
string strTo = "christophw@sleeper.Dev.AlfaSierraPapa.Com"; string strFrom = "webmaster@aspheute.com"; string strSubject = "Hi Chris"; SmtpMail.Send(strFrom, strTo, strSubject, "A real nice body text here");
Response.Write("Email was queued to disk");
Thursday, December 2, 2010
Game Development Degree vs Computer Science Degree
Abouth to have or not to have a Degree I found a very interesting question to look at Game Development. I keep on thinking that in my personal point of view, well is needed to have a way to do things properly and save time instead on finding by your self. This is were a degree is useful, but there is nothing like experience, this makes academy a bit slower than real life issues on the frontdesk or de back office.
Subscribe to:
Posts (Atom)