Skip to content

Commit 9277c42

Browse files
committed
rearranging repo entirely
1 parent 69062ee commit 9277c42

File tree

179 files changed

+7551
-2243
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

179 files changed

+7551
-2243
lines changed
File renamed without changes.

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
# Artificial Intelligence for Beginners - A Curriculum
1212

13-
> **This curriculum is being actively developed on GitHub. Look into [contributing](CONTRIBUTING.md) to see which areas require active contributions. Please consider this a pre-release, and do not actively use in the classroom yet!**
13+
> **This curriculum is being actively developed on GitHub. Look into [contributing](/etc/CONTRIBUTING.md) to see which areas require active contributions. Please consider this a pre-release, and do not actively use in the classroom yet!**
1414
1515

1616
Azure Cloud Advocates at Microsoft are pleased to offer a 12-week, 24-lesson curriculum all about **Artificial Intelligence**.
@@ -27,7 +27,7 @@ What we will not cover in this curriculum:
2727
* Business cases of using **AI in Business**. Consider taking [Introduction to AI for business users](https://docs.microsoft.com/learn/paths/introduction-ai-for-business-users/?WT.mc_id=academic-57639-dmitryso) learning path on Microsoft Learn, or [AI Business School](https://www.microsoft.com/ai/ai-business-school/?WT.mc_id=academic-57639-dmitryso), developed in cooperation with [INSEAD](https://www.insead.edu/).
2828
* **Classic Machine Learning**, which is well described in our [Machine Learning for Beginners Curriculum](http://github.com/Microsoft/ML-for-Beginners)
2929
* Practical AI applications built using **[Cognitive Services](https://azure.microsoft.com/services/cognitive-services/?WT.mc_id=academic-57639-dmitryso)**. For this, we recommend that you start with modules Microsoft Learn for [vision](https://docs.microsoft.com/learn/paths/create-computer-vision-solutions-azure-cognitive-services/?WT.mc_id=academic-57639-dmitryso), [natural language processing](https://docs.microsoft.com/learn/paths/explore-natural-language-processing/?WT.mc_id=academic-57639-dmitryso) and others.
30-
* Specific ML **Cloud Frameworks**, such as [Azure Machine Learning](https://azure.microsoft.com/services/machine-learning/?WT.mc_id=academic-57639-dmitryso) or [Azure Databricks](). Consider using [Build and operate machine learning solutions with Azure Machine Learning](https://docs.microsoft.com/learn/paths/build-ai-solutions-with-azure-ml-service/?WT.mc_id=academic-57639-dmitryso) and [Build and O perate Machine Learning Solutions with Azure Databricks](https://docs.microsoft.com/learn/paths/build-operate-machine-learning-solutions-azure-databricks/?WT.mc_id=academic-57639-dmitryso) learning paths.
30+
* Specific ML **Cloud Frameworks**, such as [Azure Machine Learning](https://azure.microsoft.com/services/machine-learning/?WT.mc_id=academic-57639-dmitryso) or [Azure Databricks](https://docs.microsoft.com/learn/paths/data-engineer-azure-databricks?WT.mc_id=academic-57639-dmitryso). Consider using [Build and operate machine learning solutions with Azure Machine Learning](https://docs.microsoft.com/learn/paths/build-ai-solutions-with-azure-ml-service/?WT.mc_id=academic-57639-dmitryso) and [Build and Operate Machine Learning Solutions with Azure Databricks](https://docs.microsoft.com/learn/paths/build-operate-machine-learning-solutions-azure-databricks/?WT.mc_id=academic-57639-dmitryso) learning paths.
3131
* **Conversational AI** and **Chat Bots**. There is a separate [Create conversational AI solutions](https://docs.microsoft.com/learn/paths/create-conversational-ai-solutions/?WT.mc_id=academic-57639-dmitryso) learning path, and you can also refer to [this blog post](https://soshnikov.com/azure/hello-bot-conversational-ai-on-microsoft-platform/) for more detail.
3232
* **Deep Mathematics** behind deep learning. For this, we would recommend [Deep Learning](https://www.amazon.com/Deep-Learning-Adaptive-Computation-Machine/dp/0262035618) by Ian Goodfellow, Yoshua Bengio and Aaron Courville, which is also available online at [https://www.deeplearningbook.org/](https://www.deeplearningbook.org/).
3333

@@ -40,7 +40,7 @@ For a gentle introduction to *AI in the Cloud* topics you may consider taking th
4040
<tr><th>No</th><th>Lesson</th><th>Intro</th><th>PyTorch</th><th>Keras/TensorFlow</th><th>Lab</th></tr>
4141

4242
<tr><td>I</td><td colspan="4"><b>Introduction to AI</b></td><td>PAT</td></tr>
43-
<tr><td>1</td><td>Introduction and History of AI</td><td><a href="1-Intro/README.md">Text</a></td><td></td><td></td><td></td></tr>
43+
<tr><td>1</td><td>Introduction and History of AI</td><td><a href="/lessons/1-Intro/README.md">Text</a></td><td></td><td></td><td></td></tr>
4444

4545
<tr><td>II</td><td colspan="4"><b>Symbolic AI</b></td><td>PAT</td></tr>
4646
<tr><td>2 </td><td>Knowledge Representation and Expert Systems</td><td><a href="2-Symbolic/README.md">Text</a></td><td colspan="2"><a href="2-Symbolic/Animals.ipynb">Expert System</a>, <a href="2-Symbolic/FamilyOntology.ipynb">Ontology</a>, <a href="2-Symbolic/MSConceptGraph.ipynb">Concept Graph</a></td><td></td></tr>

data/mnist.pkl.gz

-9.91 MB
Binary file not shown.

etc/docsify-to-pdf/docs/_sidebar.md

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
- Introduction
2+
- [Introduction to AI](../../../lessons/1-Intro/README.md)
3+
- [Knowledge Representation and Expert Systems](../../../lessons/2-Symbolic/README.md)
4+
- [Neural Networks - Perceptron](../../../lessons/3-NeuralNetworks/03-Perceptron/README.md)
5+
- [Neural Networks - Your Own Framework](../../../lessons/3-NeuralNetworks/04-OwnFramework/README.md)
6+
- [Neural Networks - Perceptron](../../../lessons/3-NeuralNetworks/05-Frameworks/README.md)
7+
- [Computer Vision - Convolutional Neural Networks](../../../lessons/4-ComputerVision/07-ConvNets/README.md)
8+
- [Computer Vision - Transfer Learning](../../../lessons/4-ComputerVision/08-TransferLearning/README.md)
9+
- [Computer Vision - Autoencoders](../../../lessons/4-ComputerVision/09-Autoencoders/README.md)
10+
- [Computer Vision - GANs](../../../lessons/4-ComputerVision/10-GANs/README.md)
11+
- [Computer Vision - Segmentation](../../../lessons/4-ComputerVision/12-Segmentation/README.md)
12+
- [NLP - Text Representation](../../../lessons/5-NLP/13-TextRep/README.md)
13+
- [NLP - Embeddings](../../../lessons/5-NLP/14-Embeddings/README.md)
14+
- [NLP - LanguageModeling](../../../lessons/5-NLP/15-LanguageModeling/README.md)
15+
- [NLP - RNNs](../../../lessons/5-NLP/16-RNN/README.md)
16+
- [NLP - Generative Networks](../../../lessons/5-NLP/17-GenerativeNetworks/README.md)
17+
- [NLP - Transformers](../../../lessons/5-NLP/18-Transformers/README.md)
18+
- [Other - Genetic Algorithms](../../../lessons/6-Other/21-GeneticAlgorithms/README.md)
19+
- [Other - Multiagent Systems](../../../lessons/6-Other/23-MultiagentSystems/README.md)
20+
- [Ethics](../../../lessons/7-Ethics/README.md)

etc/docsify/docsifytopdf.js renamed to etc/docsify-to-pdf/docsifytopdf.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module.exports = {
2-
contents: ['docs/_sidebar.md'], // array of "table of contents" files path
3-
pathToPublic: 'pdf/readme.pdf', // path where pdf will stored
2+
contents: ['etc/docsify-to-pdf/docs/_sidebar.md'], // array of "table of contents" files path
3+
pathToPublic: 'etc/docsify-to-pdf/pdf/readme.pdf', // path where pdf will stored
44
pdfOptions: {
55
margin: { top: '100px', bottom: '100px' }
66
}, // reference: https://github.com/GoogleChrome/puppeteer/blob/master/docs/api.md#pagepdfoptions

0 commit comments

Comments
 (0)