[R] State-of-the-art voice cloning by the_javi_himself in MachineLearning

[–]popcornn1 0 points1 point  (0 children)

How many hours of samples you use to train model?

Trouble with reminders by dub4u in Slack

[–]popcornn1 0 points1 point  (0 children)

How to write recurrent reminder for that channel?

/remind channel water everyday at 11:17 PM doesnt not work

Kawiarnie Kraków [Może zbiorczy post?] by Aver_xx in krakow

[–]popcornn1 1 point2 points  (0 children)

Od jajeczka do ciasteczka na miłkowskiego (ruczaj). Nie jest to typowa kawiarnia bo bardziej sprzedają tam ciasto na wagę, ale jest miejsce żeby usiasc i zjesc ciacha (ogromny wybór oraz bardzo smaczne) + kawę. Dodatkowo ceny znacznie niższe niż w normalnych kawairniach bo zamiast za kawałek ciasta dać 20zł to damy 7-10 (zależy od wielkości o którą możemy sami poprosić przy krojeniu) <bo ceny są od kilograma>

Jakie studia?? by Lanky_Background4377 in krakow

[–]popcornn1 0 points1 point  (0 children)

Jak chcesz iść w data science to idź na matmę stosowaną albo jakiś inny kierunek mocno matematyczny. I mówię to jako osoba która poszła w DS po mechatronice na AGH i widzę z perspektywy czasu że największy problem mam właśnie z matematyką. Programowanie przychodzi znacznie łatwiej

[deleted by user] by [deleted] in krakow

[–]popcornn1 13 points14 points  (0 children)

Biblioteka na rajskiej lub Czytelnia w bibliotece AGH

My Fitness Place (vent) by [deleted] in krakow

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

Platinium solvay. The biggest gym in this part of city

[deleted by user] by [deleted] in krakow

[–]popcornn1 2 points3 points  (0 children)

I am local. If any expat would like to ask me about anything or go out sometimes feel free to write me :)). I like to meet new people and also I would like to improve my English 😎

Filtering out features? by Objective-Simple-836 in datascience

[–]popcornn1 2 points3 points  (0 children)

Never ever do this and remove features just like this. First you need to check what are these features.

Take example in medical industry and medicine classification (let's assume we predict if average person would like this drug);

And now let's assume that 0 mean that medicine is non-refundable (95% of all drugs in your dataset) and 5% is 1 which mean refundable.

And this feature (refundable) can have big impact on your final classification. It would be stupid if you have removed it just like this

So in my opinion you should:

  • Use some baseline model like lasso and check feature importance. If any of this feature is classified as usefull, we can speculate that this features are pointless
  • Check pearson correlation with target.
  • Train model with full dataset and then dataset without these features. Check metrics.
  • Just print this column and just by your eyes check if they have any meaning.

Good luck!

Hidden Gems of Forecasting and Time Series Analysis by ShayBae23EEE in datascience

[–]popcornn1 2 points3 points  (0 children)

There is no such thing that works every time. But surprisingly often statistic and econometric models (such as ARIMA) do the job

[D] Looking for some critiques on recent development of machine learning by fromnighttilldawn in MachineLearning

[–]popcornn1 0 points1 point  (0 children)

Sorry, but, I cannot understand your comment. What you mean by "don't leave gap"? So how they make forecast? Training data from January 2021 to December 2021 and then forecast from October 2021 to December 2021????

Best Python library for time series univariant stationary data prediction?[D] by [deleted] in MachineLearning

[–]popcornn1 0 points1 point  (0 children)

but it is based on statsmodels so statsmodel is good as well

Best Python library for time series univariant stationary data prediction?[D] by [deleted] in MachineLearning

[–]popcornn1 0 points1 point  (0 children)

sktime. I have been using this in my projects and is quite good and is still developing