Skip to main content

Popular posts from this blog

Post-Event Resources- Ai Gaming with Microsoft Azure Heya  Folks hope you enjoyed the Event, do let us know in the comment section about your experience. As said, Here are the Post Event Resources for your continual Learning... Basic Concept of Ai (Theory) AI in Video Games: Toward a More Intelligent Game What is an API Open-Ai 5 Article Microsoft Cognitive- Getting started with Azure Cognitive Services Bundled Playlist on Youtube Microsoft Cognitive Vision Service- Try for Free online Some Videos by Siraj:  OpenAI Five vs Dota 2 Explained How to Install OpenAI's Universe and Make a Game Bot    How to Make an Amazing Video Game Bot Easily Hope you find the Resources resources... For folks interested in Microsoft Azure ML, Click Here

Creating a URL Shortener Deplyment on Azure (NodeJS) part-2

For reference to the previous post, please refer to this link : Connecting-to-our-Database Now let's head to the package that we added config in the npm install command, what it does is that it will look for default.json the file inside config (folder) which we created earlier that will consist of the global variables for our project. Now let's open that default.json file and place the below snippet in it: { "mongoURI": "<ConnectionStringHere>" } We'll replace the Connection String from the cluster's string from our Atlas Account (if you still don't have an account, click here to create one) After Logging in to the Atlas, create a free Cluster and add a database user in it Now use the below code in the db.js the file inside the config (folder): const mongoose = require('mongoose'); const config = require('config'); // Grab the Connection string URL from the default.json file const db = confi...

Hands-On: Microsoft Azure ML Studio

Hands-On: Microsoft Azure ML Studio Let's get to the Overview of this post, In this Post we're gonna make a Flight's Delay Prediction Model in the Microsoft Azure Machine Learning Studio ... Requirements: A Laptop/ Desktop Active Internet Connection XD Recommended: A Microsoft Outlook Account- To create one, Visit HERE We'll be making the prediction model in two steps: Preparing the Data for the Model Actually making the Model Visit: studio.azureml.net If you're a new User, go to Sign Up After clicking on the Sign-up button a pop-up will show up, feel free to opt for an 8-Hour Trial, and but I would say just stick to your Microsoft Account... Else just Sign in with your Microsoft Account... Part-1 Preparing the Flight- Data for the Model As the Delay of the Flights majorly on the Whether Conditions, so we'll include that one too... Let's first get to the Flight data straight ahead. Now after signing in to the Azure ...
Counter Widget