1 / 6

Learning Based Java

This guide explores the principles of object-oriented learning classifiers using Java. It discusses the assumption that users have an object-oriented (OO) representation and emphasizes classifiers as methods to classify objects based on features without needing to imply learning. The document also highlights how to learn classifiers that mimic an oracle by leveraging other classifiers and data with learning algorithms, producing discrete distributions. Additionally, it delves into decision inference in classifiers, ensuring coherent outputs based on constraints defined in first-order logic.

elin
Télécharger la présentation

Learning Based Java

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Learning Based Java The Basics MIAS DSSI

  2. phrase1 word1 word2 word3 Assumptions • The user has an OO representation • Only objects need to be classified

  3. Classifiers • Any method that classifies an object … … and returns features • Does not imply learning discrete POSLabel(POSLabeledWord w) <- { return w.label; }

  4. Learning Classifiers • Learn to mimic an oracle • Using other classifiers as features • From data • With a learning algorithm • Can produce a discrete distribution

  5. John threwtheballtoMary . Inference • Making classifiers’ decisions coherent • Example: Shallow Parsing • Maximize E[correct decisions] Chunks cannot overlap

  6. Constraints • Written in First Order Logic • In terms of learning classifiers and Java objects forall (Phrase p in sentence) exists (Word w in p.allWords()) MyLearner(w) :: “yes!”

More Related