I will add multiple experiments tried on the latest chatGPT by openAI
- Course Link: Advanced NLP with Python for Machine Learning
- Medium Blog post about this experiment: How I used ChatGPT to pass the Linkedin assessment exam
- Youtube video of entire experiment(unlisted): Testing ChatGPT on Linkedin Assessment Exam:
Questions Answered by ChatGPT:
- Which NLP modeling technique uses simple document vectors to represent how important a word is to a document within the corpus?
- Why must you convert the returned array from doc2vec into a list?
- Which type of neural network contains only one hidden layer where all nodes in the hidden layer are connected to all nodes in both the input and output layers?
- Why is TF-IDF important in vectorizing text?
- When building your RNN, what is the first step?
- Why is tokenization important when cleaning text data?
- When does doc2vec compute sentences and documents?
- What is the first action you should take that will make reading csv files into Python much easier?
- Why is NLTK valuable?
- What are the return types of the vector of doc2vec?
- What is the second step after cleaning the data for the model?
- Why do you need to average the word vectors for a sentence?
- What is another term for sentence segmentation?
- What is one option when using word2vec?
- Why is Anaconda important in this course?
- Why is word2vec important?
- What is a good data skill to have for learning in this course?
- What is the next step after printing data using the Random Forest Classifier?
- Why are RNNs powerful for NLP problems?
- Why is breaking code an important part of learning?
- You want to use pad sequences to train your model. How do you construct a simple RNN model in code to use the pad sequences?
- What is another important feature of word2vec in addition to word-to-vector conversion?