├── .gitignore ├── LICENSE-CODE.txt ├── LICENSE.txt ├── NOTICE.txt ├── README.md ├── _config.yml ├── labs ├── lab-01-environment-creation.md ├── lab-02-azure-search.md ├── lab-03-text-skills.md ├── lab-04-image-skills.md ├── lab-05-custom-skills.md ├── lab-06-bot-business-documents.md └── lab-final-case.md └── resources ├── code-azure-function ├── CognitiveSkill.sln ├── CognitiveSkill │ ├── .gitignore │ ├── CognitiveSkill.csproj │ ├── Moderation.cs │ ├── WebApiSkill │ │ ├── WebAPISkillContract.cs │ │ └── WebApiSkillHelpers.cs │ └── host.json └── README.md ├── code-bot ├── .deployment ├── .gitignore ├── BotAccessors.cs ├── BotConfiguration.bot ├── BotState.cs ├── CognitiveSearchBot.cs ├── CognitiveSearchBot.csproj ├── CognitiveSearchBot.deps.json ├── CognitiveSearchBot.runtimeconfig.json ├── CognitiveSearchBot.sln ├── Constants.cs ├── Dialogs │ ├── MainDialog.cs │ ├── ModeratedContentSearchDialog.cs │ ├── SearchDialog.cs │ └── SearchDialogBase.cs ├── Middleware │ ├── EntityRecognizers.cs │ ├── IntentRecognizerMiddleware.cs │ └── RegExpRecognizerMiddleware.cs ├── Models │ ├── ImageMapper.cs │ ├── SearchHit.cs │ └── SearchHitStyler.cs ├── PostDeployScripts │ ├── IncludeSources.targets │ ├── githubProject.json.template │ ├── prepareSrc.cmd │ ├── publish.cmd.template │ ├── publishProfile.xml.template │ ├── publishSettings.xml.template │ ├── runGulp.cmd │ ├── setupGithubRemoteRepo.cmd │ ├── setupVsoRemoteRepo.cmd │ └── vsoProject.json.template ├── Program.cs ├── Properties │ └── launchSettings.json ├── Responses │ ├── MainResponses.cs │ └── SearchResponses.cs ├── Startup.cs ├── Utilities │ └── HeroCardUtility.cs ├── appsettings.json ├── build.cmd ├── deploy.cmd ├── readme.md ├── web.config └── wwwroot │ └── default.htm ├── dataset-hackathon ├── 1003_MS_Coppola_079B.jpg ├── HollysHillVineyards.jpg ├── Italy-Wine-Map-wine-folly.jpg ├── README.md ├── barbaresco-nebbiolo-wine.jpg ├── bouza-monte-vide-eu.pdf ├── bouza-tannat.pdf ├── catena-zapata-2015.pdf ├── catena-zapata-2016.pdf ├── coppola wine thief628x471.jpg ├── el-enemigo-stamp.jpg ├── garzon-tannat.pdf ├── green-wine-certificates.pdf ├── green-wine-grapes.pdf ├── green-wine-region.pdf ├── jon-arvid-rosengren.pdf ├── l_6231_jon-arvid-rosengren-winner.jpg ├── rosengren_arvid_l.jpg ├── rosengrenmsm.jpg ├── terrazas-cabernet-sauvignon.pdf ├── terrazas-chadornay.jpg ├── terrazas-chadornay.pdf ├── trapiche.jpg ├── trapiche.pdf ├── wine-producers.pdf ├── wine-reviews.csv ├── zuccardi.jpg └── zuccardi.pdf ├── dataset ├── 10-K-FY16.html ├── 20190506_Microsoft_Build_435-630x450 Open Satya.jpg ├── 5074.clip_image002_6FE27E85.png ├── Cognitive Search Skills.PNG ├── Cognitive Services and Bots (spanish).pdf ├── Form.png ├── KMB V1.pdf ├── LearnAI-portal.PNG ├── MSFT_FY17_10K.docx ├── MSFT_cloud_architecture_contoso.pdf ├── NYSE_LNKD_2015.PDF ├── PII.txt ├── README.md ├── SQL Server on Linux.JPG ├── Satya AI democratization.jpg ├── Satya Brazil KM.jpg ├── board.PNG ├── finished-solution-lab-azure-search.md ├── guthrie.jpg ├── redshirt.jpg ├── satyanadellalinux.jpg ├── satyasletter.txt └── words cloud.PNG ├── finished-solutions ├── 02-Azure Search.postman_collection.json ├── 03-Text Skills.postman_collection.json ├── 04-Image Skills.postman_collection.json ├── 05-Custom Skills.postman_collection.json ├── finished-solution-lab-02-azure-search.md ├── finished-solution-lab-04-image-skills.md └── finished-solution-lab-05-custom-skills.md ├── images ├── enrichment-pipeline-details │ ├── Slide1.PNG │ ├── Slide10.PNG │ ├── Slide11.PNG │ ├── Slide12.PNG │ ├── Slide13.PNG │ ├── Slide2.PNG │ ├── Slide3.PNG │ ├── Slide4.PNG │ ├── Slide5.PNG │ ├── Slide6.PNG │ ├── Slide7.PNG │ ├── Slide8.PNG │ └── Slide9.PNG ├── lab-azure-search │ ├── cog-search.png │ ├── compete.png │ ├── data-source-2.png │ ├── data-source.png │ ├── example.png │ ├── import-data.png │ ├── index-settings.png │ ├── indexer-advanced.png │ ├── inverted.png │ ├── query.png │ ├── redirect.png │ ├── search-explorer.png │ └── search-options.png ├── lab-bot │ ├── bot-builder-dotnet-project.png │ ├── bots-concepts-middleware.png │ ├── diagram.png │ ├── emulator-running.png │ ├── expected.png │ ├── locals.png │ ├── locals2.png │ ├── retrieving-cognitive-attrributes.gif │ └── setbreak.png ├── lab-custom-skills │ ├── cmd.png │ ├── code.png │ ├── moderatedtex-query-portal.png │ ├── panel.png │ ├── structure.png │ ├── versions.png │ └── yellow-flag.png ├── lab-environment-creation │ ├── create-search-collect-info.png │ ├── create-search-service.png │ ├── create-service-full-portal.png │ └── git.png ├── lab-final-case │ ├── complex1.png │ ├── complex2.png │ ├── complex4.png │ └── simple.png ├── lab-image-skills │ └── postman-no-data.png ├── lab-text-skills │ ├── plan.png │ ├── postman-help.png │ └── skillset.png ├── readme │ ├── architecture.png │ ├── header.png │ └── tech-map.png └── sol-arch │ ├── architecture.png │ ├── cost.png │ ├── no-meta.png │ └── postman.png ├── instructor-notes ├── KMB-Opening.pptx └── README.md ├── md-files ├── alternative-agendas.md ├── enrichment-pipeline-details.md ├── introduction.md ├── qa-feedback-survey.md └── solution-architecture.md ├── resources └── template.json └── slides ├── 01.png ├── 02.png ├── 03.png ├── 04.png ├── 05.png ├── 06.png ├── 07.png ├── 08.png ├── 09.png ├── 10.png ├── 11.png ├── 12.png ├── 13.png ├── 14.png ├── 15.png ├── 16.png ├── 17.png ├── 18.png ├── 19.png ├── 20.png ├── 21.png ├── 22.png ├── 23_new.png ├── 24.png ├── 25.png ├── 26.png ├── 27.png ├── 28.png ├── 29.png ├── 30.png ├── 31.png ├── 32.png ├── 33.png ├── 34.png ├── 35.png ├── introduction-pdf ├── kmb-introduction-v1.pdf └── readme.md └── introduction-ppt ├── README.md └── kmb-introduction-v1.pptx /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE-CODE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/LICENSE-CODE.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/NOTICE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/_config.yml -------------------------------------------------------------------------------- /labs/lab-01-environment-creation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/labs/lab-01-environment-creation.md -------------------------------------------------------------------------------- /labs/lab-02-azure-search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/labs/lab-02-azure-search.md -------------------------------------------------------------------------------- /labs/lab-03-text-skills.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/labs/lab-03-text-skills.md -------------------------------------------------------------------------------- /labs/lab-04-image-skills.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/labs/lab-04-image-skills.md -------------------------------------------------------------------------------- /labs/lab-05-custom-skills.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/labs/lab-05-custom-skills.md -------------------------------------------------------------------------------- /labs/lab-06-bot-business-documents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/labs/lab-06-bot-business-documents.md -------------------------------------------------------------------------------- /labs/lab-final-case.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/labs/lab-final-case.md -------------------------------------------------------------------------------- /resources/code-azure-function/CognitiveSkill.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/code-azure-function/CognitiveSkill.sln -------------------------------------------------------------------------------- /resources/code-azure-function/CognitiveSkill/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/code-azure-function/CognitiveSkill/.gitignore -------------------------------------------------------------------------------- /resources/code-azure-function/CognitiveSkill/CognitiveSkill.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/code-azure-function/CognitiveSkill/CognitiveSkill.csproj -------------------------------------------------------------------------------- /resources/code-azure-function/CognitiveSkill/Moderation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/code-azure-function/CognitiveSkill/Moderation.cs -------------------------------------------------------------------------------- /resources/code-azure-function/CognitiveSkill/WebApiSkill/WebAPISkillContract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/code-azure-function/CognitiveSkill/WebApiSkill/WebAPISkillContract.cs -------------------------------------------------------------------------------- /resources/code-azure-function/CognitiveSkill/WebApiSkill/WebApiSkillHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/code-azure-function/CognitiveSkill/WebApiSkill/WebApiSkillHelpers.cs -------------------------------------------------------------------------------- /resources/code-azure-function/CognitiveSkill/host.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /resources/code-azure-function/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/code-azure-function/README.md -------------------------------------------------------------------------------- /resources/code-bot/.deployment: -------------------------------------------------------------------------------- 1 | [config] 2 | command = deploy.cmd -------------------------------------------------------------------------------- /resources/code-bot/.gitignore: -------------------------------------------------------------------------------- 1 | *.dll 2 | *.pdb -------------------------------------------------------------------------------- /resources/code-bot/BotAccessors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/code-bot/BotAccessors.cs -------------------------------------------------------------------------------- /resources/code-bot/BotConfiguration.bot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/code-bot/BotConfiguration.bot -------------------------------------------------------------------------------- /resources/code-bot/BotState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/code-bot/BotState.cs -------------------------------------------------------------------------------- /resources/code-bot/CognitiveSearchBot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/code-bot/CognitiveSearchBot.cs -------------------------------------------------------------------------------- /resources/code-bot/CognitiveSearchBot.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/code-bot/CognitiveSearchBot.csproj -------------------------------------------------------------------------------- /resources/code-bot/CognitiveSearchBot.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/code-bot/CognitiveSearchBot.deps.json -------------------------------------------------------------------------------- /resources/code-bot/CognitiveSearchBot.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/code-bot/CognitiveSearchBot.runtimeconfig.json -------------------------------------------------------------------------------- /resources/code-bot/CognitiveSearchBot.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/code-bot/CognitiveSearchBot.sln -------------------------------------------------------------------------------- /resources/code-bot/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/code-bot/Constants.cs -------------------------------------------------------------------------------- /resources/code-bot/Dialogs/MainDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/code-bot/Dialogs/MainDialog.cs -------------------------------------------------------------------------------- /resources/code-bot/Dialogs/ModeratedContentSearchDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/code-bot/Dialogs/ModeratedContentSearchDialog.cs -------------------------------------------------------------------------------- /resources/code-bot/Dialogs/SearchDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/code-bot/Dialogs/SearchDialog.cs -------------------------------------------------------------------------------- /resources/code-bot/Dialogs/SearchDialogBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/code-bot/Dialogs/SearchDialogBase.cs -------------------------------------------------------------------------------- /resources/code-bot/Middleware/EntityRecognizers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/code-bot/Middleware/EntityRecognizers.cs -------------------------------------------------------------------------------- /resources/code-bot/Middleware/IntentRecognizerMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/code-bot/Middleware/IntentRecognizerMiddleware.cs -------------------------------------------------------------------------------- /resources/code-bot/Middleware/RegExpRecognizerMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/code-bot/Middleware/RegExpRecognizerMiddleware.cs -------------------------------------------------------------------------------- /resources/code-bot/Models/ImageMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/code-bot/Models/ImageMapper.cs -------------------------------------------------------------------------------- /resources/code-bot/Models/SearchHit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/code-bot/Models/SearchHit.cs -------------------------------------------------------------------------------- /resources/code-bot/Models/SearchHitStyler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/code-bot/Models/SearchHitStyler.cs -------------------------------------------------------------------------------- /resources/code-bot/PostDeployScripts/IncludeSources.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/code-bot/PostDeployScripts/IncludeSources.targets -------------------------------------------------------------------------------- /resources/code-bot/PostDeployScripts/githubProject.json.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/code-bot/PostDeployScripts/githubProject.json.template -------------------------------------------------------------------------------- /resources/code-bot/PostDeployScripts/prepareSrc.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/code-bot/PostDeployScripts/prepareSrc.cmd -------------------------------------------------------------------------------- /resources/code-bot/PostDeployScripts/publish.cmd.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/code-bot/PostDeployScripts/publish.cmd.template -------------------------------------------------------------------------------- /resources/code-bot/PostDeployScripts/publishProfile.xml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/code-bot/PostDeployScripts/publishProfile.xml.template -------------------------------------------------------------------------------- /resources/code-bot/PostDeployScripts/publishSettings.xml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/code-bot/PostDeployScripts/publishSettings.xml.template -------------------------------------------------------------------------------- /resources/code-bot/PostDeployScripts/runGulp.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/code-bot/PostDeployScripts/runGulp.cmd -------------------------------------------------------------------------------- /resources/code-bot/PostDeployScripts/setupGithubRemoteRepo.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/code-bot/PostDeployScripts/setupGithubRemoteRepo.cmd -------------------------------------------------------------------------------- /resources/code-bot/PostDeployScripts/setupVsoRemoteRepo.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/code-bot/PostDeployScripts/setupVsoRemoteRepo.cmd -------------------------------------------------------------------------------- /resources/code-bot/PostDeployScripts/vsoProject.json.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/code-bot/PostDeployScripts/vsoProject.json.template -------------------------------------------------------------------------------- /resources/code-bot/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/code-bot/Program.cs -------------------------------------------------------------------------------- /resources/code-bot/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/code-bot/Properties/launchSettings.json -------------------------------------------------------------------------------- /resources/code-bot/Responses/MainResponses.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/code-bot/Responses/MainResponses.cs -------------------------------------------------------------------------------- /resources/code-bot/Responses/SearchResponses.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/code-bot/Responses/SearchResponses.cs -------------------------------------------------------------------------------- /resources/code-bot/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/code-bot/Startup.cs -------------------------------------------------------------------------------- /resources/code-bot/Utilities/HeroCardUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/code-bot/Utilities/HeroCardUtility.cs -------------------------------------------------------------------------------- /resources/code-bot/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/code-bot/appsettings.json -------------------------------------------------------------------------------- /resources/code-bot/build.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/code-bot/build.cmd -------------------------------------------------------------------------------- /resources/code-bot/deploy.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/code-bot/deploy.cmd -------------------------------------------------------------------------------- /resources/code-bot/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/code-bot/readme.md -------------------------------------------------------------------------------- /resources/code-bot/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/code-bot/web.config -------------------------------------------------------------------------------- /resources/code-bot/wwwroot/default.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/code-bot/wwwroot/default.htm -------------------------------------------------------------------------------- /resources/dataset-hackathon/1003_MS_Coppola_079B.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/dataset-hackathon/1003_MS_Coppola_079B.jpg -------------------------------------------------------------------------------- /resources/dataset-hackathon/HollysHillVineyards.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/dataset-hackathon/HollysHillVineyards.jpg -------------------------------------------------------------------------------- /resources/dataset-hackathon/Italy-Wine-Map-wine-folly.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/dataset-hackathon/Italy-Wine-Map-wine-folly.jpg -------------------------------------------------------------------------------- /resources/dataset-hackathon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/dataset-hackathon/README.md -------------------------------------------------------------------------------- /resources/dataset-hackathon/barbaresco-nebbiolo-wine.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/dataset-hackathon/barbaresco-nebbiolo-wine.jpg -------------------------------------------------------------------------------- /resources/dataset-hackathon/bouza-monte-vide-eu.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/dataset-hackathon/bouza-monte-vide-eu.pdf -------------------------------------------------------------------------------- /resources/dataset-hackathon/bouza-tannat.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/dataset-hackathon/bouza-tannat.pdf -------------------------------------------------------------------------------- /resources/dataset-hackathon/catena-zapata-2015.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/dataset-hackathon/catena-zapata-2015.pdf -------------------------------------------------------------------------------- /resources/dataset-hackathon/catena-zapata-2016.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/dataset-hackathon/catena-zapata-2016.pdf -------------------------------------------------------------------------------- /resources/dataset-hackathon/coppola wine thief628x471.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/dataset-hackathon/coppola wine thief628x471.jpg -------------------------------------------------------------------------------- /resources/dataset-hackathon/el-enemigo-stamp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/dataset-hackathon/el-enemigo-stamp.jpg -------------------------------------------------------------------------------- /resources/dataset-hackathon/garzon-tannat.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/dataset-hackathon/garzon-tannat.pdf -------------------------------------------------------------------------------- /resources/dataset-hackathon/green-wine-certificates.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/dataset-hackathon/green-wine-certificates.pdf -------------------------------------------------------------------------------- /resources/dataset-hackathon/green-wine-grapes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/dataset-hackathon/green-wine-grapes.pdf -------------------------------------------------------------------------------- /resources/dataset-hackathon/green-wine-region.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/dataset-hackathon/green-wine-region.pdf -------------------------------------------------------------------------------- /resources/dataset-hackathon/jon-arvid-rosengren.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/dataset-hackathon/jon-arvid-rosengren.pdf -------------------------------------------------------------------------------- /resources/dataset-hackathon/l_6231_jon-arvid-rosengren-winner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/dataset-hackathon/l_6231_jon-arvid-rosengren-winner.jpg -------------------------------------------------------------------------------- /resources/dataset-hackathon/rosengren_arvid_l.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/dataset-hackathon/rosengren_arvid_l.jpg -------------------------------------------------------------------------------- /resources/dataset-hackathon/rosengrenmsm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/dataset-hackathon/rosengrenmsm.jpg -------------------------------------------------------------------------------- /resources/dataset-hackathon/terrazas-cabernet-sauvignon.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/dataset-hackathon/terrazas-cabernet-sauvignon.pdf -------------------------------------------------------------------------------- /resources/dataset-hackathon/terrazas-chadornay.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/dataset-hackathon/terrazas-chadornay.jpg -------------------------------------------------------------------------------- /resources/dataset-hackathon/terrazas-chadornay.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/dataset-hackathon/terrazas-chadornay.pdf -------------------------------------------------------------------------------- /resources/dataset-hackathon/trapiche.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/dataset-hackathon/trapiche.jpg -------------------------------------------------------------------------------- /resources/dataset-hackathon/trapiche.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/dataset-hackathon/trapiche.pdf -------------------------------------------------------------------------------- /resources/dataset-hackathon/wine-producers.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/dataset-hackathon/wine-producers.pdf -------------------------------------------------------------------------------- /resources/dataset-hackathon/wine-reviews.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/dataset-hackathon/wine-reviews.csv -------------------------------------------------------------------------------- /resources/dataset-hackathon/zuccardi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/dataset-hackathon/zuccardi.jpg -------------------------------------------------------------------------------- /resources/dataset-hackathon/zuccardi.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/dataset-hackathon/zuccardi.pdf -------------------------------------------------------------------------------- /resources/dataset/10-K-FY16.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/dataset/10-K-FY16.html -------------------------------------------------------------------------------- /resources/dataset/20190506_Microsoft_Build_435-630x450 Open Satya.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/dataset/20190506_Microsoft_Build_435-630x450 Open Satya.jpg -------------------------------------------------------------------------------- /resources/dataset/5074.clip_image002_6FE27E85.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/dataset/5074.clip_image002_6FE27E85.png -------------------------------------------------------------------------------- /resources/dataset/Cognitive Search Skills.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/dataset/Cognitive Search Skills.PNG -------------------------------------------------------------------------------- /resources/dataset/Cognitive Services and Bots (spanish).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/dataset/Cognitive Services and Bots (spanish).pdf -------------------------------------------------------------------------------- /resources/dataset/Form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/dataset/Form.png -------------------------------------------------------------------------------- /resources/dataset/KMB V1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/dataset/KMB V1.pdf -------------------------------------------------------------------------------- /resources/dataset/LearnAI-portal.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/dataset/LearnAI-portal.PNG -------------------------------------------------------------------------------- /resources/dataset/MSFT_FY17_10K.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/dataset/MSFT_FY17_10K.docx -------------------------------------------------------------------------------- /resources/dataset/MSFT_cloud_architecture_contoso.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/dataset/MSFT_cloud_architecture_contoso.pdf -------------------------------------------------------------------------------- /resources/dataset/NYSE_LNKD_2015.PDF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/dataset/NYSE_LNKD_2015.PDF -------------------------------------------------------------------------------- /resources/dataset/PII.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/dataset/PII.txt -------------------------------------------------------------------------------- /resources/dataset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/dataset/README.md -------------------------------------------------------------------------------- /resources/dataset/SQL Server on Linux.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/dataset/SQL Server on Linux.JPG -------------------------------------------------------------------------------- /resources/dataset/Satya AI democratization.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/dataset/Satya AI democratization.jpg -------------------------------------------------------------------------------- /resources/dataset/Satya Brazil KM.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/dataset/Satya Brazil KM.jpg -------------------------------------------------------------------------------- /resources/dataset/board.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/dataset/board.PNG -------------------------------------------------------------------------------- /resources/dataset/finished-solution-lab-azure-search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/dataset/finished-solution-lab-azure-search.md -------------------------------------------------------------------------------- /resources/dataset/guthrie.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/dataset/guthrie.jpg -------------------------------------------------------------------------------- /resources/dataset/redshirt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/dataset/redshirt.jpg -------------------------------------------------------------------------------- /resources/dataset/satyanadellalinux.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/dataset/satyanadellalinux.jpg -------------------------------------------------------------------------------- /resources/dataset/satyasletter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/dataset/satyasletter.txt -------------------------------------------------------------------------------- /resources/dataset/words cloud.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/dataset/words cloud.PNG -------------------------------------------------------------------------------- /resources/finished-solutions/02-Azure Search.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/finished-solutions/02-Azure Search.postman_collection.json -------------------------------------------------------------------------------- /resources/finished-solutions/03-Text Skills.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/finished-solutions/03-Text Skills.postman_collection.json -------------------------------------------------------------------------------- /resources/finished-solutions/04-Image Skills.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/finished-solutions/04-Image Skills.postman_collection.json -------------------------------------------------------------------------------- /resources/finished-solutions/05-Custom Skills.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/finished-solutions/05-Custom Skills.postman_collection.json -------------------------------------------------------------------------------- /resources/finished-solutions/finished-solution-lab-02-azure-search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/finished-solutions/finished-solution-lab-02-azure-search.md -------------------------------------------------------------------------------- /resources/finished-solutions/finished-solution-lab-04-image-skills.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/finished-solutions/finished-solution-lab-04-image-skills.md -------------------------------------------------------------------------------- /resources/finished-solutions/finished-solution-lab-05-custom-skills.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/finished-solutions/finished-solution-lab-05-custom-skills.md -------------------------------------------------------------------------------- /resources/images/enrichment-pipeline-details/Slide1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/images/enrichment-pipeline-details/Slide1.PNG -------------------------------------------------------------------------------- /resources/images/enrichment-pipeline-details/Slide10.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/images/enrichment-pipeline-details/Slide10.PNG -------------------------------------------------------------------------------- /resources/images/enrichment-pipeline-details/Slide11.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/images/enrichment-pipeline-details/Slide11.PNG -------------------------------------------------------------------------------- /resources/images/enrichment-pipeline-details/Slide12.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/images/enrichment-pipeline-details/Slide12.PNG -------------------------------------------------------------------------------- /resources/images/enrichment-pipeline-details/Slide13.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/images/enrichment-pipeline-details/Slide13.PNG -------------------------------------------------------------------------------- /resources/images/enrichment-pipeline-details/Slide2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/images/enrichment-pipeline-details/Slide2.PNG -------------------------------------------------------------------------------- /resources/images/enrichment-pipeline-details/Slide3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/images/enrichment-pipeline-details/Slide3.PNG -------------------------------------------------------------------------------- /resources/images/enrichment-pipeline-details/Slide4.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/images/enrichment-pipeline-details/Slide4.PNG -------------------------------------------------------------------------------- /resources/images/enrichment-pipeline-details/Slide5.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/images/enrichment-pipeline-details/Slide5.PNG -------------------------------------------------------------------------------- /resources/images/enrichment-pipeline-details/Slide6.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/images/enrichment-pipeline-details/Slide6.PNG -------------------------------------------------------------------------------- /resources/images/enrichment-pipeline-details/Slide7.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/images/enrichment-pipeline-details/Slide7.PNG -------------------------------------------------------------------------------- /resources/images/enrichment-pipeline-details/Slide8.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/images/enrichment-pipeline-details/Slide8.PNG -------------------------------------------------------------------------------- /resources/images/enrichment-pipeline-details/Slide9.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/images/enrichment-pipeline-details/Slide9.PNG -------------------------------------------------------------------------------- /resources/images/lab-azure-search/cog-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/images/lab-azure-search/cog-search.png -------------------------------------------------------------------------------- /resources/images/lab-azure-search/compete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/images/lab-azure-search/compete.png -------------------------------------------------------------------------------- /resources/images/lab-azure-search/data-source-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/images/lab-azure-search/data-source-2.png -------------------------------------------------------------------------------- /resources/images/lab-azure-search/data-source.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/images/lab-azure-search/data-source.png -------------------------------------------------------------------------------- /resources/images/lab-azure-search/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/images/lab-azure-search/example.png -------------------------------------------------------------------------------- /resources/images/lab-azure-search/import-data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/images/lab-azure-search/import-data.png -------------------------------------------------------------------------------- /resources/images/lab-azure-search/index-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/images/lab-azure-search/index-settings.png -------------------------------------------------------------------------------- /resources/images/lab-azure-search/indexer-advanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/images/lab-azure-search/indexer-advanced.png -------------------------------------------------------------------------------- /resources/images/lab-azure-search/inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/images/lab-azure-search/inverted.png -------------------------------------------------------------------------------- /resources/images/lab-azure-search/query.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/images/lab-azure-search/query.png -------------------------------------------------------------------------------- /resources/images/lab-azure-search/redirect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/images/lab-azure-search/redirect.png -------------------------------------------------------------------------------- /resources/images/lab-azure-search/search-explorer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/images/lab-azure-search/search-explorer.png -------------------------------------------------------------------------------- /resources/images/lab-azure-search/search-options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/images/lab-azure-search/search-options.png -------------------------------------------------------------------------------- /resources/images/lab-bot/bot-builder-dotnet-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/images/lab-bot/bot-builder-dotnet-project.png -------------------------------------------------------------------------------- /resources/images/lab-bot/bots-concepts-middleware.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/images/lab-bot/bots-concepts-middleware.png -------------------------------------------------------------------------------- /resources/images/lab-bot/diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/images/lab-bot/diagram.png -------------------------------------------------------------------------------- /resources/images/lab-bot/emulator-running.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/images/lab-bot/emulator-running.png -------------------------------------------------------------------------------- /resources/images/lab-bot/expected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/images/lab-bot/expected.png -------------------------------------------------------------------------------- /resources/images/lab-bot/locals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/images/lab-bot/locals.png -------------------------------------------------------------------------------- /resources/images/lab-bot/locals2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/images/lab-bot/locals2.png -------------------------------------------------------------------------------- /resources/images/lab-bot/retrieving-cognitive-attrributes.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/images/lab-bot/retrieving-cognitive-attrributes.gif -------------------------------------------------------------------------------- /resources/images/lab-bot/setbreak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/images/lab-bot/setbreak.png -------------------------------------------------------------------------------- /resources/images/lab-custom-skills/cmd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/images/lab-custom-skills/cmd.png -------------------------------------------------------------------------------- /resources/images/lab-custom-skills/code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/images/lab-custom-skills/code.png -------------------------------------------------------------------------------- /resources/images/lab-custom-skills/moderatedtex-query-portal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/images/lab-custom-skills/moderatedtex-query-portal.png -------------------------------------------------------------------------------- /resources/images/lab-custom-skills/panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/images/lab-custom-skills/panel.png -------------------------------------------------------------------------------- /resources/images/lab-custom-skills/structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/images/lab-custom-skills/structure.png -------------------------------------------------------------------------------- /resources/images/lab-custom-skills/versions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/images/lab-custom-skills/versions.png -------------------------------------------------------------------------------- /resources/images/lab-custom-skills/yellow-flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/images/lab-custom-skills/yellow-flag.png -------------------------------------------------------------------------------- /resources/images/lab-environment-creation/create-search-collect-info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/images/lab-environment-creation/create-search-collect-info.png -------------------------------------------------------------------------------- /resources/images/lab-environment-creation/create-search-service.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/images/lab-environment-creation/create-search-service.png -------------------------------------------------------------------------------- /resources/images/lab-environment-creation/create-service-full-portal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/images/lab-environment-creation/create-service-full-portal.png -------------------------------------------------------------------------------- /resources/images/lab-environment-creation/git.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/images/lab-environment-creation/git.png -------------------------------------------------------------------------------- /resources/images/lab-final-case/complex1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/images/lab-final-case/complex1.png -------------------------------------------------------------------------------- /resources/images/lab-final-case/complex2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/images/lab-final-case/complex2.png -------------------------------------------------------------------------------- /resources/images/lab-final-case/complex4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/images/lab-final-case/complex4.png -------------------------------------------------------------------------------- /resources/images/lab-final-case/simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/images/lab-final-case/simple.png -------------------------------------------------------------------------------- /resources/images/lab-image-skills/postman-no-data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/images/lab-image-skills/postman-no-data.png -------------------------------------------------------------------------------- /resources/images/lab-text-skills/plan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/images/lab-text-skills/plan.png -------------------------------------------------------------------------------- /resources/images/lab-text-skills/postman-help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/images/lab-text-skills/postman-help.png -------------------------------------------------------------------------------- /resources/images/lab-text-skills/skillset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/images/lab-text-skills/skillset.png -------------------------------------------------------------------------------- /resources/images/readme/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/images/readme/architecture.png -------------------------------------------------------------------------------- /resources/images/readme/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/images/readme/header.png -------------------------------------------------------------------------------- /resources/images/readme/tech-map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/images/readme/tech-map.png -------------------------------------------------------------------------------- /resources/images/sol-arch/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/images/sol-arch/architecture.png -------------------------------------------------------------------------------- /resources/images/sol-arch/cost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/images/sol-arch/cost.png -------------------------------------------------------------------------------- /resources/images/sol-arch/no-meta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/images/sol-arch/no-meta.png -------------------------------------------------------------------------------- /resources/images/sol-arch/postman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/images/sol-arch/postman.png -------------------------------------------------------------------------------- /resources/instructor-notes/KMB-Opening.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/instructor-notes/KMB-Opening.pptx -------------------------------------------------------------------------------- /resources/instructor-notes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/instructor-notes/README.md -------------------------------------------------------------------------------- /resources/md-files/alternative-agendas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/md-files/alternative-agendas.md -------------------------------------------------------------------------------- /resources/md-files/enrichment-pipeline-details.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/md-files/enrichment-pipeline-details.md -------------------------------------------------------------------------------- /resources/md-files/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/md-files/introduction.md -------------------------------------------------------------------------------- /resources/md-files/qa-feedback-survey.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/md-files/qa-feedback-survey.md -------------------------------------------------------------------------------- /resources/md-files/solution-architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/md-files/solution-architecture.md -------------------------------------------------------------------------------- /resources/resources/template.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/slides/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/slides/01.png -------------------------------------------------------------------------------- /resources/slides/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/slides/02.png -------------------------------------------------------------------------------- /resources/slides/03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/slides/03.png -------------------------------------------------------------------------------- /resources/slides/04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/slides/04.png -------------------------------------------------------------------------------- /resources/slides/05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/slides/05.png -------------------------------------------------------------------------------- /resources/slides/06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/slides/06.png -------------------------------------------------------------------------------- /resources/slides/07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/slides/07.png -------------------------------------------------------------------------------- /resources/slides/08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/slides/08.png -------------------------------------------------------------------------------- /resources/slides/09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/slides/09.png -------------------------------------------------------------------------------- /resources/slides/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/slides/10.png -------------------------------------------------------------------------------- /resources/slides/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/slides/11.png -------------------------------------------------------------------------------- /resources/slides/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/slides/12.png -------------------------------------------------------------------------------- /resources/slides/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/slides/13.png -------------------------------------------------------------------------------- /resources/slides/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/slides/14.png -------------------------------------------------------------------------------- /resources/slides/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/slides/15.png -------------------------------------------------------------------------------- /resources/slides/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/slides/16.png -------------------------------------------------------------------------------- /resources/slides/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/slides/17.png -------------------------------------------------------------------------------- /resources/slides/18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/slides/18.png -------------------------------------------------------------------------------- /resources/slides/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/slides/19.png -------------------------------------------------------------------------------- /resources/slides/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/slides/20.png -------------------------------------------------------------------------------- /resources/slides/21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/slides/21.png -------------------------------------------------------------------------------- /resources/slides/22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/slides/22.png -------------------------------------------------------------------------------- /resources/slides/23_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/slides/23_new.png -------------------------------------------------------------------------------- /resources/slides/24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/slides/24.png -------------------------------------------------------------------------------- /resources/slides/25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/slides/25.png -------------------------------------------------------------------------------- /resources/slides/26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/slides/26.png -------------------------------------------------------------------------------- /resources/slides/27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/slides/27.png -------------------------------------------------------------------------------- /resources/slides/28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/slides/28.png -------------------------------------------------------------------------------- /resources/slides/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/slides/29.png -------------------------------------------------------------------------------- /resources/slides/30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/slides/30.png -------------------------------------------------------------------------------- /resources/slides/31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/slides/31.png -------------------------------------------------------------------------------- /resources/slides/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/slides/32.png -------------------------------------------------------------------------------- /resources/slides/33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/slides/33.png -------------------------------------------------------------------------------- /resources/slides/34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/slides/34.png -------------------------------------------------------------------------------- /resources/slides/35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/slides/35.png -------------------------------------------------------------------------------- /resources/slides/introduction-pdf/kmb-introduction-v1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/slides/introduction-pdf/kmb-introduction-v1.pdf -------------------------------------------------------------------------------- /resources/slides/introduction-pdf/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/slides/introduction-pdf/readme.md -------------------------------------------------------------------------------- /resources/slides/introduction-ppt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/slides/introduction-ppt/README.md -------------------------------------------------------------------------------- /resources/slides/introduction-ppt/kmb-introduction-v1.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/LearnAI-KnowledgeMiningBootcamp/HEAD/resources/slides/introduction-ppt/kmb-introduction-v1.pptx --------------------------------------------------------------------------------