✌️👌 بلاخره نسخه 1.0 کتابخانه معروف یادگیری ماشین scikit-learn منتشر شد!
با دستور
pip install -U scikit-learn
یا
conda install -c conda-forge scikit-learn
این نسخه را نصب کنید!
https://scikit-learn.org/stable/auto_examples/release_highlights/plot_release_highlights_1_0_0.html
📢More ML news: @cvision
با دستور
pip install -U scikit-learn
یا
conda install -c conda-forge scikit-learn
این نسخه را نصب کنید!
https://scikit-learn.org/stable/auto_examples/release_highlights/plot_release_highlights_1_0_0.html
📢More ML news: @cvision
یه ریپو پر از قطعه کدها با خروجی های غیر قابل انتظار از پایتون و دلیلشون
#pitfall #pitfalls
github.com/satwikkansal/wtfpython
#pitfall #pitfalls
github.com/satwikkansal/wtfpython
چه چیزی پرینت میشود؟
l = [12,5,3,10]
print(l.sort())
l = [12,5,3,10]
print(l.sort())
Anonymous Quiz
9%
[12,5,3,10]
65%
[3,5,10,12]
26%
None
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
👍3
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
👍2
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