Telegram Web
This media is not supported in your browser
VIEW IN TELEGRAM
#هوش_مصنوعی
🧠 مدل Imagen2 معرفی شد و علاوه بر امکانات قبلی، قابلیت تبدیل متن به تصویر متحرک و واقع‌گرایانه هم بهش اضافه شده.
📄 Create live images from text prompts with Imagen2 model in Vertex AI. It now also supports inpainting and outpainting, the ability to edit images using AI, expand the border, or add/remove certain parts of the image.
🔻share with your friends🔻
🔹@OpenCV_olc🔹
#کتاب #سورس_کد #Book
📗 کتاب یادگیری سریع پایتون + مثال و کد
🔡 زبان: انگلیسی
نویسنده: Dr. Matloff
📖 تعداد صفحات: 173
📎 دانلود کتاب (pdf)
📗 Fast lane to python (A quick, sensible route to the joys of Python coding)
🔻share with your friends🔻
🔹@OpenCV_olc🔹
#هوش_مصنوعی #مقاله #سورس_کد
✏️ تبدیل اسکچ به تصویر واقعی
📎 دانلود مقاله (pdf)
💻 دانلود سورس کد (Github)
MaskSketch: Unpaired Structure-guided Masked Image Generation
📄 Given an input sketch and its class label, MaskSketch samples realistic images that follow the given structure.
🔻share with your friends🔻
🔹@OpenCV_olc🔹
Machine Learning algorithms-@OpenCV_olc.png
426.6 KB
#هوش_مصنوعی #نکته #ارسالی_از_کاربران
📚 تصویری از پرکاربردترین الگوریتم‌های هوش مصنوعی و یادگیری ماشین در یک نگاه
🔢 اسامی 42 الگوریتم که در 6 دسته زیر تقسیم بندی شده‌اند:
💎 Most commonly used Machine Learning algorithms
1⃣ Supervised Learning
2⃣ Unsupervised Learning
3⃣ Specialized Algorithms
4⃣ Optimization Algorithms
5⃣ Neural networks
6⃣ Reinforcement learning
🙏 Thanks to: M. Durm
🔻share with your friends🔻
🔹@OpenCV_olc🔹
This media is not supported in your browser
VIEW IN TELEGRAM
#هوش_مصنوعی #سورس_کد
🏃‍♂تشخیص و شمارش افراد با YOLOv8
📎 دانلود سورس کد (Github)
💻 This project counts the people entering and leaving an entrance, using YOLOv8 and a tracking algorithm to track and count.
🔻share with your friends🔻
🔹@OpenCV_olc🔹
#نکته #کتاب #پایتون
🔢 سوالات چهارگزینه‌ای پایتون
🐍 یک مرجع بسیار عالی و رایگان شامل 1000 تست پایتون که در 22 فصل مرتب شده‌اند.
📄 Python MCQ with answers
📎https://www.sanfoundry.com/1000-python-questions-answers/#python-chapters
🔻share with your friends🔻
🔹@OpenCV_olc🔹
This media is not supported in your browser
VIEW IN TELEGRAM
#مقاله #هوش_مصنوعی
💻 افزایش کیفیت ویدیو با هوش مصنوعی
📄 مدل هوش‌مصنوعی VideoGigaGAN به تازگی رونمایی شده و توانایی افزایش کیفیت ویدیوها رو تا 8 برابر داره.
📎دانلود مقاله (pdf)
💻 جزئیات بیشتر (Github)
📄 VideoGigaGAN can enhance the quality and resolution of existing, old, and blurry videos by up to eight times.
🔻share with your friends🔻
🔹@OpenCV_olc🔹
#سورس_کد #نکته #هوش_مصنوعی
🏆 بیش از 700 چیت شیت پایتون😍🔥
در این سایت، چیت شیت‌های پایتونی متنوعی در زمینه‌های مختلف و در سطوح مبتدی تا پیشرفته به صورت رایگان منتشر شده است.
💎ذخیره کنین و برای دوستانتون بفرستین.
💎 Python cheat sheets (FREE)
🗂https://cheatography.com/tag/python
🔻share with your friends🔻
🔹@OpenCV_olc🔹
#سورس_کد #نکته #پایتون
💻 اصلاح پارامتر گاما در تصویر با پایتون
📄 Gamma correction is a technique used to display colors on your screen accurately.
def gamma_adjust(image, gamma=1.0):
    invGamma = 1.0 / gamma
    table=np.array([((i/255)**invGamma)*255
        for i in np.arange(0, 256)]).astype("uint8")
    return cv2.LUT(image, table)

🔻share with your friends🔻
🔹@OpenCV_olc🔹
#هوش_مصنوعی #نکته
✏️ نوشتن متن ایمیل با هوش مصنوعی
📝 وبسایت زیر مبتنی بر هوش مصنوعی بوده و در نوشتن متن ایمیل و همچنین متن پاسخگویی به ایمیل‌ها به 32 زبان و در 10 قالب (رسمی، دوستانه و...) به شما کمک میکنه.
✏️ Enhance your Email writing with AI-Powered assistance
📎 https://mailgenerator.ai/
🔻share with your friends🔻
🔹@OpenCV_olc🔹
#سورس_کد #هوش_مصنوعی #مقاله
💻 افزایش رزولوشن تصویر با روش EDSR با کمک #یادگیری_عمیق به زبان پایتون
📄 دانلود مقاله (pdf)
📎 دانلود مدل (Github)
Super Resolution of images using EDSR and deep learning in python
sr = cv2.DnnSuperResImpl_create()
sr.readModel("EDSR_x4.pb")
sr.setModel("edsr",4)
result = sr.upsample(img)
resized = cv2.resize(img,dsize=None,fx=4,fy=4)

🔻share with your friends🔻
🔹@OpenCV_olc🔹
This media is not supported in your browser
VIEW IN TELEGRAM
#هوش_مصنوعی #نکته
💻 دیروز شرکت OpenAI مدل GPT-4O رو رونمایی کرد. در این ویدیو تست این مدل بی‌نظیر رو مشاهده میکنین که به زودی در دسترس همه قرار میگیره😍
به صورت خلاصه پنج ویژگی مهم این نسخه نسبت به قبل، به صورت زیر گزارش شده است:
📎 توضیحات بیشتر از openai
Five new GPT-4O features making ChatGPT better than ever
1⃣ Real-time voice conversations
2⃣ Better vision capabilities and multilingual support
3⃣ Create images with readable text
4⃣ Native Mac and Windows apps
5⃣ Everyone can use GPT-4o (free)
🔻share with your friends🔻
🔹@OpenCV_olc🔹
This media is not supported in your browser
VIEW IN TELEGRAM
#هوش_مصنوعی #مقاله
💎 مدل VEO توسط شرکت DeepMind رونمایی شد که توانایی تولید ویدیوهایی با کیفیت 1080p رو از روی متن ورودی داره و محدودیت زمانی هم نداره. ویدیویی که میبینین با پرامپت زیر تولید شده:
Prompt: Crochet elephant in intricate patterns walking on the savanna
📎 توضیحات بیشتر از deepmind
💻 استفاده از مدل veo با ثبت درخواست، برای بعضی از طراحان امکان‌پذیر می‌باشد.
✏️ تست و استفاده VEO
💻 VEO model generates high-quality, 1080p resolution videos that can go beyond a minute, in a wide range of cinematic and visual styles.
🔻share with your friends🔻
🔹@OpenCV_olc🔹
#سورس_کد #نکته #سطح_پیشرفته #پایتون
💻 مرتب سازی یک لیست بر اساس آیتم‌های یک لیست دیگر در پایتون
💎 مشاهده آموزش‌های بیشتر
📄 Sort a List Based on Another List:
names = ['reza', 'zahra', 'sara', 'ali']
i = [4, 2, 5, 1]
sortedList =  [val for (_, val) in sorted(zip(i, names), key=lambda x:x[0])]
print(sortedList)

🔻share with your friends🔻
🔹@OpenCV_olc🔹
#سورس_کد #نکته #پایتون
🌳 نمایش و بصری سازی داده‌های درختی و سلسله‌مراتبی در پایتون
📎 آموزش و داکیومنت bigtree
💻 The bigtree Python package can construct and export trees to and from Python lists, dictionaries and Pandas DataFrames, integrating seamlessly with existing Python workflows.
from bigtree import list_to_tree
path_list = ["a/b/d", "a/b/e", "a/c"]
root = list_to_tree(path_list)
root.show()
root.hshow()

🔻share with your friends🔻
🔹@OpenCV_olc🔹
This media is not supported in your browser
VIEW IN TELEGRAM
#هوش_مصنوعی #سورس_کد #مقاله
🅿 تشخیص و شمارش فضاهای خالی در پارکینگ عمومی با کمک پردازش تصویر
📎 دانلود مقاله (pdf)
سورس کد (Github)
💻 Real time parking occupancy detection using deep learning in python
🔻share with your friends🔻
🔹@OpenCV_olc🔹
#نکته #سورس_کد #پایتون
💻 نمایش ایموجی‌ها در پایتون 😍😉
⬅️ برای چاپ ایموجی‌ها میتونین از ترکیب u\ و یونیکد اون‌ها و یا از ترکیب N\ و اسم ایموجی‌ها طبق مثال زیر استفاده کنین.
💾 لیست ایموجی‌ها (اسم + یونیکد)
📄 Every emoji has a Unicode associated with it. Emojis also have a CLDR short name, which can also be used.
print("\U0001f60D") #>> 😍
print("\N{kissing face}") #>> 😗
print("\N{grinning face}") #>> 😀

🔻share with your friends🔻
🔹@OpenCV_olc🔹
This media is not supported in your browser
VIEW IN TELEGRAM
#هوش_مصنوعی #سورس_کد #پایتون
🎮 ساخت بازی breakout توسط مدل GPT-4o فقط از روی اسکرین شات بازی در عرض چند ثانیه 😂😍
🎯 همچین کدهای این بازی قدیمی و محبوب رو میتونین از لینک زیر دانلود کنین:
📎 دانلود سورس کد (Github)
📄 Developing a breakout game using GPT-4O solely based on a screenshot of the game screen
🔻share with your friends🔻
🔹@OpenCV_olc🔹
#هوش_مصنوعی #نکته
📊 مقایسه عملکرد و نرخ خطای مدل‌های GPT-4o و GPT-4 و Gemini1.5
📱این مدل هم اکنون برای بسیاری از کاربران GPT به صورت محدود و رایگان قابل استفاده است.
📖 مطالعه بیشتر
📊 Error rate from the different LLMs
📄 Performance Analysis (GPT-4o vs. GPT-4 vs. Gemini 1.5)
➡️ Read more
🔻share with your friends🔻
🔹@OpenCV_olc🔹
This media is not supported in your browser
VIEW IN TELEGRAM
#هوش_مصنوعی #مقاله #سورس_کد
👦 فریم‌ورک InstructAvatar تصویر شما رو طبق متن ورودی متحرک میکنه.
🎞 ویدیویی که مشاهده میکنین با پرامپت زیر ایجاد شده:
📎 دانلود مقاله (pdf)
💻 دانلود سورس کد (Github)
🤖 Prompt: Sing with happy emotion.
📄 Text-Guided Emotion and Motion Control for Avatar Generation
🔻share with your friends🔻
🔹@OpenCV_olc🔹
2024/05/29 01:59:01
Back to Top
HTML Embed Code:


Fatal error: Uncaught Error: Call to undefined function pop() in /var/www/tgoop/chat.php:243 Stack trace: #0 /var/www/tgoop/route.php(43): include_once() #1 {main} thrown in /var/www/tgoop/chat.php on line 243