کتابخانه مهندسی کامپیوتر و پایتون
30.6K subscribers
741 photos
20 videos
427 files
455 links
@alloadv تبلیغات


ادمین : @maryam3771
Download Telegram
یک نقشهٔ راهِ عالی برایِ یادگیریِ ریاضیات پیدا کردم!
خوبی‌ش اینه برایِ هر موضوعی بهترین منبعِ مطالعاتی‌ش هم معرفی کرده. توضیحاتِ ریدمی هم بخونید نکاتِ خوبی داره.
https://github.com/TalalAlrawajfeh/mathematics-roadmap



🆔 @programmers_street
3
لیستی از دوره های رایگان Computer Science موسسات معتبر

در هر سطحی که هستید برای حرفه ای شدن و افزایش مهارتهاتون در زمینه هوش‌مصنوعی، علم داده و یادگیری ماشین از این آموزشها استفاده کنید

- Harvard
- Stanford
- MIT
- IIT
- Microsoft
- Google

10 Top Courses :

1. Introduction with CS50

    - From Harvard

https://cs50.harvard.edu/x/

2. Computer Organization and Architecture

    - From IIT Delhi
https://onlinecourses.nptel.ac.in/noc24_cs83/preview

3. Mathematics for Comp Sc.

    - From MIT
https://ocw.mit.edu/courses/6-042j-mathematics-for-computer-science-fall-2010/

4. Programming Languages

Learn at least one language.

❯ Python
https://developers.google.com/edu/python

❯ C/C++
https://ocw.mit.edu/courses/6-s096-effective-programming-in-c-and-c-january-iap-2014/

❯ Java
https://learn.microsoft.com/shows/java-for-beginners/

❯ C#
https://learn.microsoft.com/collections/yz26f8y64n7k07

5. Data Structures and Algorithms

    - From MIT

❯ Introduction to Algorithms
https://ocw.mit.edu/courses/6-006-introduction-to-algorithms-spring-2020/

❯ Design and Analysis of Algorithms
https://ocw.mit.edu/courses/6-046j-design-and-analysis-of-algorithms-spring-2015/


6. Operating System

    - From MIT
https://ocw.mit.edu/courses/6-1810-operating-system-engineering-fall-2023/


7. DBMS

    - From Stanford
https://online.stanford.edu/courses/soe-ydatabases0005-databases-relational-databases-and-sql


8. Computer Networks

    - From MIT
https://ocw.mit.edu/courses/14-15j-networks-spring-2018/


9. Software Engineering

    - From Google
https://techdevguide.withgoogle.com/paths/principles/


10. Advanced Topics

❯ Cryptography
https://ocw.mit.edu/courses/6-875-cryptography-and-cryptanalysis-spring-2005/

❯ Automata Theory
https://ocw.mit.edu/courses/6-045j-automata-computability-and-complexity-spring-2011/

❯ Computation Structures
https://ocw.mit.edu/courses/6-004-computation-structures-spring-2009/

❯ Artificial Intelligence
https://ocw.mit.edu/courses/6-034-artificial-intelligence-fall-2010/

#پایتون #علم_داده #هوش_مصنوعی #یادگیری_ماشین

🆔 @programmers_street
👍53
Open-source low-code app builder

🔗 https://github.com/appsmithorg/appsmith



معرفی منابع آموزشی مهندسی کامپیوتر 👇👇
📲 @programmers_street
👍1
یه pdf عالی برای یادگیری ماشین لرنینگ از Andrew Ng
“Machine Learning yearning”

An introductory FREE book about developing ML algorithms by Andrew Ng.

🔗https://home-wordpress.deeplearning.ai/wp-content/uploads/2022/03/andrew-ng-machine-learning-yearning.pdf



#یادگیری_ماشین #Machine_Learning

🆔 @programmers_street
6👍1
Stanford’s CS229 - Machine Learning

A complete lecture notes by Andrew Ng (227 pages).

https://cs229.stanford.edu/main_notes.pdf



#یادگیری_ماشین #Machine_Learning

🆔 @programmers_street
👍2
You can now learn Data Science, FREE:

- Harvard
- Stanford
- MIT
- Google
- Microsoft
- IBM

10 Top Courses with Certificates* :

1. Python

    - From Harvard

https://cs50.harvard.edu/python/


2. SQL

     - From Stanford Online

https://online.stanford.edu/courses/soe-ydatabases0005-databases-relational-databases-and-sql


3. Excel

    - From Microsoft Learn

https://learn.microsoft.com/training/paths/modern-analytics/


4. Power BI

    - From Microsoft Learn

https://learn.microsoft.com/collections/m14nt4rdwnwp04


5. Data Visualization

     - From Harvard

https://pll.harvard.edu/course/data-science-visualization


6. Data Analysis

     - From IBM SkillsBuild

https://skillsbuild.org/adult-learners/explore-learning/data-analyst


7. Data Science using Python

    - From Saylor Academy [Complete Course]

https://learn.saylor.org/course/view.php?id=504


8. Machine Learning

      - From Google

https://developers.google.com/machine-learning/crash-course


9. Deep Learning

      - From MIT

https://introtodeeplearning.com


10. Mathematics

     - From MIT

https://ocw.mit.edu/search/?d=Mathematics&s=department_course_numbers.sort_coursenum



#علم_داده #Data_Science

🆔 @programmers_street
👍2
🔗 Basics of Machine Learning 👇👇

Machine learning is a branch of artificial intelligence where computers learn from data to make decisions without explicit programming. There are three main types:


1. Supervised Learning: The algorithm is trained on a labeled datasets, learning to map input to output. For example, it can predict housing prices based on features like size and location.

2. Unsupervised Learning: The algorithm explores data patterns without explicit labels. Clustering is a common task, grouping similar data points. An example is customer segmentation for targeted marketing.

3. Reinforcement Learning: The algorithm learns by interacting with an environment. It receives feedback in the form of rewards or penalties, improving its actions over time. Gaming AI and robotic control are applications.

📖 Key concepts include:

- Features and Labels: Features are input variables, and labels are the desired output. The model learns to map features to labels during training.

- Training and Testing: The model is trained on a subset of data and then tested on unseen data to evaluate its performance.

- Overfitting and Underfitting: Overfitting occurs when a model is too complex and fits the training data too closely, performing poorly on new data. Underfitting happens when the model is too simple and fails to capture the underlying patterns.

- Algorithms: Different algorithms suit various tasks. Common ones include linear regression for predicting numerical values, and decision trees for classification tasks.

In summary, machine learning involves training models on data to make predictions or decisions. Supervised learning uses labeled data, unsupervised learning finds patterns in unlabeled data, and reinforcement learning learns through interaction with an environment. Key considerations include features, labels, overfitting, underfitting, and choosing the right algorithm for the task.



#یادگیری_ماشین #Machine_Learning

🆔 @programmers_street
👍2
اگه میخواهید به مبحث آمار و احتمال برای ورود به حوزه یادگیری ماشین مسلط شوید پیشنهاد میکنم از این پلی لیست استفاده کنید

https://www.youtube.com/playlist?list=PLBh2i93oe2qswFOC98oSFc37-0f4S3D4z



#یادگیری_ماشین #Machine_Learning

🆔 @programmers_street
3
Linear Algebra was taught using Sheldon Axler's book for Mtech AI at IISc.
The book's author has made a course on Linear Algebra and released it for free!

https://www.youtube.com/playlist?list=PLGAnmvB9m7zOBVCZBUUmSinFV0wEir2Vw



#یادگیری_ماشین #Machine_Learning

🆔 @programmers_street
1
This media is not supported in your browser
VIEW IN TELEGRAM
اگه دنبال تمرین و یادگیری مسائل ماشین لرنینگ هستید بخصوص برای مصاحبه و شغل این وبسایت جالبه! کلی سوال داره که از ساده تا سخت دسته بندی شده و میتونید تمرین کنید.

Link: https://www.deep-ml.com/


#یادگیری_ماشین #interview

معرفی منابع آموزشی یادگیری ماشین 👇👇

🆔 @programmers_street
👍4
دوره ی 5 روزه ی گوگل (رایگان) برای یادگیری GenAI برای developerها...

سرفصل هاش بسیار جالبه یه پروژه ی پایانی هم بهتون میدن که انجام بدین...

https://rsvp.withgoogle.com/events/google-generative-ai-intensive_2025q1


🆔 @programmers_street
👍3