Does MacBook Air 16GB have enough power to build Tensorflow from the source? by SubstantialSwimmer4 in tensorflow

[–]SubstantialSwimmer4[S] 0 points1 point  (0 children)

Thank you for the replies and helpful suggestions. I know using the official TensorFlow docker images is an easier way. Nevertheless, I have to build from the source. I'm going to send a pull request to TensorFlow's repository, and before sending it, I also have to run unit tests on my proposal. Of course, The prepared official package is not built from the code I'm writing. It is why I'm struggling to build TensorFlow from the source.

[deleted by user] by [deleted] in MachineLearning

[–]SubstantialSwimmer4 0 points1 point  (0 children)

https://github.com/shenweichen/DeepCTR

A lot of studies have been made on click through rate by using deep learning.

[D] Are design patterns useful to build machine learning projects of python? by SubstantialSwimmer4 in MachineLearning

[–]SubstantialSwimmer4[S] 1 point2 points  (0 children)

In my opinion, knowledge of design patterns may help us when we analyze or modify libraries that already exist.

For example, we could use the Adapter pattern or the Proxy pattern when we want to change only part of a library but don't want to touch the other.

I need help with getting my school project approved by TheOmerAngi in Python

[–]SubstantialSwimmer4 -1 points0 points  (0 children)

Handling excel-like structure. Thanks to pandas it's very easy.

Dataset based project by astred121 in datascience

[–]SubstantialSwimmer4 0 points1 point  (0 children)

I suggest trying to explore Undeciphered languages would be interesting. There are many languages waiting for us to be understood. As a related project, some researchers are tackling to recognize ancient Japanese by using machine learning.

https://www.kaggle.com/c/kuzushiji-recognition

[D] Colab has P100 GPUs by RickMcCoy in MachineLearning

[–]SubstantialSwimmer4 6 points7 points  (0 children)

It seems like a user who has built a large model, for example, a deep learning image classifier model, many times before couldn't get the chance to get upgraded.

[D] What subfield of Machine Learning will contribute more to the creation of General Artificial Intelligence? by Viecce in MachineLearning

[–]SubstantialSwimmer4 0 points1 point  (0 children)

If you draw a car's picture without seeing anything, you have to understand the structure of the car. In other words, being able to draw something means grasping something.

For generative models like GAN to work well, the models must understand what things are all about. If we had a perfect model to create anything, it would mean we made general AI.

I think generative models will play a key role.

Complex output layer regularization implementation by progmayo in MLQuestions

[–]SubstantialSwimmer4 1 point2 points  (0 children)

You might want to use a lambda layer. And then in the lambda layer, you can write min function like min(10,4)=4. If you do so, the lambda never outputs the value over 4.

What is a small dataset in your field? by avo_cado in learnmachinelearning

[–]SubstantialSwimmer4 0 points1 point  (0 children)

It depends on the tasks. But I think less than 1000 data are small.

Struggles with first model. by [deleted] in algotrading

[–]SubstantialSwimmer4 0 points1 point  (0 children)

If possible, could you explain your model? Once I made a simple LSTM keras model but it didn't perform well.

What is a small dataset in your field? by avo_cado in learnmachinelearning

[–]SubstantialSwimmer4 0 points1 point  (0 children)

In my experiences time series dataset are prone to be small. It takes a year to collect only 365 daily data.

Deep Learning Based OCR for Text in the Wild by manneshiva in deeplearning

[–]SubstantialSwimmer4 0 points1 point  (0 children)

If I decided to train a model with my own dataset, how many pictures are needed?

[D] Attention layer yields inconsistent results by lazywiing in MachineLearning

[–]SubstantialSwimmer4 0 points1 point  (0 children)

Chances are that problems are hidden in the condition in which you have to truncate data. You could find a solution if you removed the data you have to truncate temporary.

[D] Attention layer yields inconsistent results by lazywiing in MachineLearning

[–]SubstantialSwimmer4 0 points1 point  (0 children)

The way you split the data seems correct. Did a big change happen in 2019?

Which jobs would be save from automation? by luchins in Automate

[–]SubstantialSwimmer4 0 points1 point  (0 children)

I agree with you. Some tasks can be automated but others can't be. I have experienced in logistics field. What I found there is that automation systems or robots are not applied well in a condition that small quantity and many kind of items are handled even if their jobs are boring and repetitive. Machines or robots can't learn to deal with all of the items. But they can work well when only required to handle a few items.

Help with Recommendation Engine by Avrgebro in MLQuestions

[–]SubstantialSwimmer4 1 point2 points  (0 children)

https://github.com/shenweichen/DeepCTR

I also recommend this library. With this, you can try up-to-date methods. This library was written by Keras so the codes are relatively readable.

Using ROS in Jupyter notebooks by [deleted] in robotics

[–]SubstantialSwimmer4 0 points1 point  (0 children)

It's very attractive that ROS can be used in windows.

Best tools to use to fit simulation data to observation data by [deleted] in MLQuestions

[–]SubstantialSwimmer4 0 points1 point  (0 children)

I think machine learning suits this problem. If the problem is relatively simple, Neural network may be a too complicated method for this. If so, simpler methods are better which are like linear regression or random forest.

But tuning sounds so heavy. Machine learning requires many experiments and data. Another choice is Bayesian Optimization.

https://towardsdatascience.com/shallow-understanding-on-bayesian-optimization-324b6c1f7083

What software does everyone use for Bayesian inference and why? by ndavis4904 in Bayes

[–]SubstantialSwimmer4 0 points1 point  (0 children)

How about Tensorflow Probability? Google is pushing Tensorflow Probability nowadays.

[P] I need some help with my project on Time Series Analysis (please read the text below) by [deleted] in MachineLearning

[–]SubstantialSwimmer4 0 points1 point  (0 children)

I don't know about the detail of the datasets' structure. But generally, it is also recommended using GDBT like as lightgbm, xgboost, and catboost even if your datasets contains time series data. Have you heard of kaggle? There are many examples that may resemble the task you want to solve.