/g/ - Technology

Board dedicated to discussions related to everyday technology!

0/4000

BharatChan Disclaimer

Notice

Before proceeding, please read and understand the following:

1. BharatChan is a user-generated content platform. The site owners do not claim responsibility for posts made by users.

2. By accessing this website, you acknowledge that content may not be suitable for all audiences.

3. You must follow BharatChan’s community guidelines and rules. Failure to do so may result in a ban.

4. By using BharatChan users agree to the use of cookies, mostly for session related to user.

A poster on BharatChan must abide by the following rules:

Sitewide Rules
You must be 18 or older to post.
Sharing personal details or engaging in doxing is strictly prohibited.
Political discussions should be confined to /pol/.
NSFW content is only allowed in /kama/.
Off-topic discussions, thread derailment, or spam may result in a ban and IP blacklist.
Pornographic content is strictly prohibited.
Any activity violating local laws is not allowed.
Acknowledge

Recent Posts

MLfags gtfih

View

Rust

View

View

View

skills

View

More electronics manufacturing moving to India

View

Working on my game in a late night game dev sessio...

View

RSS feed for Bharatchan ?

View

बिना वीपीएन के टाॅरेण्ट डाउनलेड कर लिया

View

soyjak.st forum which hacked 4chin blocks all indi...

View

Truth of Computer Programming

View

Browsing best practices

View

Picrel is a 56 yr old auntyji from Amreeka

View

Placement

View

View

Tatti windows

View

View

WebDev general

View

Seeding paid courses

View

View

AI = Actually Indonesians

View

View

alternative frontends

View

View

Seedhe maut 🔥

View

Script request

View

GOOGLE FIREBASE

View

Sach bol raha he kya?

View

View

sharing doxxing/hacking tutorial

View

आर्च लिनक्स को कैसे इंस्टॉल करें?

View

View

Machine learning with C±+

View

View

View

making a glow-proof smartphone

View

/AI/premiums

View

View

View

Torrent links general

View

how to ddos a site?

View

Kalej doesnt want me to do shit.

View

Making a community of people who want to code and ...

View

View

Every software is open source of you know assembly

View

It's over

View

No Innova-ck

View

archive.today prolly getting attacked by glowies

View

why jeets dont seed ?

View

View

MLfags gtfih

Anonymous

IN

2pxMXR

No.824

I trained a cnn on this dataset

https://data.mendeley.com/datasets/b6fftwbr2v/1

[Blocked URL: https://www.sciencedirect.com/science/article/pii/S2352340921009616]

then i did feature extraction and did k means clustering and there were 4 clusters i made, now thing is, in this sample images in picrel it shows fruits in cluster 1 and 2 which is mid ripe and ripe, 0 and 3 are unripe and overripe, now that i tried this model on different images from internet, it only predicts unripe or overripe although it predicts overripe and unripe quite perfectly but never does anything for mid ripe and unripe.

Anonymous

IN

c1U4Bd

No.827

>>824(OP)

Did you use pca or fca?

IN

7b7IMZ

No.828

>>827

Pca

Anonymous

IN

XtXoUh

No.830

>>827

since the database has info about class ( unripe ovveripe etc) you should use fca it will seperate classes more which should help distinguish more.

Anonymous

IN

XtXoUh

No.832

>>828

also try xgboost on fca data , xg boost is really good . :)

thats one method test it .

another might be doing regression. on fca dataset.

Anonymous

IN

XtXoUh

No.833

>>827

another way except all this is to redefine model ,

instead of model predicting ripe unripe directly , you can divide this into two part , one model predicts what kind of fruit that is ( which has high accuracy , easy to make ) and with the output of that you decide whether that fruit is ripe unripe etc now for this part you can make model for each class using loops or whatever ( use dataset of that class only). this will be better than all other as this will work as a pigeonhole , we will have selective data to work with which can help us distinguish more.