ling 555 programming for linguists
play

Ling 555 Programming for Linguists Python Linguistic Examples and - PowerPoint PPT Presentation

Ling 555 Programming for Linguists Python Linguistic Examples and Functions (part I) Robert Albert Felty Speech Research Laboratory Indiana University Oct. 15, 2008 L555 Oct. 15 Prereqs homework While we are waiting Linguistic


  1. Ling 555 — Programming for Linguists Python — Linguistic Examples and Functions (part I) Robert Albert Felty Speech Research Laboratory Indiana University Oct. 15, 2008

  2. L555 Oct. 15 Prereqs homework While we are waiting Linguistic Examples Please download the courseBackground.txt file from: Resources http://robfelty.com/teaching/L555Fall2008/ resources/sapir.txt Functions curl -o courseBackground.txt http://robfelty.com/teaching/L555Fall2008/ resources/sapir.txt For Wednesday: Read Chapter 6 on Abstraction (Functions) 2

  3. L555 Oct. 15 Outline homework Homework questions Linguistic 1 Examples Linguistic Examples 2 Resources frequency Functions co-occurrence Types and tokens Resources 3 Functions 4 parameters Return values 3

  4. L555 Homework questions? Oct. 15 homework Linguistic Examples Resources Functions 4

  5. L555 frequency Oct. 15 homework What to do with a dict? Linguistic You could construct a dictionary of a corpus’s word Examples frequencies. Each word would be a key, and the frequency corresponding value would be its frequency. co-occurrence type-token Resources Functions 5

  6. L555 co-occurrence Oct. 15 homework Definition Linguistic One way to measure semantic relatedness is by Examples co-occurrence frequency. If two words frequently occur frequency close to each other in text, they probably share a co-occurrence semantic relationship. type-token Different kinds of frequency Resources Some words might be very frequent, and relatively Functions context independent. That is, they occur with many other words Other words might be frequent, but only occur with a few other words These types of words are probably stored and accessed differently in the brain 6

  7. L555 Type Token Ratio Oct. 15 homework Definition Linguistic The type-token ratio is defined as the ratio between the Examples number of types (unique words) and the number of frequency tokens (total number of words) in a text. co-occurrence type-token Type-token ratio is one way to measure linguistic Resources density (sometimes referred to as diversity or complexity). Functions While English is sometimes to reported to have as many as 500,000 words, most people only know somewhere in the 10,000-50,000 range. One can expect that people who know lots of words will end up repeating words less. This can be measured by the type-token ratio. 7

  8. L555 Resources for you: Oct. 15 Some of the examples we have covered in class today homework can be found on the website at: Linguistic http://robfelty.com/teaching/L555Fall2008/resources/py Examples The files from today are: Resources co-occurrence.py 1 Functions 8

  9. L555 What is a function? Oct. 15 homework Definition Linguistic A function is something you can call (possibly with Examples some parameters, the things you put in the parentheses), which performs an action and returns a value. Resources Functions Example parameters Return values def hello(name, greeting): return greeting + ", " + name" print hello( ' rob ' , ' hallo ' ) Define first, then call! In python, a function must be defined before you can call it. That is, define it on line 10, call it on line 15. 10

  10. L555 Parameters (Arguments) Oct. 15 homework Definition Linguistic Parameters (also known as arguments) are inputs to Examples functions. Resources Example Functions When you use the min() function, you pass the parameters function a list as a parameter Return values 11

  11. L555 3 types of Parameters Oct. 15 positional Positional parameters must be entered in the homework correct order Linguistic hello(name, greeting) Examples keyword Keyword parameters can be entered in any Resources order Functions hello(greeting= ' Servus ' , parameters name= ' rob ' ) Return values collected Parameters can also be collected by a function, allowing the user to input any number of parameters to the function def hello3(*collectedParams): return collectedParams print hello3( ' foo ' , ' bar ' , 0) 13

  12. L555 Parameter types Oct. 15 homework Definition Linguistic Any kind of variable can be passed to a function (string, Examples integer, float, list, dict, tuple, object). Your function must use these as the right type though. Resources Functions Example parameters Return values def sortStudents(students): return sorted(students) theStudents= ' John and Mary ' print sortStudents(theStudents) theStudents=[ ' John ' , ' Mary ' ] print sortStudents(theStudents) 15

  13. L555 Return values Oct. 15 homework Definition Linguistic Parameters are inputs to functions. Return values are Examples outputs. Resources Multiple return values Functions To return more than one value, put them in a tuple parameters def hello(): Return values x=1 y=2 return (x,y) foo=hello() one,two=hello() 17

  14. L555 Function No-Nos Oct. 15 homework No-no Linguistic Don’t print out stuff in functions (unless debugging) Examples def hello(): print "hello, world" Resources Functions Yes-Yes parameters Do return stuff in functions and print later Return values def hello(): return "hello, world" print hello() # OR sys.stdout.write(hello() + "\n") 19

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