Reinforcement learning is concerned with how software is have to take actions in order to maximize the notion of cumulative reward.
-
-
Semi-supervised learning is an approach to machine learning that combines labeled data with large amount of unlabeled data during training.
-
The goal of unsupervised learning is that discover the group of similar behavior or characteristics that is called Clustering
-
supervised learning the machine learn from the example or we can say that the presentation of the example.
-
Machine Learning is system that can learn from example through self improvement without explicitly code by programmer.
-
Hello guys, Today we are going to develop application that convert text to speech using flutter. For this we are going to use Flutter tts package. You can get more information about this package in following link. Text To Speech For video tutorial you can go through this. First you have to add dependency of tts into pubspec.yaml as below dependencies: flutter: sdk: flutter # The following adds the Cupertino Icons font to your application. # Use with the CupertinoIcons class for iOS style icons. cupertino_icons: ^0.1.3 flutter_tts: ^1.2.6 # add this line Now for android you have to change…
-
Hello guys, Do you want to develop website even if you don’t have deep knowledge of developing?? Then today we are going to show step by step process to develop website for non technical person. Here is some basic stuff you have to done before going to develop website. Professional developers always prefer to test their project on locally before they make them live. And if you want to test your website before make it live to users you have to install WAMP or XAMPP server. Here we are going to install WAMP server. For install XAMPP server Visit How…
-
Hello guys, Today we are going to learn how to implement navigation drawer or side bar using Flutter. In this article we are implementing basic side bar, in upcoming articles we are going to learn material sidebar. So let’s get started. First, create new flutter project and then create main class SideBar and call inside main method. The code is given below. import 'package:flutter/material.dart'; void main() => runApp(SideBar()); class SideBar extends StatelessWidget { @override Widget build(BuildContext context) { return MaterialApp( debugShowCheckedModeBanner: false, home: HomePage(), ); } } Now, we can see in home we are calling object of HomePage class.…
-
Hello guys, Today we are going to learn how to implement ListView.builder() in flutter. As we know that in android developement when we have list of items and required to list out in screen we are using adapter for that purpose, similar manner in flutter we can use ListView.builder(), using which we can use list out list of item in custom designed block. So let’s get started… First create the new flutter project and then in main.dart file code as below for main screen as below. import 'package:flutter/material.dart'; void main() => runApp(MyApp()); class MyApp extends StatelessWidget { @override Widget build(BuildContext context) {…
-
In this article, we are going to learn how to make simple Calculator android and ios application using flutter. For this purpose we are using two library which are given below. material.dart math_expressions.dart First library is used in any flutter application for GUI purpose, and second one is used for maths expression solve. In pubspec.yaml file you have to add following library. dependencies: flutter: sdk: flutter # The following adds the Cupertino Icons font to your application. # Use with the CupertinoIcons class for iOS style icons. cupertino_icons: ^0.1.3 math_expressions: ^2.0.0 Now click on pub upgrade on upper side. For…