AI Algorithms (74)
AI Natural Language Processing (96)
AI Knowledge Representation Reasoning (12)
AI Robotics (183)
AI Computer Vision (13)
AI Neural Networks (66)
AI Fuzzy Logic (31)
AI Games (8)
AI Languages (141)
AI Tools (11)
AI Machine Learning (659)
Data Science (671)
Data Mining (120)
AI Deep Learning (111)
Generative AI (153)
AI Frameworks Libraries (197)
AI Ethics Safety (100)
AI Applications (427)
AI General (197)
AI AllOther (6) You are about to get on a plane to Seattle, you want to know whether you have to bring an umbrella or not. You call three of your random friends and as each one of them if it's raining. The probability that your friend is telling the truth is 2/3 and the probability that they are playing a prank on you by lying is 1/3. If all 3 of them tell that it is raining, then what is the probability that it is actually raining in Seattle.
335You have been given the data on Facebook user's friending or defriending each other. How will you determine whether a given pair of Facebook users are friends or not?
363A disc is spinning on a spindle and you don't know the direction in which way the disc is spinning. You are provided with a set of pins.How will you use the pins to describe in which way the disc is spinning?
443
Hierarchical clustering algorithm is known to be?
What is meant by Random Forest Classifier?
What are the key AI regulations organizations need to follow?
What is the uniform cost search algorithm?
Describe the Transformer architecture used in modern LLMs.
How to avoid overflow in the logistic function?
What is important in machine learning based tensorflow, performance or accuracy?
What is back propagation?
What is underfitting?
What is market basket analysis?
What are your thoughts on the best data visualization tools?
What are the key challenges in balancing accuracy and fairness in AI systems?
What is the procedure to check the cumulative frequency distribution of any categorical variable?
What is the tfdbg tensorflow debugging?
1. Consider the following algorithm: for ( i = 1 ; i <= 1 . 5 n ; i++) cout << i ; for ( i = n ; i >= 1 ; i - - ) cout << i ; (a) What is the output when n = 2, n = 4, and n = 6? (b) What is the time complexity T(n)? You may assume that the input n is divisible by 2.