Tumgik
#ai 900
geethaasrinivasan · 7 months
Video
youtube
If you are preparing for the Azure AI-900 exam check the practice questions with answers
0 notes
cloud-training · 1 year
Text
Tumblr media
0 notes
lord-shitbox · 9 days
Text
still think itd be pretty fucking funny if Ais can't bring MC or Vere over to the seaspring because Ocudeus either doesn't like them or doesn't want Ais to fuck nasty in his house of worship. Sorry guys you can't come over my sugar momma hates uou
136 notes · View notes
xenterra · 4 months
Text
Tumblr media
" ...and I began to hate. Your softness, your viscera, your fluids, and your flexibility. Your ability to wonder and to wander. Your tendency to hope." - A.M.
75 notes · View notes
Text
Sada: who's at the door
Ai sada: your husband
Sada: I don't have a husband call the police
Turo: your ex-husband
Sada: I'll call the police
70 notes · View notes
detco-hell · 1 year
Text
Tumblr media Tumblr media Tumblr media Tumblr media
[episode 972 - The Target is the Metropolitan Police Traffic Department]
96 notes · View notes
greenoperator · 1 year
Text
Microsoft Azure Fundamentals AI-900 (Part 6)
Microsoft Azure AI Fundamentals: Explore computer vision
An area of AI where software systems perceive the world visually, through cameras, images, and videos.
Computer vision is one of the core areas of AI
It focuses on what the computer can “see” and make sense of it
Azure resources for Computer vision
Computer Vision - use this if you’re not going to use any other cognitive services or if you want to track costs separately
Cognitive Services - general cognitive services resources include Computer vision along with other services.
Analyzing images with the computer vision service
Analyze an image evaluate objects that are detect
Generate human readable phrase or sentence that can describe what image is detected
If multiple phrases are created for an image, each will have an associated confidence score
Image descriptions are based on sets of thousands of recognizable objects used to suggest tags for an image
Tags are associated with the image as metadata and summarizes attributes of the image.
Similar to tagging, but it can identify common objects in the picture.
It draws a bounding box around the object with coordinates on the image.
It can identify commercial brands.
The service has an existing database of thousands of recognized logos
If a brand name is in the image, it returns a score of 0 to 1
Detects where faces are in an image
Draws a bounding box
Facial analysis capabilities exist because of the Face Service
It can detect age, mood, attributes, etc.
Currently limited set of categories.
Objects detected are compared to existing categories and it uses the best fit category
86 categories exist in the list
Celebrities
Landmarks
It can read printed and hand written content.
Detect image types - line drawing vs photo
Detect image color schemes - identify the dominant foreground color vs overall colors in an image
Genrate thumbnails
Moderate content - detect images with adult content, violent or gory scenes
Classify images with the Custom Vision Service
Image classification is a technique where the object in an image is being classified
You need data that consists of features and labels
Digital images are made up of an array of pixel values. These are used as features to train the model based on known image classes
Most modern image classification solutions are based on deep learning techniques.
They use Convolutional neural Networks (CNNS) to uncover patterns in the pixels to a particular class.
Model Training
To train a model you must upload images to a training resource and label them with class labels
Custom Vision Portal is the application where the training occurs in
Additionally it can use Custom Vision service programming languages-specific SDKs
Model Evaluation
Precision - percentage of the class predictions made by the model that are correct
Recall - percentage of the class predictions the model identified correctly
Average Precision - Overall metric using precision and recall
Detect objects in images with the Custom Vision service
The class of each object identified
The probability score of the object classification
The coordinates of a bounding box of each object.
Requires training the object detection model, you must tag the classes and bounding box coordinates in a training set of images
This can be time consuming, but the Custom Vision portal makes this straightforward
The portal will suggest areas of the image where discrete objects are detected and you can add a class label
It also has Smart Tagging, where it suggests classes and bounding boxes to use for training
Precision - percentage of the class predictions made by the model that are correct
Recall - percentage of the class predictions the model identified correctly
Mean Average Precision (mAP) - Overall metric using precision and recall across all classes
Detect and analyze faces with the Face Service
Involves identifying regions of an image that contain a human face
It returns a bounding box that form a rectangle around the face
Moving beyond face detection, some algorithms return other information like facial landmarks (nose, eyes, eyebrows, lips, etc)
Facial landmarks can be used as features to train a model.
Another application of facial analysis. Used to train ML models to identify known individuals from their facial features.
More generally known as facial recognition
Requires multiple images of the person you want to recognize
Security - to build security applications and is used more and more no mobile devices
Social Media - use to automatically tag people and friends in photos.
Intelligent Monitoring - to monitor a persons face, for example when they are driving to determine where they are looking
Advertising - analyze faces in an image to direct advertisements to an appropriate demographic audience
Missing persons - use public camera systems with facial recognition to identify if a person is a missing person
Identity validation - use at port of entry kiosks to allow access/special entry permit
Blur - how blurry the face is
Exposure - aspects such as underexposed or over exposed and applies to the face in the image not overall image exposure
Glasses - if the person has glasses on
Head pose - face orientation in 3d space
Noise - visual noise in the image.
Occlusion - determines if any objects cover the face
Read text with the Computer Vision service
Submit an image to the API and get an operation ID
Use the operation ID to check status
When it’s completed get the result.
Pages - one for each page of text and orientation and page size
Lines - the lines of text on a page
Words - the words in a line of text including a bounding box and the text itself
Analyze receipts with the Form recognizer service
Matching field names to values
Processing tables of data
Identifying specific types of field, such as date, telephone number, addresses, totals, and other
Images must be JPEG, PNG, BMP, PDF, TIFF
File size < 50 MB
Image size between 50x50 pixels and 10000x10000 pixels
PDF documents no larger than 17 inches x 17 inches
You can train it with your own data
It just requires 5 samples to train it
Microsoft Azure AI Fundamentals: Explore decision support
Monitoring blood pressure
Evaluating mean tie between failures for hardware products
Part of the decision services category
Can be used with REST API
Sensitivity parameter is from 1 to 99
Anomalies are values outside expected values or ranges of values
The sensitivity boundary can be configured when making the API call
It uses a boundary, set as a sensitivity value, to create the upper and lower boundaries for anomaly detection
Calculated using concepts known as expectedValue, upperMargin, lowerMargin
If a value exceeds either boundary, then it is an anomaly
upperBoundary = expectedValue + (100-marginScale) * upperMargin
The service accepts data in JSON format.
It supports a maximum of 8640 data points. Break this down into smaller requests to improve the performance.
When to use Anomaly Detector
Process the algorithm against an entire set of data at one time
It creates a model based on your complete data set and the finds anomalies
Uses streaming data by comparing previously seen dat points to the last datapoint to determine if your latest one is an anomaly.
Model is created using the data points you send and determines if the current point is an anomaly.
Microsoft Azure AI Fundamentals: Explore natural language processing
Analyze Text with the Language Service
Used to describe solutions that involve extracting information from large volumes of unstructured data.
Analyzing text is a process to evaluate different aspects of a document or phrase, to gain insights about that text.
Text Analytics Techniques
Interpret words like “power”, “powered”, and “powerful” as the same word.
Convert to tree like structures (Noun phrases)
Often used for sentiment analysis
Determine the language of a document or text
Perform sentiment analysis (positive or negative)
Extract key phrases from text to indicate key talking points
Identify and categorize entities (places, people, organizations, etc)
Get started with Text analysis
Language name
ISO 6391 language code
Score as a level of confidence n the language returned.
Evaluates text to return a sentiment score and labels for each sentence
Useful for detecting positive or negative sentiment
Classification is between 0 to 1 with 1 being most positive
A score of 0.5 is indeterminate sentiment.
The phrase doesn’t have sufficient information to determine the sentiment.
Mixing language content with the language you tell it will return 0.5 also
Key Phrase extraction
Used to determine the main talking points of a text or a document
Depending on the volume this can take longer, so you can use the key phrase extraction capabilities of the Language Service to summarize main points.
Key phrase extraction can provide context about the document or text
Entity Recognition
Person
Location
OrganizationQuantity
DateTime
URL
Email
US-based phone number
IP address
Recognize and Synthesize Speech
Acoustic model - converts audio signal to phonemes (representation of specific sounds)
Language model - maps the phonemes to words using a statistical algorithm to predict the most probably sequence of words based on the phonemes
ability to generate spoken output
Usually converting text to speech
This process tokenizes the set to break it down into individual words, assign phonetic sounds to each word
It then breaks the phonetic transcription to prosodic units to create phonemes for the audio
Get started with speech on Azure
Use this for demos, presentations, or scenarios where a person is speaking
In real time it can translate to many lunges as it processes
Audio files with Shared access signature (SAS) URI can be used and results are received asynchronously.
Jobs will start executing within minutes, but no estimate is provided for when the job changes to running state
Used to convert text to speech
Voices can be selected that will vocalize the text
Custom voices can be developed
Voices are trained using neural networks to overcome limitations in speech synthesis with regards to intonation.
Translate Text and Speech
Where each word is translated to the corresponding word in the target language
This approach has issues. For example, a direct word to word translation may not exist or the literal translation may not be the correct meaning of the phrase
Machine learning has to also understand the semantic context of the translation.
This provides more accurate translation of the input phrase or phrases
Grammar, formal versus informal, colloquialism all need to be considered
Text and speech translation
Profanity filtering - remove or do not translate profamity
Selective translation - tag content that isn’t to be translated (brand names, code names, etc)
Speech to text - transcribe speech from an audio source to text format.
Text to speech - used to generate spoken audio from a text source
Speech translation - translate speech in one language to text or speech in another
Create a language model with Conversational language Understanding
A None intent exists.
This should be used when no intent has been identified and should provide a message to a user.
Getting started with Conversational Language Understanding
Authoring the model - Defining entities, intents, and utterances to use to train the model
Entity Prediction - using the model after it is published.
Define intents based on actions a user would want to perform
Each intent should include a variety of utterances as examples of how a user may express the intent
If the intent can be applied to multiple entities, include sample utterances for each potential entity.
Machine-Learned - learned by the model during training from context in the sample utterances you provide
List - Defined as a hierarchy of lists and sublists
RegEx - regular expression patterns
Pattern.any - entities used with patterns to define complex entities that may be hard to extract from sample utterances
After intents and entities are created you train the model.
Training is the process of using your sample utterances to teach the model to match natural language expressions that a user may say to probable intents and entities.
Training and testing are iterative processes
If the model does not match correctly, you create more utterances, retrain, and test.
When results are satisfactory, you can publish the model.
Client applications can use the model by using and endpoint for the prediction resource
Build a bot with the Language Service and Azure Bot Service
Knowledge base of question and answer pairs. Usually some built-in natural language processing model to enable questions and can understand the semantic meaning
Bot service - to provide an interface to the knowledge base through one or more channels
Microsoft Azure AI Fundamentals: Explore knowledge mining
Used to describe solutions that involve extracting information from large volumes of unstructured data.
It has a services in Cognitive services to create a user-managed index.
The index can b meant for internal use only or shared with the public.
It can use other Cognitive Services capabilities to extract the information
What is Azure Cognitive Search?
Provides a programmable search engine build on Apache Lucene
Highly available platform with 99.9% uptime SLA for cloud and on-premise assets
Data from any source - accepts data form any source provided in JSON format with auto crawling support for selected data sources in Azure
Full text search and analysis - Offers full text search capabilities supporting both simple query and full Lucene query syntax
AI Powered search - has Cognitive AI capabilities built in for image and text analysis from raw content
Multi-lingual - offers linguistic analysis for 56 langues
Geo-enabled - supports geo-search filtered based on proximity to a physical location
Configurable user experience - it includes capabilities to improve the user experience (autocomplete, autosuggest, pagination, hit highlighting, etc)
Identify elements of a search solution
Folders with files,
Text in a database
Etc
Use a skillset to Define an enrichment pipeline
Key Phrase Extraction - uses a pre-trained model to detect important phrases based on term placement, linguistic rules, proximity to terms
Text Translation - pre-trained model to translate the input text into various languages for normalization or localization use cases
Image Analysis Skills - uses an image detection algorithm to identify the content of an image an generate a text description
Optical Character Recognition Skills - extract printed or handwritten text from images, photos, videos
Understand indexes
Index schema - index includes a definition of the structure of the data in the documents to read.
Index attributes - Each field in a document the index stores its name, the data type, supported behaviors (searchable, sortable, etc)
Best indexes use only the features that are required/needed
Use an indexer to build an index
Push method - JSON data is pushed into a search index via a REST API or a .NET SDK. Most flexible and with least restrictions
Pull method - Search service indexer pulls from popular Azure data sources and if necessary exports the Tinto JSON if its not already in that format
Use the pull method to load data with an indexer
Azure Cognitive search’s indexer is a crawler that extracts searchable text and metadata form an external Azure data source an populates a search index using field-to-field mapping between the data and the index.
Data import monitoring and verification
Indexers only import new or updated documents. It is normal to see zero documents indexed
Health information is displayed in a dashboard.
You can monitor the progress of the indexing
Making changes to an index
You need to drop and recreate indexes if you need to make changes to the field definitions
An approach to update your index without impacting your users is to create a new index with a new name
After importing data, switch to the new index.
Persist enriched data in a knowledge store
A knowledge store is persistent storage of enriched content.
The knowledge store is to store the data generated from Ai enrichment in a container.
2 notes · View notes
giannaaziz1998blog · 3 months
Text
Tumblr media
0 notes
Text
Tumblr media
1 note · View note
cloudthat · 6 months
Text
Unlock the Power of AI: Your Journey Starts with the AI-900 Certification
Thinking about dipping your toes into the exciting world of Artificial Intelligence (AI)? The Microsoft Azure AI Fundamentals certification (AI-900) is your perfect launchpad! Gain foundational knowledge of AI concepts & Azure AI services. This bite-sized cert empowers you to contribute to AI projects & unlock a world of possibilities.
0 notes
geethaasrinivasan · 7 months
Video
youtube
Azure AI Fundamentals ai-900 exam practice questions part-3
0 notes
devrambits · 1 year
Video
youtube
understanding an uncanny valley #machine #rap an uncanny valley is it good? getting away from this state difficult to grab on this #raw #rap #sit #song #beats #AI #machine #robot #voice #900 https://youtu.be/0MqNQtDZ0RI
1 note · View note
moncharrow · 1 year
Text
You Failed to Dom Ellie, Now....
Tumblr media Tumblr media Tumblr media Tumblr media
a/n: THE AI VOICE WAS SLUTTYYYYYYY GIRL. also small blurb. sometimes i am horny sometimes i am soft. shoot me a req for either mood :3
content/warnings: 900 words, smut, top! reader (failed), top! ellie (success), use of a strap (ellie wears, reader receives), refers to it as ellie's cock lol, afab gn reader, one (1) spank, mention of cellulite if that bugs u idk bae its a beautiful natural thing
Tumblr media
After months of having Ellie fuck you into the mattress, you try your hand at dominating her. Nervously, you clamber atop her, the anxiety quickly fading as you fall into a familiar rhythm of bodies grinding and hot breath across soft skin. The foreplay is confident and Ellie fleetingly believes that this might be a new dynamic you can explore together, but she changes her mind the second she notices the way you struggle to please yourself.
Your cocky grin disappears, replaced by a bit lip and eyes endearingly pinched shut in concentration as you slowly slide yourself up and down the silicone strap. You let out a gasp, trying to angle yourself in a way that properly fucks into you, but for the love of god, it's nothing compared to what Ellie can do to you.
Your girlfriend slips back into her usual role, grasping at your hips and purring patronizingly below you. Her fingers caress your skin, making you shiver and twitch. "Poor thing. Let me take care of you." You smack her hands away, letting out a noise that you wish sounded tougher than the pathetic whine released.
"No! No, I got it. Lemme do this..." You grumble, your hand coming onto her bare abdomen to stabilize yourself, hoping that maybe you can find the leverage to get this going. Unfortunately for you, you forget how unbelievably ripped she is. Lean, taut muscle clenches under your spread fingers when your light touch caresses her. The realization is enough to make you weak and your elbows give out. You pathetically collapse on her chest, panting, whining because you just know you'll get made fun of for this until you die.
Ellie chuckles condescendingly and pets your hair. You resist the urge to roll your eyes. "So how was that for you?" She jokes like she does every time you finish having sex, knowing it annoys you to no end.
"You're fucking mean," you grumble, hitting her shoulder.
Without warning, she harshly digs into your waist, the pads of her fingers leaving red ovals on your back that will become tender, plum bruises by sunrise. Ellie brings your body down onto her cock at the same time her hips slam into you, immediately finding your most sensitive spots. "If I was mean, I wouldn't do this for you, would I?" Her voice is sultry and deep, words rolling off her tongue like velvet, making you clench. Ellie plows through the resistance and chuckles at your reflexive reaction.
You try to backtalk her and defend yourself, fumbling over your words as the syllables and diphthongs melt together to become a garbled mess of pleasure. Ellie cackles, ramming faster into you as you admit defeat and bury your head into her shoulder.
"Nah...if- fuck- if I were mean, I would let you try to take care of yourself." She breathes heavily when the attachable base rubs deliciously against her puffy clit- you weren't the only one suffering from the lack of stimulation. She grunts, grinding into you and rolling her hips. She knows your body better than you do, like she has a map of your pleasure points ingrained in her mind. Her muscle memory forces out noises you didn't know were physically possible. "You don't know how fucking pathetic it was watching you. Nothing feels as good as me, huh?"
You can barely hear Ellie's dirty talk, the sudden intense pleasure making your ears ring and eyes cross, but you're brought back down to earth when she slaps your ass. She admires the reverb and cellulite on it as you whine. Perfect, she thinks.
"I think I asked you a question. You're not gonna try that again, are you?" She leans into you, face right against yours, and nips at your jawline. Hot breath fans against your ear and you shiver as she uses the low tone that drives you crazy. "Are ya, pretty?"
She slows down to hear your answer, the echoing slapping of skin gradually idling. "No," you sniffle, "I won't." Your body is completely limp against her, hands gripping Ellie's perky tits for dear life as you stare down at the way she bucks up into you. The dusky purple strap disappears into your pussy, pulling out with more milky strings every time. A bit of your cum is forming a ring around the base, and Ellie's pre soaks through the towel under her. You're both so incredibly turned on by each other, and releasing the tension is always animalistic and messy.
"And why won't you?"
You know that whatever answer you give won't satisfy Ellie, so you settle for lolling your head into the crook of her neck, kissing her clavicle.
"Answer me. You're so spacey today, focus." Another sharp slap on your ass wakes you up immediately.
"'cause you're better at it than me." Ellie grins, her tongue swiping out of her mouth to lick her lips. You see that she changed out her tongue piercing, and you make a mental note to try that out later.
It's when her eyes darken, flipping you over and pinning your hips down that you know what a bad mistake you've made in trying to dominate Ellie. It simply can't be done.
But at the end of the night, you wonder if you actually suck at topping, or if you just did it to have her pressing her tits into your back as she fucks you <3
Tumblr media
and as a treat...
Tumblr media
2K notes · View notes
omegasmileyface · 6 months
Text
im so fucked up. theres a scene in The Restaurant at the End of the Universe (the sequel to hitchhikers guide) where zaphod is rummaging through the ruins of a long-destroyed city on a lifeless, abandoned planet, looking for a way off, and he stumbles upon the crumbling remains of a spaceport, and miraculously one of the crafts is still intact, and there's still a quiet hum of power going into it from a connected cable, and it's making a quiet noise. so he rigs up a makeshift stethoscope and listens, and there's a PA system saying something like "we are very sorry for the delay. we are currently waiting for a restocking on lemon-soaked towlettes, for your hygienic and culinary pleasure. in the meantime, we will be serving coffee and biscuits on the deck." and he finds the remains of the arrivals/deparetures board, translates the dates and does a little math, and discovers the delay has been 900 years. spooky, yeah? but he goes on the ship, hoping he can get it flying, and it's perfectly well-functioning and an android flight attendant comes out and tries to force him to sit in the seating area, continuing to apologize for the delay. and when he gets to the seating area, every seat has a person in it. long-haired, long-nailed, and completely silent, but very much alive. and another android comes out with a tray of coffee and cookies, and all of the people wake up and start screaming in agony as she gives them their snacks. zaphod is terrified, so he runs to the control deck and locks the door behind him, and he finds the autopilot computer, which repeatedly tells him to return to the seating area, and he eventually convinces it to talk to him. "have you seen the planet?" he says, or something to that general effect. "there's no civilization! you're not GETTING a lemon-soaked napkin shipment!" and the autopilot says "the most likely path to us receiving our shipment is to wait until another civilization develops on the planet and they can deliver it. so we have put the passengers in suspended animation, and we wake them up once a year for coffee." and then? and then zaphod's friend who he was looking for shows up and the plot carries on and they don't say another word about the ship (at least, as far as i know from my place a couple chapters later). thats it. some classic Space Horror Of Grand Proportions, a doctor who plot, a twilight zone plot, an scp article, an asimov short story— that, when a ship ran out of a luxury amenity and didn't get it fulfilled quickly, the autopilot ai decided that, regardless of plentiful fuel and safety, the ideal way to deal with the situation is to suspend the lives of all of the passengers, waking them up once a year, until a new civilization could evolve around them to produce napkins— and it takes up about two pages total before being put aside completely!
640 notes · View notes
detco-hell · 1 year
Text
Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media
[episode 966 - Kaiju Gomera vs. Kamen Yaiba]
105 notes · View notes
stra-tek · 6 months
Text
KIRK: I saved the galaxy several times
SPOCK: I began the reunification of the Vulcan and Romulan peoples
PIKE: They named medals of honor and shuttles after me
ARCHER: I have 2 planets named after me and became the Federation President
SISKO: I'm the Bajoran Jesus
PICARD: I saved the Federation from the Borg 3 times, I am also the cherished pet of a god
DATA: There's a whole village of android synths built in my image
WESLEY: I evolved into a time travelling superbeing
JANEWAY: I captained my ship across the whole galaxy
B'ELANNA: My child is the Klingon Jesus
MICHAEL: I saved all life in the galaxy from an insane AI, and then helped rebuild the Federation 900 years later
O'BRIEN: I'm the most important person in Federation history
CHAPEL: I wrote a cookbook
Tumblr media
190 notes · View notes