• Sign In
  • Sign Up
    Loading ...
View All Updates Mark All Read
Promote New Inventions and Technology
  • Home
  • About Us
  • Members
  • Projects
  • Quizzes
  • Vote
  • Forum
  • Groups
  • Analysis
  • Chat
Amount Earned: $0.00
Masum Bin Alam's Top Achievements
Amount Earned: $0.00
Masum Bin Alam's Top Achievements

Information

  • Regular Member
  • May 4, 2018
  • Member since April 16, 2018
  • 1 friend
  • 1 like, 3,564 views, 0/5

1 Person Like This

  • Mudasir Hussain
  • Previous
    Next
  • Updates
  • Reviews
  • Compliments
  • Friends(1)
  • Followers(1)
  • Info

Updates

The post was not added to the feed. Please check your privacy settings.
  • Fatima Ahmed
    Fatima Ahmed: Alright! Check out the latest featured story on Python Chatterbot. Have been waiting on this Python demo for a while. Thanks to Masum for the tutorial. Now, its complete with the illustrations, my added intro and the Python concepts. Check the full...  moreAlright! Check out the latest featured story on Python Chatterbot. Have been waiting on this Python demo for a while. Thanks to Masum for the tutorial. Now, its complete with the illustrations, my added intro and the Python concepts. Check the full article here as well as in the featured story menu...  
    Quick tutorial on how to build a python chatbot demo
    Quick tutorial on how to build a python chatbot demo
    This tutorial shows you how to build a python chatbot demo using the chatterbot library. Good for beginners as we skip the complicated coding.
    • May 7, 2018
  • Masum Bin Alam
    Masum Bin Alam commented on Fatima Ahmed's video.
    Introduction to TensorFlow
    Link to my previous video- https://www.youtube.com/watch?v=OanIciGv6GQ&feature=youtu.be
    • May 4, 2018
    • Masum Bin Alam
      Fatima Ahmed Masum, thanks for the intro. So where exactly do people use this technology most often? Or what are some use cases? For example, can the chatterbot example you showed previously use this concept? Or is that too simple?
      • May 1, 2018
    • Masum Bin Alam
      Masum Bin Alam Well, Tensorflow has a wide range of applications but basically it's used for machine learning purpose. We can use Tensorflow to let the machine learn on it's own. And yes it can be applied in the chatterbot so that our bot can learn itself from our given data.
      • May 4, 2018
      • -
      • 1 likes this
    • Masum Bin Alam
      Fatima Ahmed OK, sounds good!
      • May 4, 2018
  • Fatima Ahmed
    Fatima Ahmed: Intro video about Tensorflow...used to hear this word many times. Good to know about it high level. Thanks to Masum for the contribution.
    Introduction to TensorFlow
    Link to my previous video- https://www.youtube.com/watch?v=OanIciGv6GQ&feature=youtu.be
    • May 1, 2018
    • Fatima Ahmed
      Fatima Ahmed Masum, thanks for the intro. So where exactly do people use this technology most often? Or what are some use cases? For example, can the chatterbot example you showed previously use this concept? Or is that too simple?
      • May 1, 2018
    • Fatima Ahmed
      Masum Bin Alam Well, Tensorflow has a wide range of applications but basically it's used for machine learning purpose. We can use Tensorflow to let the machine learn on it's own. And yes it can be applied in the chatterbot so that our bot can learn itself from our given data.
      • May 4, 2018
      • -
      • 1 likes this
    • Fatima Ahmed
      Fatima Ahmed OK, sounds good!
      • May 4, 2018
  • Fatima Ahmed
    Fatima Ahmed: Final video about the Python Chatterbot tutorial with music and visuals. Thanks to Masum all the way from Bangladesh University of Engineering and Technology to show me the chatbot coding logic.  Featured article on this coming soon!
    Python Chatbot Tutorial with Chatterbot
    Want to build a super quick and functional chatbot using Python? Then check this video which shows how to use Python's Chatterbot library to quickly deploy a...
    • April 28, 2018
  • Masum Bin Alam
    Masum Bin Alam Here's the second video - Introduction to TensorFlow. Hope you guys like it
    https://www.youtube.com/watch?v=HcsfWEKiTlQ&feature=youtu.be
    • April 20, 2018
    • Fatima Ahmed likes this.
    • Masum Bin Alam
      Fatima Ahmed Masum, stay tuned for questions.
      • April 21, 2018
  • Masum Bin Alam
    Masum Bin Alam commented on Fatima Ahmed's video.
    Machine Learning, Deep Learning and creating a Python chatbot
    the link:- https://github.com/gunthercox/chatterbot-corpus
    • April 16, 2018
    • Fatima Ahmed likes this.
    • View all 8 comments
    • Masum Bin Alam
      Masum Bin Alam You have to make a little bit of change. Instead of ( raw_input ) you have to use ( input ) otherwise it's good
      • April 16, 2018
      • -
      • 1 likes this
    • Masum Bin Alam
      Fatima Ahmed ok, can you please send me the source code of your main program? I think you named it ourchatbot in this tutorial. So basically you used the github code and your code together for this chatbot to work, right?
      • April 16, 2018
    • Masum Bin Alam
      Masum Bin Alam yes...here's the code..

      from chatterbot import ChatBot
      from chatterbot.trainers import...  more
      yes...here's the code..

      from chatterbot import ChatBot
      from chatterbot.trainers import ListTrainer
      import os

      bot=ChatBot('Bot')
      bot.set_trainer(ListTrainer)

      for files in os.listdir ('C:/Users/Masum\Desktop\chatterbot-corpus-master\chatterbot_corpus\data\english/'):
      data = open ('C:/Users/Masum\Desktop\chatterbot-corpus-master\chatterbot_corpus\data\english/'+files, 'r').readlines()
      bot.train(data)

      while True:
      message = raw_input ('You:')
      if message.strip() != 'Bye':
      reply = bot.get_response(message)
      print('ChatBot:',reply)

      if message.strip() == 'Bye':
      print('ChatBot: Bye')
      break  less
      • April 16, 2018
      • -
      • 1 likes this
    • Masum Bin Alam
      Fatima Ahmed ok, can you please e-mail me the ourchatbot.py file? I will include it in the main featured article for people to download it...
      • April 16, 2018
    • Masum Bin Alam
      Fatima Ahmed OK, got the file. Last thing...do you think you can share the original mp4 file also? While adding the music/visual effects before posting to my main site, I may need it, so I dont have to re-record again.
      • April 16, 2018
  • Fatima Ahmed
    Fatima Ahmed: Hi, thanks for the video! It is very good and and I like the instructors video on the bottom right.  My favorite part is in the end when that chatbot was asking weird questions! 
    Machine Learning, Deep Learning and creating a Python chatbot
    the link:- https://github.com/gunthercox/chatterbot-corpus
    • April 16, 2018
    • Fatima Ahmed likes this.
    • View all 8 comments
    • Fatima Ahmed
      Masum Bin Alam You have to make a little bit of change. Instead of ( raw_input ) you have to use ( input ) otherwise it's good
      • April 16, 2018
      • -
      • 1 likes this
    • Fatima Ahmed
      Fatima Ahmed ok, can you please send me the source code of your main program? I think you named it ourchatbot in this tutorial. So basically you used the github code and your code together for this chatbot to work, right?
      • April 16, 2018
    • Fatima Ahmed
      Masum Bin Alam yes...here's the code..

      from chatterbot import ChatBot
      from chatterbot.trainers import...  more
      yes...here's the code..

      from chatterbot import ChatBot
      from chatterbot.trainers import ListTrainer
      import os

      bot=ChatBot('Bot')
      bot.set_trainer(ListTrainer)

      for files in os.listdir ('C:/Users/Masum\Desktop\chatterbot-corpus-master\chatterbot_corpus\data\english/'):
      data = open ('C:/Users/Masum\Desktop\chatterbot-corpus-master\chatterbot_corpus\data\english/'+files, 'r').readlines()
      bot.train(data)

      while True:
      message = raw_input ('You:')
      if message.strip() != 'Bye':
      reply = bot.get_response(message)
      print('ChatBot:',reply)

      if message.strip() == 'Bye':
      print('ChatBot: Bye')
      break  less
      • April 16, 2018
      • -
      • 1 likes this
    • Fatima Ahmed
      Fatima Ahmed ok, can you please e-mail me the ourchatbot.py file? I will include it in the main featured article for people to download it...
      • April 16, 2018
    • Fatima Ahmed
      Fatima Ahmed OK, got the file. Last thing...do you think you can share the original mp4 file also? While adding the music/visual effects before posting to my main site, I may need it, so I dont have to re-record again.
      • April 16, 2018
  • Masum Bin Alam
    Masum Bin Alam Hello guys, here's my very first tutorial on Machine Learning, Deep Learning and creating a Python chatbot https://www.youtube.com/watch?v=OanIciGv6GQ&feature=youtu.be
    • April 16, 2018
    • Fatima Ahmed likes this.
  • Masum Bin Alam
    Masum Bin Alam is now friends with Fatima Ahmed.
    • April 16, 2018
  • Fatima Ahmed
    Fatima Ahmed: Hi Masum, welcome to the site. Can you post your chatterbot video in your wall? 
    • April 16, 2018
  • Masum Bin Alam
    Masum Bin Alam has just signed up. Say hello!
    • April 16, 2018
    • Fatima Ahmed likes this.
View More
Loading ...

Reviews

    No review have been posted on this member yet.
View More

Compliments

Masum Bin Alam's Compliments
    No compliment created yet.
View More

Friends

  • Fatima Ahmed
    Regular Member
    615 Friends
    18 34686 0/5
View More

Followers

  • Mudasir Hussain
    5 Friends
  • Previous
    Next

Info

Personal Information

  • First Name Masum
  • Last Name Bin Alam
  • Gender Male
  • Birthday July 2, 1998
  • Hometown Dhaka, Bangladesh
  • Major Mechanical Engineering
  • Favorite Course or Subjects Robotics
  • Interests Programming
  • Favorite Coding Language Python

Personal Details

  • About Me I'm Masum
Copyright ©2023  -  Privacy  -  Terms of Service  -  Contact  -  Mobile Site

Create Account

You will use your email address to login.

Passwords must be at least 6 characters in length.

Enter your password again for confirmation.

This will be the end of your profile link, for example:
http://www.coolinventor.com/profile/yourname

 
 

Member Sign In

If you already have an account, please enter your details below. If you don't have one yet, please sign up first.

 
 
 
Forgot Password?
 
Connect with Facebook
Share