3 Pages

hw04

Course: HW 724, Fall 2009
School: Carnegie Mellon
Rating:
 
 
 
 
 

Word Count: 1380

Document Preview

Applied 36-724: Bayesian and Computational Statistics Homework 4: Due Friday March 10, 2006 Announcements: In Gelman, please look at Chapter 6 (if you haven't already). Please download and examine the following papers from jstor: Kass, R. E. and Raftery, A. E. (1995). Bayes factors. Journal of the American Statistical Association, 430, 773795. Cowles, M. K. and Carlin, B. P. (1996). Markov Chain Monte Carlo...

Register Now

Unformatted Document Excerpt

Coursehero >> Pennsylvania >> Carnegie Mellon >> HW 724

Course Hero has millions of student submitted documents similar to the one
below including study guides, practice problems, reference materials, practice exams, textbook help and tutor support.

Course Hero has millions of student submitted documents similar to the one below including study guides, practice problems, reference materials, practice exams, textbook help and tutor support.
Applied 36-724: Bayesian and Computational Statistics Homework 4: Due Friday March 10, 2006 Announcements: In Gelman, please look at Chapter 6 (if you haven't already). Please download and examine the following papers from jstor: Kass, R. E. and Raftery, A. E. (1995). Bayes factors. Journal of the American Statistical Association, 430, 773795. Cowles, M. K. and Carlin, B. P. (1996). Markov Chain Monte Carlo Convergence Diagnostics: A Comparative Review. Journal of the American Statistical Association, 91, 883904 . Kass, R. E., Carlin, B. P., Gelman, A., Neal, R. M. (1998). Markov Chain Monte Carlo in Practice: A Roundtable Discussion. The American Statistician, 52, 93100. (1998). In the remaining lectures for this part of the course I will discuss model fitting, model checking and model comparison, using examples from Parts IV and V of Gelman (and other sources). Problems: 1. Refer again to problem #12, pp. 99-100 of Gelman (the data is in Table 2.2, p. 69). priors on and , the joint model for the parameters and data is p(y, , |t) = i If we put independent Pois(yi | + ti )p()p() If you were happy with your informative prior from this problem for HW #3, you may use it. Otherwise try something simple like p() = p() = with appropriate choices for , 2 , , and 2 . (a) Give expressions for the complete conditionals for and . If there is a meaningful way to simplify your expressions, please do so. (b) Construct an MCMC algorithm for sampling from the posterior p(, |y) for your model. Chances are you will have to use Metropolis steps for both and . Use the "normal random walk" proposal distributions, i.e., qm (|(m-1) ) = qm (|(m-1) ) = N(|(m-1) , c ) N(|(m-1) , c ) N(| , 2 ) 2 N(| , ) where c and c are tuning parameters that you want to tune so that the acceptance rate is between 25% and 50% (and, really, closer to 50%; see e.g. pp 306-307 of Gelman). Code your algorithm in R. Notes: You may find you need to work with the logs of the complete conditionals in order to avoid numerical problems when multiplying together the terms of the likelihood and prior. Similarly, you may find you need to work with the log of the acceptance ratio for each parameter. (c) Generate an appropriate sample from the stationary distribution of your MCMC routine (i.e. throw away ^ an initial burn-in segment). Check, using time series plots, autocorrelation plots, R, etc., that your chain has reached stationarity, and decide whether your chain has to be thinned or block-averaged to reduce auto-correlation between draws. 1 (d) Produce a final sample from your MCMC chain, and produce appropriate numerical and graphical summaries of the p(, |y) using your sample. Compare with your results from HW #3. 2. The file "gss-data.r" defines a data frame gss.data containing the responses of 3121 respondents in the 1972, 1973, and 1974 General Social Survey. The responses are cross-classified by year of study (3 levels) and response (0=no, 1=yes) to each of three questions. The questions all begin: "Please tell me whether or not you think it should be possible for a pregnant woman to obtain a legal abortion if..." and end with: y1 : "...she is married and does not want any more children." y2 : "...the family has a very low income and cannot afford any more children." y3 : "...she is not married and does not want to marry the man." This data set is discussed in Tanner's (1996) book "Tools for Statistical Inference" and was considered by Goodman (1974, Biometrika) and by Haberman (1979, Analysis of Qualitative Data, Vol 2). (a) Use par(mfrow=c(2,2)) and barplot() to make barplots of the frequencies of the eight response patterns in each of the three years 1972, 1973, 1974. Because of the preponderance of "all yes's" and "all no's" responses, it is plausible to think that there are basically two classes of people responding to the survey, a class C1 of people who are disinclined to accept abortion under any of the three listed conditions, and a class C2 who would be inclined to accept abortion under all of them. This suggests a model for one respondent of the form W = J P[Yi1 yi1 , Yi2 = yi2 , Yi3 = yi3 , | p, ] = w=1 w j=1 pwi jj [1 - pw j ]1-yi j y () where w = P[i Cw ], yi j = 1 if respondent i responds "yes" to question j, and yi j = 0 for "no", and pi j = P[yi j = 1|i Cw ], and where there are W = 2 classes of respondents and J = 3 questions. We wish to estimate the parameters w (w = 1, 2), and pw j (w = 1, 2, j = 1, 2, 3), for the N = 1055 respondents in the 1972 portion of the survey. Assuming independence between respondents, explicitly write out the likelihood g(Y | p, ), for the observed data matrix Y = [yi j : i = 1, . . . , N, j = 1, 2, 3]. (b) The likelihood is greatly simplified by use of data augmentation. Consider the latent variables (a.k.a. missing data, or augmentation data) zi2 = Show that if we assume zi2 yi j iid 0, 1, if i C1 if i C2 , zi1 = 1 - zi2 indep Bin(1, 2) Bin(1, p1 j), if zi2 = 0 Bin(1, p2 j), if zi2 = 1 then the distribution of the observed data is as in (). Show, therefore, that we may take the complete data likelihood to be ziw yi j 1-yi j pw j [1 - pw j ] w f (Y, Z|p, ) = w j i n w c = pwwjj [1 - pw j ]nw -cw j w w j where nw = i ziw , and cw j = i ziw yi j . 2 (c) The model in part (c) is equivalent to the hierarchical model yi j |z, p zi2 | pw j 2 indep Bernoulli(pzi2+1 , j) Bernoulli(2) (some priors) (some prior) iid Choose reasonable priors for the p's and for 2 (but not also 1 --why?). Estimate this model in BUGS, for the 1972 data only. Notes: This is an example of a "latent class" model, also called a "discrete mixture" or "clustering" model (the clases C1 and C2 represent latent classes, or clusters, of response patterns). As with many such models, there is a relabeling ambiguity: if we interchange the class indices w = 1 and w = 2 throughout, the fit to the data is the same; this can lead to odd bimodalities in posterior distributions, for example. A common way to resolve the ambiguity is to arrange that p2 j > p1 j for one particular question j. It may be worthwhile to try to run BUGS from R in this problem, following the examples in lecture and on Gelman's website. If you cannot get BUGS to work (with or without R), this is still a fairly reasonable problem to do in R, as in problem 1 (with judicious choice of priors, everything is pure Gibbs steps). Generate an appropriate sample from the stationary distribution of your MCMC routine (i.e. throw away ^ an initial burn-in segment). Check, using time series plots, autocorrelation plots, R, etc., that your chain has reached stationarity, and decide whether your chain has to be thinned or block-averaged to reduce auto-correlation between draws. Interesting things to look at would be: 2 The pw j 's Perhaps a few "interesting" ziw 's, or P(zi2 = 1|yi1 , yi2 , yi3 ) for a few interesting cases (how many such probabilities are there?). Plot estimated probabilities of the eight response patterns in each latent class, and compare with the barplots you made in part (a). 3. One hypothesis about the different years of the survey is that the proportions of respondents in C1 and C2 change from year to year (but the response behavior in each class stays the same). Letting t be the year, this suggests the complete data likelihood zitw 1974 y f (Y, Z, |p, ) = pwi jj [1 - pw j ]1-yi j tw w j i t=1972 1974 W ntw J cw j (nw -cw j ) = pw j (1 - ptw j ) tw t=1972 w=1 j=1 now = (tw , t = 1972, 1973, 1974, w = 1, 2); zitw = 1 if respondent i is from year t and is in class Cw (and 0 otherwise); ntw = i zitw , nw = t i zitw ; and cw j = t i zitw yi j . (a) Fit this model in BUGS or R (whatever you used in problem 2 should work here) and summarize the posterior distributions of the 's. Compare with the posterior distribution of 2 in problem 2. (b) A way to test the hypothesis about the model is to compare the two models tw freely varying as t = 1972, 1973, 1974, w = 1, 2 tw w as t = 1972, 1973, 1974, w = 1, 2 (i.e., tw is allowed to vary in w but not in t). Carry out this comparison, using Bayes Factors. 3
Find millions of documents on Course Hero - Study Guides, Lecture Notes, Reference Materials, Practice Exams and more. Course Hero has millions of course specific materials providing students with the best way to expand their education.

Below is a small sample set of documents:

Carnegie Mellon - WEEK - 720
Carnegie Mellon - EXAM - 303
Factsheet - Statistical Summary of Yale Universityhttp:/www.yale.edu/oir/facts05.htmlFACTSHEET -Some Facts & Statistics About Yale UniversityYale University is a large research university with a wide array of programs, departments, schools, cent
Carnegie Mellon - AERA - 04
Overview of the Instructional Quality AssessmentBrian Junker1, Lindsay Clare Matsumura2, Amy Crosson2, Mikyung Kim Wolf2, Allison Levison2, Yanna Weisberg3, and Lauren Resnick2Paper presented at the Annual Meeting of the American Educational Rese
Carnegie Mellon - WEEK - 303
The News Leader - www.newsleader.com - Staunton, Va.http:/www.newsleader.com/apps/pbcs.dll/article?AID=/20080115/NE.Welcome to The News Leader - Staunton, Va.Customer Service:Subscribe Now | Place an Ad | Contact Us | Make us your Homepagen
Carnegie Mellon - HW - 303
Evolutionary Psychologywww.epjournal.net 2007. 5(3): 612-631Original ArticleSex Differences in Romantic Kissing Among College Students: An Evolutionary PerspectiveSusan M. Hughes, Department of Psychology, Albright College, Reading, PA 19612
Carnegie Mellon - WEEK - 303
THE WORLD GEOGRAPHIC K OWLDEGE OF CMU STUDE TSPrepared for Brian Junker, Professor of 36-303Prepared by Sara Andrews, Mario Nuez, Davis WooMay 2, 2008CO TE TSPAGESection I: Introduction . . . . . . . . . . . . . . . . . . . . . . . . . . .
Carnegie Mellon - WEEK - 10
Writing an Empirical Articlefile:/C:/Users/brian/Desktop/303/writing/writing_article_bem.htmTo appear in Darley, J. M., Zanna, M. P., & Roediger III, H. L. (Eds.) (2002). The Compleat Academic: A Career Guide. Washington, DC: American Psychologic
Carnegie Mellon - WEEK - 720
1Bayesian Modelling and Inference on Mixtures of DistributionsJean-Michel Marin, Kerrie Mengersen and Christian P. Robert 1`But, as you have already pointed out, we do not need any more disjointed clues,' said Bartholomew. `That has been our prob
Wisconsin - ES - 535
AOS/Env. Stud. 535: Atmospheric Dispersion and Air Pollution Syllabus, Spring, 2008 Prof. Tracey Holloway Email: taholloway@wisc.edu; phone: 262-5356 Office: Room 201A Enzyme, 1710 University Ave. Office Hours: After Class, or by appointment Class in
Carnegie Mellon - PUB - 3
Carnegie Mellon - PUB - 2
Carnegie Mellon - PUB - 2
Carnegie Mellon - PUB - 2
Carnegie Mellon - PUB - 4
Proceedings of the Third IEEE International Conference on Data Mining (ICDM'03) 0-7695-1978-4/03 $ 17.00 2003 IEEEProceedings of the Third IEEE International Conference on Data Mining (ICDM'03) 0-7695-1978-4/03 $ 17.00 2003 IEEEProceedings of t
Carnegie Mellon - PUB - 2
Super-Resolution Optical FlowSimon Baker and Takeo Kanade CMU-RI-TR-99-36AbstractExisting approaches to super-resolution are not applicable to videos of faces because faces are non-planar, non-rigid, non-lambertian, and are subject to self occlus
Carnegie Mellon - PUB - 2
To appear in Proceedings of the Association for Unmanned Vehicle Systems International 1999. 26th Annual Symposium, Baltimore, MD.Arctic Test Flights of the CMU Autonomous HelicopterRyan Miller, Omead Amidi, and Mark Delouis Carnegie Mellon Roboti
Carnegie Mellon - PUB - 2
Carnegie Mellon - PUB - 4
Field Experiments with the Ames Marsokhod RoverDaniel Christian1, David Wettergreen, Maria Bualat, Kurt Schwehr2, Deanne Tucker, Eric Zbinden1 Intelligent Mechanisms Group NASA Ames Research Center, MS 269-3 Moffett Field, CA 94035-1000 USAAbstrac
Carnegie Mellon - PUB - 4
An Examination of Remote Access Help Desk CasesAaron Steinfeld Ritika Sanghi Joseph Giampapa Daniel Siewiorek Katia SycaraSeptember 2003 CMU-CS-03-190School of Computer Science Carnegie Mellon University Pittsburgh, PA 15213 This report also app
Carnegie Mellon - PUB - 4
Iterative Design of A Braille Writing Tutor to Combat IlliteracyN. Kalra, T. Lauwers, D. Dewey, T. Stepleton, and M. B. Diasfor education because parents and families of blind children often do not realize the possibility or value of educating thei
Carnegie Mellon - PROJ - 1
run runallans =Processing the picture:pic =sources/00017v.jpgans =with user bounds:bounds = 15leftcrop = 5rightcrop = 386upcrop = 6downcrop = 1021third = 339ans =G offsetcorr_o
Carnegie Mellon - PROJ - 1
ans =Processing the picture:pic =sources/00153u.tifans =with user bounds:bounds = 30leftcrop = 87rightcrop = 3655upcrop = 102downcrop = 9575third = 3158ans =G offsetcorr_o
Carnegie Mellon - PROJ - 1
run runallans =Processing the picture:pic =sources/01443u.tifans =with user bounds:bounds = 30leftcrop = 80rightcrop = 3610upcrop = 87downcrop = 9505third = 3140ans =G off
Carnegie Mellon - PROJ - 1
diary('tif_output.txt');run runallans =Processing the picture:pic =sources/00794u.tifans =with user bounds:bounds = 30leftcrop = 100rightcrop = 3749upcrop = 94downcrop = 9605third =
Carnegie Mellon - PROJ - 1
run runselfchosenans =Processing the picture:pic =sources/selfchosen/01031u.tifans =with user bounds:bounds = 30leftcrop = 51rightcrop = 3665upcrop = 26downcrop = 9528third = 3
Wisconsin - STAT - 371
STAT371DISCUSSION 10November 10 , 20021. Comparison of Paired Samples In a paired design, the observations (Y1 , Y2 ) occur in pairs (not independent). Instead of considering Y1 and Y2 independently, we consider the DIFFERENCE d, dened as d = Y
Wisconsin - STAT - 371
Quoc TranB248D MSCtran@stat.wisc.eduSTAT 3711. Introduction to RDiscussion #10December 5, 2006 available statistical softwares on campus * Computer Labs (Minitab) * Memorial Library (Rm 140) Union South (Lower Level) * Computer Labs (R)
Wisconsin - STAT - 541
Ismor Fischer, 9/15/2008Solutions / 2.5-12.52-1. DotplotsAll of these samples have the same mean value = 4. However, the sample variances (28/6, 10/6, 2/6, and 0, respectively), and hence the standard deviations (2.160, 1.291, 0.577, and 0, re
Wisconsin - STAT - 572
numberfuelstrain82 0.0 158 0.0 2106 0.0 158 0.0 263 0.0 162 0.0 299 0.0 158 0.0 2101 0.0 173 0.0 245 0.5 127 0.5 234 0.5 128 0.5 226 0.5 131 0.5 244 0.5 128 0.5 242 0.5 138 0.5 231 0.75 1
Wisconsin - STAT - 572
PeriodObservedGlovesExperience12115276153111512122652311102155321313338731201022210322101120202222033320130828883328144924491409244932191201523215
Wisconsin - AAE - 635
AAE 635Applied Microeconomic TheoryFall 200811/10/2008Lecture 10-2Last class- Cost minimization (lecture note 9, chapter 9)Today & Next class (and more)- Homework 4 due Nov. 13th - Homework 5 out Nov. 13th, due 25th - Cost minimization (
Wisconsin - AAE - 635
AAE 635Applied Microeconomic TheoryFall 200810/21/2008Last class- Duality (lecture note 8, chapters 7&9)Today & Next class (and more)- Homework 3 due Oct. 23rd - Midterm in class on Oct. 30th - Cost minimization (continued) (lecture note 9
Carnegie Mellon - ECE - 739
Carnegie MellonAVISPA Automated Validation of Internet Security Protocols and ApplicationsSlides adapted from Duminda Wijesekera as well as from Alessandro Armando1Joe Slember Maintaining Consistent Replication through Program AnalysisCarnegi
Carnegie Mellon - EE - 349
Gumstix Bluetooth Guide for Linux18349 Embedded Real-Time SystemsEdited: September 26, 2008Contents1 Introduction 1.1 Brief Disclaimer . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1.2 A Word on Motivation
Carnegie Mellon - EE - 771
1CARNEGIE MELLON UNIVERSITYDEPARTMENT OF ELECTRICAL AND COMPUTER ENGINEERING 18-771 LINEAR SYSTEMS SPRING 2003PROBLEM SET IV 250 POINTS DUE 20 MARCH 2003 in LECTURE STATE SPACE COMPUTATION TRANSITION MATRIX MODAL DECOMPOSITION STABILITY SECOND
Carnegie Mellon - BCFG - 2
01:24:31 <bcfg2gozerbot> bcfg2-timeline: RPMng edited by mjtbrady01:26:32 <bcfg2gozerbot> bcfg2-timeline: RPMng edited by mjtbrady01:32:35 <bcfg2gozerbot> bcfg2-timeline: RPMng edited by mjtbrady16:45:44 <dsch04> Oh my, potential big contract ahea
Carnegie Mellon - BCFG - 2
00:10:29 <drtns> sorry for the extended AFK. ya thay makes perfect sense.00:11:07 <drtns> I am heading out for the night I'll probably be in here tomorrow as I am getting our first box all laid out.00:11:22 <drtns> and am sure to have a question or
Carnegie Mellon - BCFG - 2
09:14:19 <bcfg2gozerbot> bcfg2-timeline: Ticket #553 (enhancement reopened): Files to permit building RPMs directly from svn checkout16:06:11 <desai> dsch04: btw, i pulled the makefile out of the repository deliberately, until we have information ba
Carnegie Mellon - BCFG - 2
05:10:43 <zultron1> desai: Thanks! Makes subclassed Metadata plugins much easier.06:36:30 <zultron1> desai: Has there ever been any call for adding extra groups to a client in clients.xml? For example:06:36:35 <zultron1> <Client name="aclient.e
Carnegie Mellon - BCFG - 2
00:00:34 <dsch04> Right, time for bed. Will look into this more tomorrow.00:10:01 <kisielk> wb00:13:37 <dsch04> One more thing.00:13:57 <dsch04> Is bcfg2 use a "push" or "pull" delivery?00:14:26 <dsch04> i.e. when you make cfg changes, do you nee
Carnegie Mellon - BCFG - 2
03:28:12 <Hallmarc> Hello, anybody around?03:35:43 <Hallmarc> \help13:39:20 <Tuju> what is the equivalent for cfengine's "shellcommands:" ?13:40:25 <Hallmarc> hello all, I was wondering if I could get help installing bcfg2 on centOS 5, specificall
Carnegie Mellon - BCFG - 2
02:19:50 <jrowan> When one has svn enable on a repository, is there something I have to do to make the server notice that I've updated to a new changeset?02:20:12 <jrowan> I haven't figured out the pattern, but it seems to 'lag' in some regard.02:2
Carnegie Mellon - BCFG - 2
00:51:36 <desai> hm01:12:22 <desai> solj: is this on an nfs filesystem?01:12:26 <desai> (the repo, that is)01:18:12 <solj> desai: i was able to reproduce it on a local filesystem01:21:28 <desai> ACTION hasn't been able to yet01:21:40 <solj> weir
Carnegie Mellon - GRIFFIN - 2
** Lesson Plan for Communications Merit Badge **Contact: John Linwood Griffin voice: +1-412-268-7162 email: griffin2@ece.cmu.eduDay 1. (Saturday, February 26, 2000)-Objectives: - Introduce th
Carnegie Mellon - GRIFFIN - 2
Statement of Qualificatons John Linwood Griffin griffin2@ece.cmu.edu November 11, 1998I am an Eagle Scou
Carnegie Mellon - IACM - 2004
IACM 2004Conference ProceedingsCONFERENCE PROCEEDINGS IACM 2004June 6-9, 2004 Renaissance Hotel Pittsburgh, PALast Updated: 6/1/2004 1IACM 2004 TABLE OF CONTENTSConference ProceedingsPaper Abstracts..3 Interdisciplinary Research Workshop
Carnegie Mellon - IACM - 2004
PROGRAM AT A GLANCE 17th Annual Conference The International Association for Conflict ManagementJune 6-9, 2004 Renaissance Hotel Pittsburgh, PAIACM 2004Program At A GlanceSATURDAY, JUNE 512:30 6:00 pm 7:30 10:00 IACM Board Meeting in the He
Carnegie Mellon - FORUM - 4
Size Dependence of Electrical and Thermal Transport Properties in OxidesXiao-Dong Zhou, and Larry Pederson Pacific Northwest National Laboratory 902 Battelle Boulevard Richland, WA 99352 xiaodong.zhou@pnl.gov ABSTRACT The awareness of environmental
Carnegie Mellon - FORUM - 3
3rd Korea-US NanoForum, Seoul, Korea, April 3-4, 2006Detection of Glycoprotein based on FRET between NanoparticlesHak-Sung Kim Department of Biological Sciences, KAIST 373-1, Kusung-dong, Yusung-gu, Daejon, 305-701, Korea hskim76@kaist.ac.kr ABSTR
Carnegie Mellon - FORUM - 4
Dr. Michael J. Janik Assistant Professor Pennsylvania State UniversityContact Details Organization Name: Pennsylvania State University Address: 104 Fenske Laboratory Town: University Park, PA Country: USA Zip Code: 16802 Phone: (814)863-9366 Fax: (
Carnegie Mellon - FORUM - 4
Speaker ProfileName : Donghwan Kim Title : Professor Institute : Korea UniversityDonghwan Kim received his B.S. and M.S. degrees in Metallurgical Engineering from Seoul National University in 1982 and 1984, respectively, and Ph.D. degree in Materi
Carnegie Mellon - IACM - 2004
IACM 2004Conference ProgramIACM 2004 CONFERENCE PROGRAM Renaissance Hotel, Pittsburgh, PASATURDAY, JUNE 5 12:30 6:00 pm 7:30 10:00 pm SUNDAY, JUNE 6 1:00 6:00 pm Conference Registration Renaissance 2nd Floor Prefunction Area IACM Board Meetin
Carnegie Mellon - IFF - 2
Dear Volunteer: Thank you for your valuable contribution to the 2005 Modern Languages Film Festival. I hope introducing one of our films and/or leading the post-screening discussion will be a fun and educational Service-Learning experience for you. I
Carnegie Mellon - MEETING - 99
The role of expert assessments in international environmental affairsWilliam ClarkGlobal Environmental Assessment Project Harvard Universityhttp:/environment.harvard.edu/geaThe Problem. > 200 international environmental treaties . most requiri
Carnegie Mellon - CS - 2
Bangalore Workshop on ICT for Sustainable Development - Questionnaire Questionnaire on the Role of ICT in Governance and Empowerment Note: The workshop website (http:/www.cs.cmu.edu/~rtongia/itsd.htm) gives information on the Workshop agenda and on I
Carnegie Mellon - DKB - 1
-The Classes of Shadowrun PlayerThe Role-PlayerThe Real Man(TM)The MunchkinThe LunaticFavourite Character TypeThe Role-Player: Gang member, reporter, detective, deckerThe Real Man(TM): Mercenary, samurai, physical adeptThe Munchkin: Lofwy
Carnegie Mellon - CS - 2
Carnegie Mellon - CMT - 55
11-731: Machine Translation Spring 2007Homework Assignment #2Out: Wednesday, February 21, 2007 Due: Monday, March 19, 2007Word Alignment and Bilingual Translation Lexicon ConstructionYour task in this assignment is to develop and implement basic
Carnegie Mellon - CMT - 731
11-731: Machine Translation Spring 2007Homework Assignment #2Out: Wednesday, February 21, 2007 Due: Monday, March 19, 2007Word Alignment and Bilingual Translation Lexicon ConstructionYour task in this assignment is to develop and implement basic
Carnegie Mellon - CMT - 55
11-731 Machine Translation: Homework Assignment (1)Teruko MitamuraInstruction:This homework assignment is due on Feb 19 (Monday). Work alone.1. Mismatches1. Lexical Mismatches: When we build an MT system, we face problems with lexical differen
Carnegie Mellon - CMT - 731
11-731 Machine Translation: Homework Assignment (1)Teruko MitamuraInstruction:This homework assignment is due on Feb 19 (Monday). Work alone.1. Mismatches1. Lexical Mismatches: When we build an MT system, we face problems with lexical differen