Often the hardest part of solving a machine learning problem can be finding the right estimator for the job. In this talk by @adrinjalali
, learn about how to design a custom scikit-learn estimator.
https://www.youtube.com/watch?v=sEaiOkxTFjw
, learn about how to design a custom scikit-learn estimator.
https://www.youtube.com/watch?v=sEaiOkxTFjw
YouTube
Adrin Jalali - Custom Scikit-learn Estimators
About the Talk:
Often the hardest part of solving a machine learning problem can be finding the right estimator for the job. In some cases, you may decide to write your customized scikit-learn estimator, that precisely tackle the ML problem at hand. In this…
Often the hardest part of solving a machine learning problem can be finding the right estimator for the job. In some cases, you may decide to write your customized scikit-learn estimator, that precisely tackle the ML problem at hand. In this…
چگونه با پایتون یوزر و پسوردهای سیو شده ی wifi مون را ببینیم؟!
import subprocess
a = subprocess.check_output(['netsh', 'wlan', 'show', 'profiles']).decode('utf-8').split('\n')
#print(a)
a = [i.split(":")[1][1:-1] for i in a if "All User Profile" in i]
#print(a)
for i in a:
results = subprocess.check_output(['netsh', 'wlan', 'show', 'profile', i, 'key=clear']).decode('utf-8').split('\n')
results = [b.split(":")[1][1:-1] for b in results if "Key Content" in b]
try:
print ("{:<30}| {:<}".format(i, results[0]))
except IndexError:
print ("{:<30}| {:<}".format(i, ""))
توجهتونو به انواع کپی در پایتون جلب می نمایم:
کپی رفرنس - کپی shallow و کپی عمیق یا deep
کپی رفرنس - کپی shallow و کپی عمیق یا deep
This media is not supported in your browser
VIEW IN TELEGRAM
#قابلیت_جدید
Add native SQL cells to query your database connections in Datalore Enterprise 2021.3. The query result is automatically transferred to a pandas DataFrame and you can continue your work in Python 🐍
https://www.jetbrains.com/datalore/enterprise/
Add native SQL cells to query your database connections in Datalore Enterprise 2021.3. The query result is automatically transferred to a pandas DataFrame and you can continue your work in Python 🐍
https://www.jetbrains.com/datalore/enterprise/
A free available book about Simple patterns for building complex applications
کتابی در مورد پترنهای ساده برای ساختن اپلیکیشنهای پیچیده با پایتون که به رایگان و آنلاین قابل مطالعه است.
#python #book #architecture #pattern #design #anti
https://www.cosmicpython.com/book/preface.html
کتابی در مورد پترنهای ساده برای ساختن اپلیکیشنهای پیچیده با پایتون که به رایگان و آنلاین قابل مطالعه است.
#python #book #architecture #pattern #design #anti
https://www.cosmicpython.com/book/preface.html
Python custom formatting
Python objects can define their own formatting mini-languages for f-strings by defining format.
https://nedbatchelder.com/blog/202204/python_custom_formatting.html
Python objects can define their own formatting mini-languages for f-strings by defining format.
https://nedbatchelder.com/blog/202204/python_custom_formatting.html
جرمی هاوارد یه آموزش ساده استفاده از jupyter توی kaggle برای تازه کارا گذاشته:
https://www.kaggle.com/code/jhoward/jupyter-notebook-101
https://www.kaggle.com/code/jhoward/jupyter-notebook-101
Kaggle
Jupyter Notebook 101
Explore and run machine learning code with Kaggle Notebooks | Using data from No attached data sources
Awesome and surprising things you can do with Jupyter Notebooks ⬇️
https://twitter.com/iScienceLuvr/status/1519242326517829632
https://twitter.com/iScienceLuvr/status/1519242326517829632
Twitter
Tanishq Mathew Abraham
Awesome and surprising things you can do with Jupyter Notebooks ⬇
When Python can’t thread: a deep-dive into the GIL’s impact.
چرا در پایتون به معنای واقعی نمیتوانیم thread داشته باشیم. توی این مقاله جالب بصورت ملموس در مورد GIL در پایتون صحبت میشه.
#python #gil #thread #deepdive
https://pythonspeed.com/articles/python-gil
چرا در پایتون به معنای واقعی نمیتوانیم thread داشته باشیم. توی این مقاله جالب بصورت ملموس در مورد GIL در پایتون صحبت میشه.
#python #gil #thread #deepdive
https://pythonspeed.com/articles/python-gil
Gooey
فقط با یک خط به اپلیکیشنتون UI اضافه کنید!
https://github.com/chriskiehl/Gooey
فقط با یک خط به اپلیکیشنتون UI اضافه کنید!
pip install GooeyTurn (almost) any Python command line program into a full GUI application with one line!
https://github.com/chriskiehl/Gooey
Forwarded from Tensorflow(@CVision) (Alireza Akhavan)
کلاسویژن با همکاری دیجینکست برگزار میکند
دورهی تخصصی شبکه های عصبی مولد عمیق و GAN
https://class.vision/product/gan-deep-generative/
دورهی تخصصی شبکه های عصبی مولد عمیق و GAN
https://class.vision/product/gan-deep-generative/
An amazing SQL joins cheat sheet
https://github.com/laylacodes/cheatsheets/blob/main/SQL_joins_cheatsheet.pdf
https://github.com/laylacodes/cheatsheets/blob/main/SQL_joins_cheatsheet.pdf
آیا تا به حال شده که بخواید با پایتون معادله بنویسید؟
قطعا SymPy به کارتان می آید!
قطعا SymPy به کارتان می آید!