MakerGram Logo

    MakerGram

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Popular
    • Tags
    • Users
    • Groups
    1. Home
    2. SuperGops
    S
    • Profile
    • Following 4
    • Followers 1
    • Topics 1
    • Posts 6
    • Best 4
    • Controversial 0
    • Groups 2

    Gopikrishnan

    @SuperGops

    4
    Reputation
    29
    Profile views
    6
    Posts
    1
    Followers
    4
    Following
    Joined Last Online
    Website www.linkedin.com/in/gopikrishnan-k-331aa7179 Location Coimbatore, India Age 25

    SuperGops Unfollow Follow
    Raspberry Pi Hackers Arduino Lovers

    Best posts made by SuperGops

    • RE: [Solved] leaf disease detection using keras

      I think you need to use the fit or fit_transform function before you predict the classes and use the Binarizer. Have a look at scikit's official documentation for the same.

      https://scikit-learn.org/stable/modules/generated/sklearn.preprocessing.LabelBinarizer.html

      posted in General Discussion
      S
      SuperGops
    • Interrupts in Arduino Due

      I require my Arduino Due to be able to plot a square wave with a predetermined duty cycle and time period, without the use of delay() or millis() or any such function that keeps the processor idle unnecessarily. Hence, I've decided to go for interrupts and found a lot of resources on implementing it on the Uno, but none for the Due.

      Can someone shed light on how I can set up an interrupt ( I guess two will be required here) from the inbuilt timers in the Due?

      posted in Arduino
      S
      SuperGops
    • RE: [Solved] leaf disease detection using keras

      @sreu13
      fit and fit_transform are actually inbuilt functions found in the scikit-learn library. So I'd suggest you fit your model with the available data using those functions whose application can be found on scikit-learn's documentation and then proceed with the Binarizer.

      posted in General Discussion
      S
      SuperGops
    • RE: Capacitive touch sensor for Arduino

      Hey @kowshik1729, why don't you use a five of the touch keys(shown below), form them up in the shape of a cross and get the sequential data across two of those sensors to detect a left/right or up/down swipe?

      https://robokits.co.in/sensors/touch-sensor/capacitive-touch-module-based-on-ttp223

      posted in General Discussion
      S
      SuperGops

    Latest posts made by SuperGops

    • RE: Interrupts in Arduino Due

      @salmanfaris Thanks! I'll definitely have a look at these!

      posted in Arduino
      S
      SuperGops
    • Interrupts in Arduino Due

      I require my Arduino Due to be able to plot a square wave with a predetermined duty cycle and time period, without the use of delay() or millis() or any such function that keeps the processor idle unnecessarily. Hence, I've decided to go for interrupts and found a lot of resources on implementing it on the Uno, but none for the Due.

      Can someone shed light on how I can set up an interrupt ( I guess two will be required here) from the inbuilt timers in the Due?

      posted in Arduino
      S
      SuperGops
    • RE: Capacitive touch sensor for Arduino

      Hey @kowshik1729, why don't you use a five of the touch keys(shown below), form them up in the shape of a cross and get the sequential data across two of those sensors to detect a left/right or up/down swipe?

      https://robokits.co.in/sensors/touch-sensor/capacitive-touch-module-based-on-ttp223

      posted in General Discussion
      S
      SuperGops
    • RE: [Solved] leaf disease detection using keras

      @sreu13 Yup

      posted in General Discussion
      S
      SuperGops
    • RE: [Solved] leaf disease detection using keras

      @sreu13
      fit and fit_transform are actually inbuilt functions found in the scikit-learn library. So I'd suggest you fit your model with the available data using those functions whose application can be found on scikit-learn's documentation and then proceed with the Binarizer.

      posted in General Discussion
      S
      SuperGops
    • RE: [Solved] leaf disease detection using keras

      I think you need to use the fit or fit_transform function before you predict the classes and use the Binarizer. Have a look at scikit's official documentation for the same.

      https://scikit-learn.org/stable/modules/generated/sklearn.preprocessing.LabelBinarizer.html

      posted in General Discussion
      S
      SuperGops