Click here to Skip to main content
15,885,021 members
Everything / Artificial Intelligence / Machine Learning

Machine Learning

machine-learning

Great Reads

by Thomas Weller
Demonstrates how to run Python scripts from C#
by Andy Allinger
Add features to k-means for missing data, mixed data, and choosing the number of clusters
by Dmitriy Gakh
The perspectives of creating bots that write programs with two simple examples.
by Andrew Kirillov
The article demonstrates usage of ANNT library for creating convolutional ANNs and applying them to image classification tasks.

Latest Articles

by Michael Chourdakis
An introduction to machine learning with working C++ code that trains a linear regression model.
by Nicolas DESCARTES
How to implement neural networks in C#?
by Nicolas DESCARTES
How to implement logistic regression in ML.NET?

All Articles

Sort by Updated

Machine Learning 

10 Jan 2019 by #realJSOP
I suggest comment out as much as possible and compile to make sure a codeless app copiles correctly, and then start adding code back a little at a time, and compile after each part is added back. Do this until the copile fails, and you've at least narrowed down your problem and can concentrate...
26 Nov 2019 by @Abdul Azeez Thekkekandy
This article explores Data Science lifecycles - Business Understanding, Data Understanding and Data Preparation
2 Nov 2019 by @Abdul Azeez Thekkekandy
This article describes how AI can be utilized to make a better team strategy from Manager (or Team Coach) in a live soccer game by utilizing SAP HANA and Amazon Sagemaker capabilities together.
13 May 2015 by A. Fry
Hello -I am new to the ML scene and I am trying to understand the best practice for designing neural networks that "feed" other neural networks.For instance in the following example (image) we have two networks (1 & 2) which are using input data feed by a file. They were trained on 80%...
25 Aug 2017 by Abderrahim Ben
For example we want to calculate mean of a list of numbers where the list is so long. and that numbers when sorted are nearly linear (or we can find a linear Regression Model for data). Mathematically we can aggregate mean by ((arr[0] + arr[length(arr)]) / 2 ) + intercept Or in the case,...
28 Jul 2021 by Abdulkader Helwan
In this article, we show you how to set up an Android Studio environment that is suitable for loading and running our .tflite model.
8 Jul 2020 by Abhay binwal
I HAVE USED A DIABETES DATASET FOR TRAINING MY NEURAL NETWORK, AND MY MODEL IS OVERFITTING. HOW CAN I PREVENT THIS, I HAVE TRIED FEW METHODS TOO BUT IT DIDNT WORKED WELL. HOPE I CAN FIND ANY SOLUTION TO THIS PROBLEM ASAP. TRY RUNNING THIS CODE I...
24 Feb 2021 by Abhijeet Rohilla
Is there any way we can identify a product whether its a counterfeit or original? Is there any type of technology which can be used to identify counterfeit goods? Any suggestion would be appreciated. What I have tried: I have tried Image API...
22 Mar 2015 by Aby Mammen Mathew
IoT devices needs the capability to augment the environment around them, even when sensors utilized by them break down
17 Apr 2016 by Adamanteus
Preserving overheating processor in multitasking environment
19 May 2023 by Adarsh Kumar Apr2023
I want to make a machine learning phishing detection solution that can detect the main source of phishing attacks What I have tried: I have tried different algorithm and module like logistic algorithm and scikit-learn module
3 Feb 2008 by Adnan Masood
Disucssing use of WCFSvcHost and WcfTestClient for Service hosting and testing
21 Jan 2019 by Adrian Pirvu
A closer look into differences between natural nervous systems and artificial neural networks
15 Apr 2019 by Afzaal Ahmad Zeeshan
Integrating Cognitive Services SDKs in a .NET Core based application and exploring how real-world scenarios can be tackled using ML services offered by Microsoft
24 Jul 2019 by Afzaal Ahmad Zeeshan
Quote: the way to label it We can start here. Computer algorithms need enough data to perform their tasks. In machine learning, the learning tasks are categorized as supervised or unsupervised. In supervised learning you provide the data with independent and dependent variables; your input...
15 Apr 2019 by Afzaal Ahmad Zeeshan
Integrate Cognitive Services SDKs in .NET Core based app
21 Jul 2023 by ahmed_sa
I'm dot net developer for more than 10 years . I need to learn AI and make projects for it and I don't have any knowledge about that so i have more questions and i need any one specialist AI answer for me 1- what best language i will learn to...
12 Jul 2021 by Ahmet Furkan Sahin
write this program in MSP430 language : a- there is an array containing the average grades of 32 students which starts at the address 0x200 write a main program that converts the average grades to the letter grades using a LETTER...
14 Feb 2017 by Akbar Fardi
i have a codeand i have this error:ValueError:Empty vocabulary:perhaps document has only contain stop words.this is stop words.txt:a an the of as to in ifWhat I have tried:#Created on Sat May 07 21:12:41 2016from sklearn import cross_validationfrom...
24 May 2017 by Akhil Mittal
In this and the following articles on Machine Learning to figure out whatMachine Learning is and what can be achieved with it
4 Jun 2017 by Akhil Mittal
This is the second article of the series and will largely focus on machine learning processes and scenarios.
28 May 2019 by Akhil Mittal
Face recognition and detection using modern AI based Azure cognitive service
8 Jun 2013 by akosisugar
Hi. i have made a simple application in vb.net w/ a database(mdf)file. ived already made it an installer. i installed it on my pc and the program works successfully, i can add, save, delete.etc as it featured in my application. but the problem is when i installed it to other pc the application...
18 Nov 2018 by Akshay Ravish
Hello, I have some basic knowledge of programming. I have learned html5 and CSS in past and I am thinking of making a career in machine learning. Can someone tell me the best way to learn it and which language is best to start and Where I can find material for programming? Can somebody tell me...
6 Jun 2020 by Alaa Ben Fatma
A visual scripting environment for R & data science
9 May 2016 by Alexandr Surkov
30 Apr 2011 by Ali Tarhini
Efficient Face Detection Algorithm using Viola Jones method Introduction Object detection is detecting a specified object class such as cars, faces, plates ext.
18 Jan 2017 by Alibaba Cloud
This post features a basic introduction to Machine Learning. This post on Machine Learning will not only help you to understand the latest trends in the Internet industry, but increase your understanding of the technology that plays a major role in many services that make our lives easier.
13 Feb 2017 by Alibaba Cloud
In this post, we learn about algorithms that help implement ML functions.
14 Feb 2017 by Alibaba Cloud
This post features a basic introduction to machine learning (ML). You don’t need any prior knowledge about ML to get the best out of this article. Before getting started, let’s address this question: "Is ML so important that I really need to read this post?"
16 Jan 2020 by Alon Lek
Find the best way to predict column value based on other columns, quickly and simply
31 Mar 2023 by Alva Rizky
Here the code from begin : import pandas as pd import numpy as np import matplotlib.pyplot as plt import numpy as np import warnings warnings.filterwarnings('ignore') import seaborn as sns sns.set_style("whitegrid") from...
20 May 2023 by Alva Rizky
I have a pickle dataset, the labels i want to change is "mouse_type" to "mouse" label. I used streamlit How can i do it ? Thank you What I have tried: I have no idea, need help Thank you
22 May 2023 by Alva Rizky
Is it possible if i transform numerical value into categorical value after the dataframe become model/machine learning and saved as pickle format file ? in this case i creating prediction system What I have tried: If that possible, can anyone...
9 Jun 2023 by Alva Rizky
So create a program to predict car price, i use streamlit. then user must fill out the form. Then there form which user should fill the year of the car. Here is the code year = st.number_input('What year was the vehicle manufactured in ? ' ,...
9 Apr 2023 by Alva Rizky
In here i try to predict selling price of used car using XGBoost algorithm, the total of dataset is only 311. for the column are Name, seller type, year, selling price, transmission, km driven, owner. R2 RESULT : score =...