Skip to main content

Questions tagged [classification]

In machine learning and statistics, classification is the problem of identifying which of a set of categories a new observation belongs to, on the basis of a training set of data containing observations whose category membership (label) is known.

classification
0 votes
0 answers
4 views

Text clustering and classification model

What I want to do - I have a dataset of different phrases, I want to train a model which would set a few clusters depending on the dataset and then cluster the data for that clusters. i have an ...
dea's user avatar
  • 1
0 votes
0 answers
6 views

Why is sklearn's clf.tree_.value output (seemingly) probablistic instead of just showing raw value counts at a node?

I'm converting an old project code to code with updated libraries, and have narrowed down an issue that compares left and right values at a node. I've already verified that the trees have the same ...
Nathan Borel's user avatar
0 votes
0 answers
20 views

Image Classification Model halting at epoch 1/25, tensorflow keras model

I have been following a tutorial of a deep learning neural network model project and for some reason my model halts at the first epoch when trying to train on a dataset of images. I am not sure if ...
akam's user avatar
  • 1
-1 votes
0 answers
17 views

Cross validation and MICE imputation [closed]

I'm working on a binary classification problem where I have some missing data. My initial idea was to use MiceForest. I'm also using stratified k fold technique (Data is imbalanced). I also want to ...
chapu's user avatar
  • 1
0 votes
0 answers
11 views

how to create my svm to detect mobile malware using python language

I want to create svm machine to detect mobile malware how can I start? what do I need to start the project? I have the dataset but I do not know how to start the Svm? I and new with this topic. to ...
Fatoom Al's user avatar
-2 votes
0 answers
15 views

How to Multi Label Classification Korean SpecialAI [closed]

I checked the URL https://github.com/sonnydfa/SpecialAI/, but it wasn't helpful. I want to classify characters written in Hangul and perform multi-label classification for sentiment analysis. Could ...
Inho Son's user avatar
-2 votes
0 answers
29 views

why does GradientBoostedClassifer() in Python have random_state argument? [closed]

Running a gradient boosted classifier in Python: clf = GradientBoostingClassifier(n_estimators = 100, max_depth = 8, random_state=1000) I'm confused why there is a random_state argument. I think I ...
deutan_suave's user avatar
0 votes
0 answers
17 views

Property 'SR_B1' of feature 'LC08_164038_20220112' is missing

I write the following code for random forest classification, but I received error "Property 'SR_B1' of feature 'LC08_164038_20220112' is missing." var table = ee.FeatureCollection("...
mary's user avatar
  • 1
-1 votes
0 answers
24 views

Tensorflow model trained on MNIST dataset gives low accuracy on own test images

I am training a model to identify clothes using MNIST dataset. I can train the model and get good accuracy using the dataset (0.87). When I try with my own images of 10 files, I can get the model to ...
volkan g's user avatar
  • 302
0 votes
0 answers
13 views

Captum TCAV train.py sgd_train_linear_model() Where do the weights come from?

I am using the captum setup https://captum.ai/api/concept.html https://captum.ai/tutorials/TCAV_Image In the Default Classifier the linear classification boils down to the function ...
user26230313's user avatar
0 votes
0 answers
22 views

captum.concept.TCAV() custom classifier

I want to change the default classifier of the captum TCAV class with a custom own to do the calculation on the GPU instead and to batch it, because as it is it is slow. With the unchanged Captum ...
user26230313's user avatar
0 votes
0 answers
26 views

Is there a way to modelize a partial predictor in a classification problem with an unbalanced target?

I would like to share with you a classification issue I faced during the modelling process. I have to create a model for an unbalanced binary target by 4 predictors where one of them has 45% of wrong ...
rambo17's user avatar
0 votes
0 answers
12 views

Weighted F1-score

I'm training and validating models for a binary classification problem in a dataset that has great class imbalance. When searching for metrics for evaluating the performance of the models, I found ...
Juan Segundo Peña Loray's user avatar
0 votes
0 answers
7 views

How can I make this while loop able to detect ancd classify objects only when they stops?

I have this while loop that takes a video and does the detection and clasification of some objects. I use yolov8 as a detector and efficientnetB3 as classifier. It works well but it does the detection ...
Sabato Fasulo's user avatar
1 vote
1 answer
31 views

Why do the sensitivity (recall) values differ between classification_report and precision_recall_fscore_support in a loop?

I am working with a synthetic dataset generated using make_classification from sklearn.datasets with 5 classes. I have trained a RandomForestClassifier on this data and am evaluating its performance ...
Atharva Rasane's user avatar

15 30 50 per page
1
2 3 4 5
524