Decision Tree Regression Explained with Implementation in Python
https://medium.com/@theclickreader/decision-tree-regression-explained-with-implementation-in-python-1e6e48aa7a47
https://medium.com/@theclickreader/decision-tree-regression-explained-with-implementation-in-python-1e6e48aa7a47
Medium
Decision Tree Regression Explained with Implementation in Python
In this lesson, you will be introduced to a different kind of Machine Learning algorithm, called a decision tree regression.
How I got the WIFI Passwords using a Python script
https://dreamt-it.medium.com/how-i-got-the-wifi-passwords-using-a-python-script-30abe3601ba9
https://dreamt-it.medium.com/how-i-got-the-wifi-passwords-using-a-python-script-30abe3601ba9
Medium
How I got the WIFI Passwords using a Python script
This is a short tale of how I went from having a quite day to having to write a python script that extracted the WI-FI SSID and passwords…
An OpenAI Codex Experiment: Coding the Game of Pong using an AI co-pilot
https://medium.com/@bart.theeten/an-openai-codex-experiment-coding-the-game-of-pong-using-an-ai-co-pilot-461639421882
https://medium.com/@bart.theeten/an-openai-codex-experiment-coding-the-game-of-pong-using-an-ai-co-pilot-461639421882
Medium
An OpenAI Codex Experiment: Coding the Game of Pong using an AI co-pilot
OpenAI recently released Codex in private beta. Codex is the AI model that powers GitHub Co-pilot, branded as "Your AI pair programmer".
How to use sklearn’s DummyClassifier method
https://tracyrenee61.medium.com/how-to-use-sklearns-dummyclassifier-method-1eaa6d3fd636
https://tracyrenee61.medium.com/how-to-use-sklearns-dummyclassifier-method-1eaa6d3fd636
Medium
How to use sklearn’s DummyClassifier method
Sklearn’s DummyClassifier is a classifier that uses very simple rules and iis useful as a simple baseline to compare other classifiers.
Support Vector Regression Explained with Implementation in Python
https://medium.com/@theclickreader/support-vector-regression-explained-with-implementation-in-python-183a2792d8dc
https://medium.com/@theclickreader/support-vector-regression-explained-with-implementation-in-python-183a2792d8dc
Medium
Support Vector Regression Explained with Implementation in Python
In this lesson, we will be addressing the concept of an algorithm based on Support Vectors that can be used for performing both linear and…
Python’da %30 Performans Artışını Nasıl Elde Ettik?
https://engineering.teknasyon.com/pythonda-30-performans-art%C4%B1%C5%9F%C4%B1n%C4%B1-nas%C4%B1l-elde-ettik-21da5955839d
https://engineering.teknasyon.com/pythonda-30-performans-art%C4%B1%C5%9F%C4%B1n%C4%B1-nas%C4%B1l-elde-ettik-21da5955839d
Medium
Python’da %30 Performans Artışını Nasıl Elde Ettik?
Github’da en çok kullanılan dillere baktığımızda Python ilk 3 de yer alan dillerden bir tanesi (Kaynak). Yazımı kolay, topluluğu geniş ve…
python中dump与dumps实现序列化 - z天赐
http://www.cnblogs.com/ztcbug/p/15426454.html#at?hmsr=toutiao.io&utm_campaign=toutiao.io&utm_medium=toutiao.io&utm_source=toutiao.io
http://www.cnblogs.com/ztcbug/p/15426454.html#at?hmsr=toutiao.io&utm_campaign=toutiao.io&utm_medium=toutiao.io&utm_source=toutiao.io
Cnblogs
python中dump与dumps实现序列化 - z天赐 - 博客园
前言 使用中如果我们想把python可识别对象的dict类型的数据通过str类型写入文件或者存入变量中就需要用到dump与dumps 详解 dump 1.新建个dict文件,然后将dict文件存入一个
A Step By Step How To Do A Data Science Project With Craigslist Data: Part 2— Website Scraping…
https://medium.com/@wahomeron/a-step-by-step-how-to-do-a-data-science-project-with-craigslist-data-part-2-website-scraping-d352351655ee
https://medium.com/@wahomeron/a-step-by-step-how-to-do-a-data-science-project-with-craigslist-data-part-2-website-scraping-d352351655ee
Medium
A Step By Step How To Do A Data Science Project With Craigslist Data: Part 2— Website Scraping…
In this post I’ll walk you step by step through the steps I took to scrape vehicle postings data from Craigslist. I used Python and the…
7 Considerations Before Pushing Machine Learning Models to Production
https://towardsdatascience.com/7-considerations-before-pushing-machine-learning-models-to-production-efab64c4d433
https://towardsdatascience.com/7-considerations-before-pushing-machine-learning-models-to-production-efab64c4d433
Medium
7 Considerations Before Pushing Machine Learning Models to Production
Quick sanity checks before hitting the production road
Visualize Your Strava Data on an Interactive Map with Python
https://towardsdatascience.com/visualize-your-strava-data-on-an-interactive-map-with-python-92c1ce69e91d
https://towardsdatascience.com/visualize-your-strava-data-on-an-interactive-map-with-python-92c1ce69e91d
Medium
Visualize Your Strava Data on an Interactive Map with Python
Use the Strava API with Python to download you activity data, create an elevation profile and plot your activity details on an interactive…
A Step By Step How To Do A Data Science Project With Craigslist Data: Part 1 — Some Background
https://medium.com/@wahomeron/a-step-by-step-how-to-do-a-data-science-project-with-craigslist-data-part-1-some-background-215b4d1efd5f
https://medium.com/@wahomeron/a-step-by-step-how-to-do-a-data-science-project-with-craigslist-data-part-1-some-background-215b4d1efd5f
Medium
A Step By Step How To Do A Data Science Project With Craigslist Data: Part 1 — Some Background
In my regular day job as a data professional in an insurance company, I engage in the usual data science processes to create value for my…
Powerful Visualization Using Python: Pyecharts (Code Included)
https://medium.com/codex/powerful-visualization-using-python-pyecharts-code-included-29cb1135a0d3
https://medium.com/codex/powerful-visualization-using-python-pyecharts-code-included-29cb1135a0d3
Medium
Powerful Visualization Using Python: Pyecharts (Code Included)
Most serious data scientists prefer R to Python, but if you work on production in data science or machine learning, you’re probably going…
3 Essential Decorators in Python You Need To Know
https://betterprogramming.pub/3-essential-decorators-in-python-you-need-to-know-654650bd5c36
https://betterprogramming.pub/3-essential-decorators-in-python-you-need-to-know-654650bd5c36
Medium
3 Essential Decorators in Python You Need To Know
Get better at decorators
How I Wrote My Bachelor’s Thesis in Quantum Computing using Qiskit — And How You Can, Too
https://medium.com/qiskit/how-i-wrote-my-bachelors-thesis-in-quantum-computing-using-qiskit-and-how-you-can-too-7382af646fce
https://medium.com/qiskit/how-i-wrote-my-bachelors-thesis-in-quantum-computing-using-qiskit-and-how-you-can-too-7382af646fce
Medium
How I Wrote My Bachelor’s Thesis in Quantum Computing using Qiskit — And How You Can, Too
By Julia Jeremias
Mapping Earthquakes Locations on a Map
https://medium.com/@Ahmad_Hamze/mapping-earthquakes-locations-on-a-map-a6ca0d54dd94
https://medium.com/@Ahmad_Hamze/mapping-earthquakes-locations-on-a-map-a6ca0d54dd94
Medium
Mapping Earthquakes Locations on a Map
Introduction
Convert/Extract Speech from Video to Text with Python
https://reneelin2019.medium.com/convert-extract-speech-from-video-to-text-with-python-d8ebf4ad9734
https://reneelin2019.medium.com/convert-extract-speech-from-video-to-text-with-python-d8ebf4ad9734
Medium
Convert/Extract Speech from Video to Text with Python
I want to put translated subtile on the video, I guess the process is to first recognise the voices — extract audio from video, then…