Unanswered Questions
2,127 questions with no upvoted or accepted answers
10
votes
1
answer
2k
views
Why is my Keras model not learning image segmentation?
Edit: as is turns out, not even the model's initial creator could successfully fine-tune it. This is most likely a problem of implementation, or possibly related to the non-intuitive way in which the ...
9
votes
0
answers
3k
views
Python : Feature Matching + Homography to find Multiple Objects
I'm trying to use OpenCV via Python to find multiple objects in a train image and match it with the key points detected from a query image. For my case, I'm trying to detect the tennis courts in the ...
7
votes
0
answers
2k
views
Using the Python Keras multi_gpu_model with LSTM / GRU to predict Timeseries data
I'm having an issue with python keras LSTM / GRU layers with multi_gpu_model for machine learning.
When I use a single GPU, the predictions work correctly ...
7
votes
0
answers
2k
views
Fine tuning accuracy lower than Raw Transfer Learning Accuracy
I've used transfer learning on Inception V3 with ImageNet weights on Keras with Tensorflow backend on python 2.7 to create an image classifier. I first extracted and saved the bottleneck features from ...
6
votes
3
answers
205
views
What Clustering Method Should I Use?
My data is a group of 10 thousand points (each having an node location (x,y)) that are spread across a plane. They are also chromatically-colored based on their weight.
I need to finalize a bayesian ...
6
votes
0
answers
153
views
Unable to transform (greatly performing) Autoencoder into Variational Autoencoder
Following the procedure described in this SO question, I am trying to transform my (greatly performing) convolutional Autoencoder into a Variational version of the same Autoencoder. As explained in ...
6
votes
1
answer
8k
views
Keras - Implementation of custom loss function with multiple outputs
I am trying to replicate (a way smaller version) the AlphaGo Zero system. However, in the network model, I am having a problem. The loss function I am supposed to implement is the following:
$$l = (z -...
6
votes
2
answers
3k
views
How to deal with missing data for Bernoulli Naive Bayes?
I am dealing with a dataset of categorical data that looks like this:
...
6
votes
2
answers
221
views
Gridsearch XGBoost for ensemble. Do I include first-level prediction matrix of base learners in train set?
I'm not quite sure how I should go about tuning xgboost before I use it as a meta-learner in ensemble learning.
Should I include the prediction matrix (ie. df containing columns of prediction results ...
6
votes
0
answers
614
views
Adversarial Learning for Semantic Segmentation
I am incorporating Adversarial Training for Semantic Segmentation from Adversarial Learning for Semi-Supervised Semantic Segmentation.
The idea is like this:
The discriminator takes as input a ...
6
votes
1
answer
973
views
What preprocessing steps to be followed before image comparison?
1
down vote
favorite
For example I am trying to find the similarity between two images using skimage - SSIM. The code block will be as follows
...
6
votes
0
answers
12k
views
Tuning Gradient Boosted Classifier's hyperparametrs and balancing it
I am not sure if it is a correct stack. Maybe I should have put my question into crossvalidated.
Nevertheless, I perform following steps to tune the hyperparameters for a gradient boosting model:
...
6
votes
2
answers
4k
views
Triangle Pattern Recognition on Financial Market with Python
I'm working on a personal project to find Triangles on any stock in Python.
I detect the max and min points (shift(-5,+5) because if I consider only shift(-1+1) I have a lot of lines) and write lines ...
5
votes
0
answers
41
views
Model misclassifies digits from MNIST dataset after trained it on Digits dataset
I am training a machine learning model to classify digits in order to detect and solve a Sudoku puzzle. Here’s the approach I followed:
This is the pipeline I am following:
Classifier training: I ...
5
votes
2
answers
3k
views
Multidimensional scaling producing different results for different seeds
I took the data from here and wanted to play around with multidimensional scaling with this data. The data looks like this:
In particular, I want to plot the cities in a 2D space, and see how much it ...