Thilak118 commited on
Commit
dab3ef6
·
verified ·
1 Parent(s): 04d2a80

Upload ChatBot questions.csv

Browse files
Files changed (1) hide show
  1. ChatBot questions.csv +21 -0
ChatBot questions.csv ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ question,answer
2
+ "What is Artificial Intelligence?","Artificial Intelligence is the simulation of human intelligence in machines, enabling them to perform tasks like reasoning and learning."
3
+ "What is a Chatbot?","A Chatbot is a program that simulates human conversation, often used for customer service or information retrieval."
4
+ "What is RAG?","Retrieval-Augmented Generation combines document retrieval with text generation to provide contextual answers."
5
+ "What is Machine Learning?","Machine Learning is a subset of AI where algorithms learn patterns from data to make predictions or decisions."
6
+ "What is Natural Language Processing?","Natural Language Processing enables machines to understand and generate human language."
7
+ "How does a Chatbot work?","A Chatbot processes user input, matches it to intents, and generates responses using rules or AI models."
8
+ "What is a neural network?","A neural network is a computational model inspired by the human brain, used in machine learning."
9
+ "What is deep learning?","Deep learning is a type of machine learning using multi-layered neural networks for complex tasks."
10
+ "What is a language model?","A language model predicts or generates text based on learned patterns in language data."
11
+ "What is supervised learning?","Supervised learning trains models on labeled data to predict outcomes for new inputs."
12
+ "What is unsupervised learning?","Unsupervised learning finds patterns in unlabeled data without predefined outputs."
13
+ "What is reinforcement learning?","Reinforcement learning trains agents to make decisions by rewarding desired actions."
14
+ "What is a vector embedding?","A vector embedding is a numerical representation of text or data for machine learning tasks."
15
+ "Why use RAG in chatbots?","RAG improves chatbot accuracy by retrieving relevant documents before generating answers."
16
+ "What is FAISS?","FAISS is a library for efficient similarity search and clustering of dense vectors."
17
+ "What is Hugging Face?","Hugging Face is a platform providing open-source AI models and tools for NLP tasks."
18
+ "What is a transformer model?","A transformer model is a neural network architecture used in NLP for tasks like translation."
19
+ "What is tokenization?","Tokenization is the process of breaking text into smaller units, like words or subwords."
20
+ "What is a knowledge base?","A knowledge base is a structured collection of information used by AI systems to answer queries."
21
+ "What is generative AI?","Generative AI creates new content, like text or images, based on learned patterns."