Skip to main content

Questions tagged [time-complexity]

0 votes
0 answers
21 views

I’m working through the runtime analysis of scikit-learn’s OneVsRestClassifier for two cases: LogisticRegression (solver=lbfgs, ...
user184658's user avatar
3 votes
0 answers
60 views

I have a complex problem, and I am not sure if I can do it with gradient descent. Most importantly, because I do not know the gradient, it is strongly non-continuous on small steps, and I have no easy ...
peterh's user avatar
  • 145
0 votes
1 answer
193 views

Example, arr1 = array([0,0,0,1,1,1,1,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0]) arr2 = array([1,1,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0]) arr2 is almost perfectly correlated with ...
Imp's user avatar
  • 21
0 votes
0 answers
71 views

I am very new to the field of machine learning and hope this question fits here. Is there a way to generate an estimate of the computational effort required to classify a value using a previously ...
Trojan's user avatar
  • 101
4 votes
1 answer
3k views

How can I measure or find the time complexity and memory complexity for a model like VGG16 or Resnet50? Also, will it be different from one machine to another like using GTX GPU or RTX GPU?
Lei's user avatar
  • 67
0 votes
2 answers
2k views

I am loading in 1.5m images with 80,000 classes (or I will have to when I eventually train) into a Keras generator and am using a pandas dataframe to do so. The problem is, with so many images, my ...
Finn Williams's user avatar
2 votes
1 answer
2k views

So, I was learning and trying to implement a GridSearch. I have a question regarding the following code, which I wrote: ...
Dimitri's user avatar
  • 43
2 votes
1 answer
96 views

I am working on a real-time recommender system predicting a product to a user using deep learning techniques (like wide & deep learning, deep & cross-network etc). Product catalogue can be ...
Aljo Jose's user avatar
2 votes
0 answers
236 views

It really intrigues me what is the time complexity of learning phase of Hopfield neural network, how it depends of the number of training examples and number of attributes? Source code of Hopfield ...
Georgi Georgiev's user avatar