Internet of Things (IoT): The New Frontier The rising influence of the internet has made connectivity ubiquitous and available to all businesses and people. The internet, with its network of large servers and individual computers and whole network of connecting devices like routers, modems, sensors, adapters, cables etc. together with the appropriate software, forms one huge network whose tremendous computing power enables various processes to be faster, efficient and cost effective. Sometime back, the only devices that could connect to …
Author: learntek
Deep Learning and Neural Network : You can think of it – how a child learns through constant experiences and replication. Deep learning and Neural Network could provide unexpected business models for companies. We know that computers are better than people at crunching series of numbers or faster processing of monotonous job, but what about tasks that are more complex? How do you teach a computer what a Dog looks like? Or how to drive a car? Or how to …
Time Series Forecasting is an important area of Machine Learning that is often Neglected. Time Series Forecasting uses different Technologies like Machine learning, Artificial neural networks, Support vector machines, Fuzzy logic, Gaussian processes, Hidden Markov models What is Time Series? A time series is a sequence of measurements done over time, usually obtained at equally spaced intervals, be it daily, monthly, quarterly or yearly. Time series analysis comprises methods for analyzing time series data in order to extract meaningful statistics and other …
Cloud Computing is Changing the Business Success Hey! I left that file on my computer. I will have to send it to you when I get back to office. Nowadays it sounds weird. Everything we do is on the cloud. Our favourite music and movies are streamed online. Even the notes we keep on our phones, most of which are about as important as a grocery list, are backed up and accessible on the cloud from anywhere. Cloud computing has …
Machine Learning and Pattern Recognition Machine Learning and Pattern Recognition : In a very simple language, Pattern Recognition is a type of problem while Machine Learning is a type of solution. Pattern recognition is closely related to artificial intelligence and machine learning. Pattern Recognition is an engineering application of Machine Learning. Machine learning deals with the construction and study of systems that can learn from data, rather than follow only explicitly programmed instructions whereas Pattern recognition is the recognition of …
Python Threading In the previous article, you have seen the threading methods. In this article, you will see daemon threads and locks. Daemon Thread: So far, we have created the non-daemon thread. What is the daemon thread? When the main thread exits, it attempts to terminate all of its daemonic child threads. Consider an example of GUI as shown below Consider, by GUI input some calculation is being performed in the background and the calculation is taking its time. If you …
Python Thread A Python thread is like a process, and may even be a process, depending on the Python thread system. In fact, Python threads are sometimes called “lightweight” processes, because threads occupy much less memory, and take less time to create than do processes. Threads allow applications to perform multiple tasks at once. Multi-threading is important in many applications. In python, threading module is used to create the threads. In order to create threads, threading modules can be used …
Python Enumerate : python enumerate() is basically a python built in function. During certain situations where we deal with lot of iterators we also need to keep count of iterations, in these type of situations python built in function Enumerate comes handy. It helps to add counter to the iterable and returns an enumerate object. The basic syntax :- enumerate(iterable, start=0) The enumerate() function takes two parameters namely : iterable – It is a sequence, an iterator or objects which …
Machine Learning and Artificial Intelligence Difference between Machine Learning and Artificial Intelligence : Okay Google! What’s Up? Could you play my favourite track or Book a Cab from Palace Road to MG Road. Alexa, What time it is? Wake me up at 5AM. Could you please tell my tomorrow meetings. These are the perfect combination of Machine Learning and Artificial Intelligence. Machine learning: Machine learning is a method of data analysis that automates analytical model building. Machine learning is a …
Python Time : In this article, we’ll see how to use Python’s modules which are related to the time and date. In this python time article we will cover lots of problem like current time, previous time, time gap, epoch time etc. Let us start with the python time first module time. Python Time – Time: First import the time module. Then we will study some important functions of time modules. The time() function The time() function returns the float …