These Projects will make you the Super Hero of Python: Link
#python #machinelearning #deeplearning #artificialintelligence
@pythonicAI
#python #machinelearning #deeplearning #artificialintelligence
@pythonicAI
Medium
These Projects will make you the SuperHero of Python City
You give us 8 minutes, we’ll give you 10 Cool Python Projects
Forwarded from رویدادهای ملی و بین المللی
📌 مدرسه زمستانه هوش مصنوعی IPM از 7 تا 9 اسفند
📌 کارگاه آموزشی لینوکس و پردازش ابری 1 اسفند
📌 کارگاه آموزشی برنامه نویسی پایتون 2 اسفند
🎓 اعطای مدرک معتبر و رسمی
✅ ثبت نام برای عموم آزاد است
💯 تخفیف ویژه ثبت نام زودهنگام و گروهی
#اسفند1398
#Winter_School #Artificial_Intelligence
#Workshop #Linux #Python #Machine_Vision #Machine_Learning #Deep_Learning #FK #OpenCV #TensorFlow
#Tehran #IPM #SCS
🔗 evand.com/events/aiws
🔗 evand.com/events/aiws-unix
🔗 evand.com/events/aiws-py
🌐 scs.ipm.ac.ir
📣 @convent
📌 کارگاه آموزشی لینوکس و پردازش ابری 1 اسفند
📌 کارگاه آموزشی برنامه نویسی پایتون 2 اسفند
🎓 اعطای مدرک معتبر و رسمی
✅ ثبت نام برای عموم آزاد است
💯 تخفیف ویژه ثبت نام زودهنگام و گروهی
#اسفند1398
#Winter_School #Artificial_Intelligence
#Workshop #Linux #Python #Machine_Vision #Machine_Learning #Deep_Learning #FK #OpenCV #TensorFlow
#Tehran #IPM #SCS
🔗 evand.com/events/aiws
🔗 evand.com/events/aiws-unix
🔗 evand.com/events/aiws-py
🌐 scs.ipm.ac.ir
📣 @convent
Forwarded from رویدادهای ملی و بین المللی
📌 مدرسه زمستانه هوش مصنوعی IPM از 7 تا 9 اسفند
🎓 اعطای مدرک معتبر و رسمی
✅ ثبت نام برای عموم آزاد است
💯 تخفیف ویژه ثبت نام زودهنگام و گروهی
#اسفند1398
#Winter_School #Artificial_Intelligence
#Workshop #Linux #Python #Machine_Vision #Machine_Learning #Deep_Learning #FK #OpenCV #TensorFlow
#Tehran #IPM #SCS
🔗 evand.com/events/aiws
🌐 scs.ipm.ac.ir
📣 @convent
🎓 اعطای مدرک معتبر و رسمی
✅ ثبت نام برای عموم آزاد است
💯 تخفیف ویژه ثبت نام زودهنگام و گروهی
#اسفند1398
#Winter_School #Artificial_Intelligence
#Workshop #Linux #Python #Machine_Vision #Machine_Learning #Deep_Learning #FK #OpenCV #TensorFlow
#Tehran #IPM #SCS
🔗 evand.com/events/aiws
🌐 scs.ipm.ac.ir
📣 @convent
A python lib that lazy-imports all popular Python Data Science libraries. After using a package, pyforest imports and adds the import statement to your first Jupyter cell.
Install the lib:
pip install --upgrade pyforest
python -m pyforest install_extensions
Github: https://lnkd.in/gBA223i
#python #artificialintelligence
@pythonicAi
Install the lib:
pip install --upgrade pyforest
python -m pyforest install_extensions
Github: https://lnkd.in/gBA223i
#python #artificialintelligence
@pythonicAi
GitHub
8080labs/pyforest
pyforest - feel the bliss of automated imports. Contribute to 8080labs/pyforest development by creating an account on GitHub.
Forwarded from DLeX: AI Python (Farzad 🦅)
دوره یادگیری ماشین با تنسرفلو شرکت گوگل منتشر شد.
✏️ Link
#یادگیری_ماشین #تنسرفلو #منابع #فیلم #کلاس_آموزشی #پایتون
#machinelearning #python
❇️ @AI_Python
🗣 @AI_Python_arXiv
✴️ @AI_Python_EN
✏️ Link
#یادگیری_ماشین #تنسرفلو #منابع #فیلم #کلاس_آموزشی #پایتون
#machinelearning #python
❇️ @AI_Python
🗣 @AI_Python_arXiv
✴️ @AI_Python_EN
Python 3.9 got released and it comes with new cool features:
1. Dictionary union:
a = {1: 'a', 2: 'b', 3: 'c'}
b = {4: 'd', 5: 'e'}
c = a | b
print(c)
[Out]: {1: 'a', 2: 'b', 3: 'c', 4: 'd', 5: 'e'}
2. Type hinting. Allows you to write:
def sum_dict(var: dict[str, int]) -> int:
return sum(var[key] for key in var)
3. New string methods. Two new string methods for removing prefixes and suffixes have been added.
"Hello world".removeprefix("He")
[Out]: "llo world"
4. Python 3.9 uses a new parser, based on PEG instead of LL(1). Python users are not affected, but parser improvements would help to develop new language features faster.
Link
#python
@pythonicAi
1. Dictionary union:
a = {1: 'a', 2: 'b', 3: 'c'}
b = {4: 'd', 5: 'e'}
c = a | b
print(c)
[Out]: {1: 'a', 2: 'b', 3: 'c', 4: 'd', 5: 'e'}
2. Type hinting. Allows you to write:
def sum_dict(var: dict[str, int]) -> int:
return sum(var[key] for key in var)
3. New string methods. Two new string methods for removing prefixes and suffixes have been added.
"Hello world".removeprefix("He")
[Out]: "llo world"
4. Python 3.9 uses a new parser, based on PEG instead of LL(1). Python users are not affected, but parser improvements would help to develop new language features faster.
Link
#python
@pythonicAi
Blogspot
Python 3.9.0b3 is now available for testing
On behalf of the entire Python development community, and the currently serving Python release team in particular, I’m pleased to announce...
Join our discussion group to share your knowledge and resolve your issues in #python #machinelearning and #artificialintelligence.
با عضویت در گروه بحث و گفتگوی ما میتوانید دانش خود را با دیگران به اشتراک گذاشته و مسائل و سوالات خود در زمینه #ماشین_لرنینگ #پایتون و #هوش_مصنوعی را برطرف نمایید.
@pythonic_discussion
با عضویت در گروه بحث و گفتگوی ما میتوانید دانش خود را با دیگران به اشتراک گذاشته و مسائل و سوالات خود در زمینه #ماشین_لرنینگ #پایتون و #هوش_مصنوعی را برطرف نمایید.
@pythonic_discussion