Skip to content
Tejsumeru

Thoughts Become Reality

  • Tutorials
  • Video Tutorial
  • Tutorials
  • Video Tutorial
  • Machine Learning - Tutorials

    Reinforcement Learning | Machine Learning Beginners

    August 22, 2020 - By tejsumeru.12@gmail.com

    Reinforcement learning is concerned with how software is have to take actions in order to maximize the notion of cumulative reward.

    Continue Reading
  • Machine Learning - Tutorials

    Semi-Supervised Learning | Machine Learning Beginners

    August 22, 2020 - By tejsumeru.12@gmail.com

    Semi-supervised learning is an approach to machine learning that combines labeled data with large amount of unlabeled data during training.

    Continue Reading
  • Machine Learning - Tutorials

    Unsupervised Learning | Machine Learning Beginners

    July 31, 2020 - By tejsumeru.12@gmail.com

    The goal of unsupervised learning is that discover the group of similar behavior or characteristics that is called Clustering

    Continue Reading
  • Machine Learning - Tutorials

    Supervised Learning | Machine Learning Beginners

    July 31, 2020 - By tejsumeru.12@gmail.com

    supervised learning the machine learn from the example or we can say that the presentation of the example.

    Continue Reading
  • Machine Learning - Tutorials

    Introduction Of Machine Learning | Beginners

    July 31, 2020 - By tejsumeru.12@gmail.com

    Machine Learning is system that can learn from example through self improvement without explicitly code by programmer.

    Continue Reading
  • Flutter - Tutorials

    Text To Speech Converter Using Flutter

    July 14, 2020 - By tejsumeru.12@gmail.com

    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…

    Continue Reading
  • Tutorials - Wordpress

    1. How to Install WAMP – The Step by Step Guide

    July 13, 2020 - By tejsumeru.12@gmail.com

    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…

    Continue Reading
  • Flutter - Tutorials

    Navigation Drawer (Sidebar) Using Flutter

    July 12, 2020 - By tejsumeru.12@gmail.com

    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.…

    Continue Reading
  • Flutter - Tutorials

    List Builder In Flutter

    July 11, 2020 - By tejsumeru.12@gmail.com

    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) {…

    Continue Reading
  • Flutter - Tutorials

    Simple Calculator Using Flutter

    July 8, 2020 - By tejsumeru.12@gmail.com

    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…

    Continue Reading
 Older Posts
Newer Posts 

Categories

  • Android With Java
  • Android With Kotlin
  • C language
  • C++ Language
  • Data Structure
  • Error Solving
  • Flutter
  • Go Lang
  • Interview Quetions
  • Java
  • Javascript
  • Kotlin
  • Machine Learning
  • MATLAB
  • PHP
  • Python
  • SciPy
  • Tutorials
  • Wordpress
Graceful Theme by Optima Themes