Saurabh askedon {{::getFormatedLocalTime("2018-10-22T12:29:11.677Z", {without_time: true})}}
Any openings in data science and machine learning? LinkedIn: https://www.linkedin.com/in/saurabh-kamble-52791314a/
I have 12 months of Experience with Python[Numpy,Pandas,MatplotlibSeaborn,Sklearn] and R programming. I have worked on Machine Learning , Natural Language Processing, Deep learning, Data Visualization tools like Tableau , QlikSense , Advance Excel and MySQL, looking for applying these skills on real-time data.Technical Skills:Applied Statistical Modelling for models analysing Z-score, Skew and Kurtosis, Data Transformation, Hypothesis Testing, Using ML Algorithms like Linear/Logistic Regression, Decision Trees, Random Forest,Xgboost,Naive-Bayes,PCA,SVM,K-means,KNN including working on Natural Language Processing with TensorFlow. Sentiment Analysis on IMDB movie dataset, Image Classification using CNN, Customer Segmentation/Churn Analysis.
Python is a pure OOP, in the sense that programmers don't really create the objects, instead, the objects are manipulated directly. This allows the extension of Python with C very easy. In fact, all the objects of Python are built in C, or to some extent Java, but C programming is heavily used.
Therefore, Python has not done it's tradeoff with speed and implementation. What we use in Python are wrappers of C functions ,which have been bundled as objects built in to the language. But, the PyObject takes care of the entire processing, therefore, programmers don't have to worry about the performance, and iwnstead can focus on the efficienty.
This makes Python very robust for Data Science application, because the objects can be extended for various machine learning tasks, such as predictions and classification. The machine learning has various algorithms which are sequential in nature, and Python's data structures such as lists and tuples are also sequences, and they make a perfect blend. Similarly, the dictionaries can be used to map weights and the values together, and neural network algorithm can be written.