CS 124/LINGUIST 180 From Languages to Information

Slides:



Advertisements
Similar presentations
Unix Trix for Emprirical CL1 CSA405: Unix Trix for Empirical CL How to use Unix as a toolbox for NLP applications.
Advertisements

A Guide to Unix Using Linux Fourth Edition
 *, ? And [ …] . Any single character  ^ beginning of a line  $ end of the line.
CS 497C – Introduction to UNIX Lecture 25: - Simple Filters Chin-Chih Chang
Guide To UNIX Using Linux Third Edition
T UTORIAL OF U NIX C OMMAND & SHELL SCRIPT S 5027 Professor: Dr. Shu-Ching Chen TA: Samira Pouyanfar Spring 2015.
Grep, comm, and uniq. The grep Command The grep command allows a user to search for specific text inside a file. The grep command will find all occurrences.
CSCI 330 T HE UNIX S YSTEM File operations. OPERATIONS ON REGULAR FILES 2 CSCI The UNIX System Create Edit Display Contents Display Contents Print.
Unix Files, IO Plumbing and Filters The file system and pathnames Files with more than one link Shell wildcards Characters special to the shell Pipes and.
Unix Filters Text processing utilities. Filters Filter commands – Unix commands that serve dual purposes: –standalone –used with other commands and pipes.
UNIX Filters.
Filters using Regular Expressions grep: Searching a Pattern.
CS 124/LINGUIST 180 From Languages to Information Unix for Poets (in 2014) Dan Jurafsky (From Chris Manning’s modification of Ken Church’s presentation)
Shell Script Examples.
Chapter 4: UNIX File Processing Input and Output.
Advanced File Processing
Agenda User Profile File (.profile) –Keyword Shell Variables Linux (Unix) filters –Purpose –Commands: grep, sort, awk cut, tr, wc, spell.
Chapter Four UNIX File Processing. 2 Lesson A Extracting Information from Files.
Guide To UNIX Using Linux Fourth Edition
LIN 6932 Unix Lecture 6 Hana Filip. LIN 6932 HW6 - Part II solutions posted on my website see syllabus.
Introduction to Unix (CA263) File Processing. Guide to UNIX Using Linux, Third Edition 2 Objectives Explain UNIX and Linux file processing Use basic file.
Unix programming Term: III B.Tech II semester Unit-II PPT Slides Text Books: (1)unix the ultimate guide by Sumitabha Das (2)Advanced programming.
CS 403: Programming Languages Lecture 21 Fall 2003 Department of Computer Science University of Alabama Joel Jones.
CS 403: Programming Languages Fall 2004 Department of Computer Science University of Alabama Joel Jones.
1 Day 5 Additional Unix Commands. 2 Important vs. Not Often in Unix there are multiple ways to do something. –In this class, we will learn the important.
Advanced File Processing. 2 Objectives Use the pipe operator to redirect the output of one command to another command Use the grep command to search for.
UNIX Shell Script (1) Dr. Tran, Van Hoai Faculty of Computer Science and Engineering HCMC Uni. of Technology
Scripting Languages Course 2 Diana Trandab ă ț Master in Computational Linguistics - 1 st year
Chapter Five Advanced File Processing Guide To UNIX Using Linux Fourth Edition Chapter 5 Unix (34 slides)1 CTEC 110.
Chapter Five Advanced File Processing. 2 Objectives Use the pipe operator to redirect the output of one command to another command Use the grep command.
Module 6 – Redirections, Pipes and Power Tools.. STDin 0 STDout 1 STDerr 2 Redirections.
I/O Redirection and Regular Expressions February 9 th, 2004 Class Meeting 4.
Introduction to Unix – CS 21 Lecture 12. Lecture Overview A few more bash programming tricks The here document Trapping signals in bash cut and tr sed.
Introduction to Unix (CA263) File Processing (continued) By Tariq Ibn Aziz.
Chapter Five Advanced File Processing. 2 Lesson A Selecting, Manipulating, and Formatting Information.
Chapter Four I/O Redirection1 System Programming Shell Operators.
I/O Redirection & Regular Expressions CS 2204 Class meeting 4 *Notes by Doug Bowman and other members of the CS faculty at Virginia Tech. Copyright
Advanced Text Processing. 222 Lecture Overview  Character manipulation commands cut, paste, tr  Line manipulation commands sort, uniq, diff  Regular.
CS 124/LINGUIST 180 From Languages to Information Unix for Poets (in 2013) Christopher Manning Stanford University.
CS 124/LINGUIST 180 From Languages to Information
ORAFACT Text Processing. ORAFACT Searching Inside Files grep - searches for patterns within files grep [options] [[-e] pattern] filename [...] -n shows.
UNIX commands Head More (press Q to exit) Cat – Example cat file – Example cat file1 file2 Grep – Grep –v ‘expression’ – Grep –A 1 ‘expression’ – Grep.
In the last class, Filters and delimiters The sample database pr command head and tail commands cut and paste commands.
CS 403: Programming Languages Lecture 20 Fall 2003 Department of Computer Science University of Alabama Joel Jones.
6/13/2016Course material created by D. Woit 1 CPS 393 Introduction to Unix and C START OF WEEK 3 (UNIX) 6/13/2016Course material created by D. Woit 1.
Filters and Utilities. Notes: This is a simple overview of the filtering capability Some of these commands are very powerful ▫Only showing some of the.
SIMPLE FILTERS. CONTENTS Filters – definition To format text – pr Pick lines from the beginning – head Pick lines from the end – tail Extract characters.
Regular Expressions Copyright Doug Maxwell (
Plan This week Monday: Operating systems, Unix command line (“terminal”) Wednesday: Data science: Dataframes, pandas Next week Monday: Python as files,
Tutorial of Unix Command & shell scriptS 5027
Lesson 5-Exploring Utilities
CS 124/LINGUIST 180 From Languages to Information
CST8177 sed The Stream Editor.
The UNIX Shell Learning Objectives:
Chapter 6 Filters.
Linux command line basics III: piping commands for text processing
Unix Scripting Session 4 March 27, 2008.
CS 403: Programming Languages
Tutorial of Unix Command & shell scriptS 5027
Tutorial of Unix Command & shell scriptS 5027
Folks Carelli, Instructor Kutztown University
Guide To UNIX Using Linux Third Edition
Tutorial of Unix Command & shell scriptS 5027
Chapter Four UNIX File Processing.
CS 124/LINGUIST 180 From Languages to Information
Regular Expressions and Grep
Lab 7: Filtering.
1.5 Regular Expressions (REs)
Lab 8: Regular Expressions
Software I: Utilities and Internals
Presentation transcript:

CS 124/LINGUIST 180 From Languages to Information Unix for Poets Dan Jurafsky (original by Ken Church, modifications by me and Chris Manning) Stanford University

Unix for Poets Text is everywhere What can we do with it all? The Web Dictionaries, corpora, email, etc. Billions and billions of words What can we do with it all? It is better to do something simple, than nothing at all. You can do simple things from a Unix command-line Sometimes it’s much faster even than writing a quick python tool DIY is very satisfying

Exercises we’ll be doing today Count words in a text Sort a list of words in various ways ascii order ‘‘rhyming’’ order Extract useful info from a dictionary Compute ngram statistics Work with parts of speech in tagged text

Tools grep: search for a pattern (regular expression) sort uniq –c (count duplicates) tr (translate characters) wc (word – or line – count) sed (edit string -- replacement) cat (send file(s) in stream) echo (send text in stream) cut (columns in tab-separated files) paste (paste columns) head tail rev (reverse lines) comm join shuf (shuffle lines of text)

Prerequisites: get the text file we are using myth: ssh into a myth and then do: scp cardinal:/afs/ir/class/cs124/nyt_200811.txt.gz . Or if you’re using your own Mac or Unix laptop, do that or you could download, if you haven't already: http://cs124.stanford.edu/nyt_200811.txt.gz Then: gunzip nyt_200811.txt.gz

Prerequisites The unix “man” command e.g., man tr (shows command options; not friendly) Input/output redirection: > “output to a file” < ”input from a file” | “pipe” CTRL-C

Exercise 1: Count words in a text Input: text file (nyt_200811.txt) (after it’s gunzipped) Output: list of words in the file with freq counts Algorithm 1. Tokenize (tr) 2. Sort (sort) 3. Count duplicates (uniq –c) Go read the man pages and figure out how to pipe these together

Solution to Exercise 1 tr -sc 'A-Za-z' '\n' < nyt_200811.txt | sort | uniq -c 25476 a 1271 A 3 AA 3 AAA 1 Aalborg 1 Aaliyah 1 Aalto 2 aardvark Steps: head file Just tr head Then sort Then uniq –c

Some of the output tr -sc 'A-Za-z' '\n' < nyt_200811.txt | sort | uniq -c | head –n 5 25476 a 1271 A 3 AA 3 AAA 1 Aalborg tr -sc 'A-Za-z' '\n' < nyt_200811.txt | sort | uniq -c | head Gives you the first 10 lines tail does the same with the end of the input (You can omit the “-n” but it’s discouraged.)

Extended Counting Exercises Merge upper and lower case by downcasing everything Hint: Put in a second tr command How common are different sequences of vowels (e.g., ieu)

Solutions Merge upper and lower case by downcasing everything tr -sc 'A-Za-z' '\n' < nyt_200811.txt | tr 'A-Z' 'a-z' | sort | uniq -c or tr -sc 'A-Za-z' '\n' < nyt_200811.txt | tr '[:upper:]' '[:lower:]' | sort | uniq -c tokenize by replacing the complement of letters with newlines replace all uppercase with lowercase sort alphabetically merge duplicates and show counts

Solutions How common are different sequences of vowels (e.g., ieu) tr -sc 'A-Za-z' '\n' < nyt_200811.txt | tr 'A-Z' 'a-z' | tr -sc 'aeiou' '\n' | sort | uniq -c

Sorting and reversing lines of text sort –f Ignore case sort –n Numeric order sort –r Reverse sort sort –nr Reverse numeric sort echo "Hello" | rev

Counting and sorting exercises Find the 50 most common words in the NYT Hint: Use sort a second time, then head Find the words in the NYT that end in "zz" Hint: Look at the end of a list of reversed words tr 'A-Z' 'a-z' < filename | tr –sc 'A-Za-z' '\n' | rev | sort | rev | uniq -c

Counting and sorting exercises Find the 50 most common words in the NYT tr -sc 'A-Za-z' '\n' < nyt_200811.txt | sort | uniq -c | sort -nr | head -n 50 Find the words in the NYT that end in "zz" tr -sc 'A-Za-z' '\n' < nyt_200811.txt | tr 'A-Z' 'a-z' | rev | sort | uniq -c | rev | tail -n 10

Lesson Piping commands together can be simple yet powerful in Unix It gives flexibility. Traditional Unix philosophy: small tools that can be composed

Bigrams = word pairs and their counts Algorithm: Tokenize by word Create two almost-duplicate files of words, off by one line, using tail paste them together so as to get wordi and wordi +1 on the same line Count

Bigrams tr -sc 'A-Za-z' '\n' < nyt_200811.txt > nyt.words tail -n +2 nyt.words > nyt.nextwords paste nyt.words nyt.nextwords > nyt.bigrams head –n 5 nyt.bigrams KBR said said Friday Friday the the global global economic

Exercises Find the 10 most common bigrams (For you to look at:) What part-of-speech pattern are most of them? Find the 10 most common trigrams

Solutions Find the 10 most common bigrams tr 'A-Z' 'a-z' < nyt.bigrams | sort | uniq -c | sort -nr | head -n 10 Find the 10 most common trigrams tail -n +3 nyt.words > nyt.thirdwords paste nyt.words nyt.nextwords nyt.thirdwords > nyt.trigrams cat nyt.trigrams | tr "[:upper:]" "[:lower:]" | sort | uniq -c | sort -rn | head -n 10

grep Grep finds patterns specified as regular expressions grep rebuilt nyt_200811.txt Conn and Johnson, has been rebuilt, among the first of the 222 move into their rebuilt home, sleeping under the same roof for the the part of town that was wiped away and is being rebuilt. That is to laser trace what was there and rebuilt it with accuracy," she home - is expected to be rebuilt by spring. Braasch promises that a the anonymous places where the country will have to be rebuilt, "The party will not be rebuilt without moderates being a part of

grep Grep finds patterns specified as regular expressions globally search for regular expression and print Finding words ending in –ing: grep 'ing$' nyt.words |sort | uniq –c

grep grep is a filter – you keep only some lines of the input grep gh keep lines containing ‘‘gh’’ grep 'ˆcon' keep lines beginning with ‘‘con’’ grep 'ing$' keep lines ending with ‘‘ing’’ grep –v gh keep lines NOT containing “gh” egrep [extended syntax] egrep '^[A-Z]+$' nyt.words |sort|uniq -c ALL UPPERCASE (egrep, grep –e, grep –P, even grep might work)

Counting lines, words, characters wc nyt_200811.txt 140000 1007597 6070784 nyt_200811.txt wc -l nyt.words 1017618 nyt.words Exercise: Why is the number of words different? Why is the number of words different?

Exercises on grep & wc How many all uppercase words are there in this NYT file? How many 4-letter words? How many different words are there with no vowels What subtypes do they belong to? How many “1 syllable” words are there That is, ones with exactly one vowel Type/token distinction: different words (types) vs. instances (tokens)

Solutions on grep & wc How many all uppercase words are there in this NYT file? grep -P '^[A-Z]+$' nyt.words | wc How many 4-letter words? grep -P '^[a-zA-Z]{4}$' nyt.words | wc How many different words are there with no vowels grep -v '[AEIOUaeiou]' nyt.words | sort | uniq | wc How many “1 syllable” words are there tr 'A-Z' 'a-z' < nyt.words | grep -P '^[^aeiouAEIOU]*[aeiouAEIOU]+[^aeiouAEIOU]*$' | uniq | wc Type/token distinction: different words (types) vs. instances (tokens)

sed sed is used when you need to make systematic changes to strings in a file (larger changes than ‘tr’) It’s line based: you optionally specify a line (by regex or line numbers) and specific a regex substitution to make For example to change all cases of “George” to “Jane”: sed 's/George/Jane/' nyt_200811.txt | less

sed exercises Count frequency of word initial consonant sequences Take tokenized words Delete the first vowel through the end of the word Sort and count Count word final consonant sequences

sed exercises Count frequency of word initial consonant sequences tr "[:upper:]" "[:lower:]" < nyt.words | sed 's/[aeiouAEIOU].*$//' | sort | uniq -c Count word final consonant sequences tr "[:upper:]" "[:lower:]" < nyt.words | sed 's/^.*[aeiou]//g' | sort | uniq -c | sort -rn | less

cut – tab separated files scp <sunet>@myth.stanford.edu:/afs/ir/class/cs124/parses.conll.gz . gunzip parses.conll.gz head –n 5 parses.conll 1 Influential _ JJ JJ _ 2 amod _ _ 2 members _ NNS NNS _ 10 nsubj _ _ 3 of _ IN IN _ 2 prep _ _ 4 the _ DT DT _ 6 det _ _ 5 House _ NNP NNP _ 6 nn _ _

cut – tab separated files Frequency of different parts of speech: cut -f 4 parses.conll | sort | uniq -c | sort -nr Get just words and their parts of speech: cut -f 2,4 parses.conll You can deal with comma separated files with: cut –d,

cut exercises How often is ‘that’ used as a determiner (DT) “that rabbit” versus a complementizer (IN) “I know that they are plastic” versus a relative (WDT) “The class that I love” Hint: With grep , you can use '\t' for a tab character What determiners occur in the data? What are the 5 most common?

cut exercise solutions How often is ‘that’ used as a determiner (DT) “that rabbit” versus a complementizer (IN) “I know that they are plastic” versus a relative (WDT) “The class that I love” cat parses.conll | grep -P '(that\t_\tDT)|(that\t_\tIN)|(that\t_\tWDT)' | cut -f 2,4 | sort | uniq -c What determiners occur in the data? What are the 5 most common? cat parses.conll | tr 'A-Z' 'a-z'| grep -P '\tdt\t' | cut -f 2,4 | sort | uniq -c | sort -rn |head -n 5