teaching the basics of nlp and ml in an introductory
play

Teaching the Basics of NLP and ML in an Introductory Course to - PowerPoint PPT Presentation

Teaching the Basics of NLP and ML in an Introductory Course to Information Science Apoorv Agarwal Columbia University Sunday, September 8, 13 COMS1001 Sunday, September 8, 13 COMS1001 Introductory course on information science to


  1. Teaching the Basics of NLP and ML in an Introductory Course to Information Science Apoorv Agarwal Columbia University Sunday, September 8, 13

  2. COMS1001 Sunday, September 8, 13

  3. COMS1001 • Introductory course on information science to undergraduates at Columbia University Sunday, September 8, 13

  4. COMS1001 • Introductory course on information science to undergraduates at Columbia University • Mostly taken by freshmen and sophomores Sunday, September 8, 13

  5. COMS1001 • Introductory course on information science to undergraduates at Columbia University • Mostly taken by freshmen and sophomores • Assumes no prior programming or math background Sunday, September 8, 13

  6. COMS1001 • Introductory course on information science to undergraduates at Columbia University • Mostly taken by freshmen and sophomores • Assumes no prior programming or math background • 10% : what’s a programming language? Sunday, September 8, 13

  7. Student demographics Sunday, September 8, 13

  8. Student demographics Sunday, September 8, 13

  9. Student demographics Math and Engineering majors Sunday, September 8, 13

  10. Student demographics Challenge 1: Cannot use Math terminology: vector space, dot product, high- dimensional space etc. Math and Engineering majors Sunday, September 8, 13

  11. Traditionally taught topics Sunday, September 8, 13

  12. Traditionally taught topics • About thirty 75 min lectures Sunday, September 8, 13

  13. Traditionally taught topics • About thirty 75 min lectures • First half: Operating systems, WWW and the Internet, Binary and Machine Language, Spreadsheets, Database systems Sunday, September 8, 13

  14. Traditionally taught topics • About thirty 75 min lectures • First half: Operating systems, WWW and the Internet, Binary and Machine Language, Spreadsheets, Database systems • Second half: Algorithms, Programming in Python Sunday, September 8, 13

  15. Traditionally taught topics • About thirty 75 min lectures • First half: Operating systems, WWW and the Internet, Binary and Machine Language, Spreadsheets, Database systems • Second half: Algorithms, Programming in Python Challenge 2: Introduce NLP/ML in one lecture Sunday, September 8, 13

  16. Overall Strategy Sunday, September 8, 13

  17. Overall Strategy • Keep definitions simple Sunday, September 8, 13

  18. Overall Strategy • Keep definitions simple • Use analogies and concrete examples (also observed by Reva Freedman 2005) Sunday, September 8, 13

  19. Overall Strategy • Keep definitions simple • Use analogies and concrete examples (also observed by Reva Freedman 2005) • Take baby steps -- incremental learning Sunday, September 8, 13

  20. Overall Strategy • Keep definitions simple • Use analogies and concrete examples (also observed by Reva Freedman 2005) • Take baby steps -- incremental learning • Introduce the core concepts in one lecture and build on them using homework and exam problems Sunday, September 8, 13

  21. Strategy Sunday, September 8, 13

  22. Strategy Sentiment analysis of tweets Sunday, September 8, 13

  23. Strategy Sentiment analysis of movie reviews Sentiment analysis of tweets Sunday, September 8, 13

  24. Strategy Sentiment analysis of movie reviews Sentiment analysis of tweets Email classification into Imp/Not-Imp Sunday, September 8, 13

  25. Strategy Gear towards text processing Sentiment analysis of movie reviews Sentiment analysis of tweets Email classification into Imp/Not-Imp Sunday, September 8, 13

  26. Strategy Gear towards text processing Sentiment analysis of movie reviews Sentiment analysis of tweets Email classification into Imp/Not-Imp Implement end-to-end SA pipeline Sunday, September 8, 13

  27. Overview • Lecture organization • Questions asked in class • Performance on the mid-term examination • Final projects • Conclusion Sunday, September 8, 13

  28. Lecture Organization Sunday, September 8, 13

  29. Lecture Organization • General discussion on how to define intelligence Sunday, September 8, 13

  30. Lecture Organization • General discussion on how to define intelligence • Introduce a concrete application: sentiment analysis of Twitter data Sunday, September 8, 13

  31. Lecture Organization • General discussion on how to define intelligence • Introduce a concrete application: sentiment analysis of Twitter data • Demonstrate annotation process Sunday, September 8, 13

  32. Lecture Organization • General discussion on how to define intelligence • Introduce a concrete application: sentiment analysis of Twitter data • Demonstrate annotation process • Demonstrate feature extraction Sunday, September 8, 13

  33. Lecture Organization • General discussion on how to define intelligence • Introduce a concrete application: sentiment analysis of Twitter data • Demonstrate annotation process • Demonstrate feature extraction • Demonstrate a basic classification process Sunday, September 8, 13

  34. Points we drive home Sunday, September 8, 13

  35. Points we drive home 1. The machine automatically learns the connotation of words by looking at how often certain words appear in positive and negative tweets. Sunday, September 8, 13

  36. Points we drive home 1. The machine automatically learns the connotation of words by looking at how often certain words appear in positive and negative tweets. 2. The machine also learns more complex patterns that have to do with the conjunction and disjunction of features. Sunday, September 8, 13

  37. Points we drive home 1. The machine automatically learns the connotation of words by looking at how often certain words appear in positive and negative tweets. 2. The machine also learns more complex patterns that have to do with the conjunction and disjunction of features. 3. The quality and amount of training data is important – for if the training data fails to encode a substantial number of patterns important for classification, the machine is not going to learn well. Sunday, September 8, 13

  38. Questions asked in class by students Sunday, September 8, 13

  39. Questions asked in class by students 1. Could we create and use a dictionary that lists the prior polarity of commonly used words? Sunday, September 8, 13

  40. Questions asked in class by students 1. Could we create and use a dictionary that lists the prior polarity of commonly used words? 2. If the prediction score for the tweet is high, does that mean the machine is more confident about the prediction? Sunday, September 8, 13

  41. Questions asked in class by students 1. Could we create and use a dictionary that lists the prior polarity of commonly used words? 2. If the prediction score for the tweet is high, does that mean the machine is more confident about the prediction? 3. In the unigram approach, the sequence of words does not matter. But clearly, if “not” does not negate the words containing opinion, then won’t the machine learn a wrong pattern? Sunday, September 8, 13

  42. Questions asked in class by students 1. Could we create and use a dictionary that lists the prior polarity of commonly used words? 2. If the prediction score for the tweet is high, does that mean the machine is more confident about the prediction? 3. In the unigram approach, the sequence of words does not matter. But clearly, if “not” does not negate the words containing opinion, then won’t the machine learn a wrong pattern? 4. If we have too many negative tweets in our training data (as compared to the positive tweets), then would the machine not be predisposed to predict the polarity of an unseen tweet as negative? Sunday, September 8, 13

  43. Mid-term: Email classification • 53 students • Required to do only 2 out of the following 4 problems Sunday, September 8, 13

  44. Mid-term: Email classification • 53 students • Required to do only 2 out of the following 4 problems Problem (25 points) NLP/ML Logic Gates Database design Machine Instructions Sunday, September 8, 13

  45. Mid-term: Email classification • 53 students • Required to do only 2 out of the following 4 problems Problem Average (25 points) NLP/ML 20.54 Logic Gates 16.94 Database design 13.63 Machine 12.8 Instructions Sunday, September 8, 13

  46. Mid-term: Email classification • 53 students • Required to do only 2 out of the following 4 problems Problem Average Std-dev (25 points) NLP/ML 20.54 4.46 Logic Gates 16.94 6.48 Database design 13.63 6.48 Machine 12.8 6.81 Instructions Sunday, September 8, 13

  47. Mid-term: Email classification • 53 students • Required to do only 2 out of the following 4 problems Problem Average Std-dev Median (25 points) NLP/ML 20.54 4.46 22 Logic Gates 16.94 6.48 20 Database design 13.63 6.48 14 Machine 12.8 6.81 14.5 Instructions Sunday, September 8, 13

  48. Mid-term: Email classification • 53 students • Required to do only 2 out of the following 4 problems Problem # students Average Std-dev Median (25 points) attempted NLP/ML 20.54 4.46 22 51 Logic Gates 16.94 6.48 20 36 Database design 13.63 6.48 14 42 Machine 12.8 6.81 14.5 30 Instructions Sunday, September 8, 13

  49. Student projects Sunday, September 8, 13

  50. Student projects • Formulate your own task Sunday, September 8, 13

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend