6 Pages

lec9.agk.update

Course: CS 630, Fall 2004
School: Cornell
Rating:
 
 
 
 
 

Word Count: 1732

Document Preview

Lecture CS630 9: End of Probabilistic Retrieval, Introduction to Relevance Feedback Lecture by Lillian Lee Scribed by Randy Au, Nick Gerner, Blazej Kot February 23, 2006 In this lecture, we nish treating the basic retrieval paradigms, and move onto introducing the relevance feedback paradigm. 1 Meta-lessons During the past several lectures, we have been trying to develop the following skills and important...

Register Now

Unformatted Document Excerpt

Coursehero >> New York >> Cornell >> CS 630

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.
Lecture CS630 9: End of Probabilistic Retrieval, Introduction to Relevance Feedback Lecture by Lillian Lee Scribed by Randy Au, Nick Gerner, Blazej Kot February 23, 2006 In this lecture, we nish treating the basic retrieval paradigms, and move onto introducing the relevance feedback paradigm. 1 Meta-lessons During the past several lectures, we have been trying to develop the following skills and important meta-tools to do mathematical modeling. These are tools with broad application within and outside of information retrieval. Bayes ip : Apply Bayes Rule when appropriate. (Re)-factorizations : Consider independent random variables and decomposing into products thereof. This rephrases the problem to hopefully eliminate terms to appropriately simplify a derivation. Insert R.V.s : Capture the system you are trying to model by inserting (mathematically appropriately) random variables Ground models : Incorporate semantic knowledge and scenarios to yield intuition and take reasonable next steps (sometimes making appropriate assumptions). Aesthetic sense : Many choices during a derivation may seem arbitrary, but must be taken with care to move towards a desirable result. These choices rely on your intuition and aesthetic sense Check/challenge preconceptions : Important, interesting and valuable new results are often achieved by questioning previous assumptions and models (consider pivoted length normalization or the language modeling approach to IR ranking). Math formalisms : By formalizing a model mathematically, assumptions and preconceptions are made explicit, making the applicability of a technique clear and suggesting directions for future work. Also consider taking advantage of previous formalisms (see challenging preconceptions above) 1 2 Simple re-derivation of a probabilistic scoring function TD D Recall we have the topic models and independent query models TQ Q We can now dene what we mean by R = y to be that the topic model that generates a document is the same as the topic model which generates the query. Our scoring function now (relying on the above intuition of R = y) is: P (R = y|D = d, Q = q) Again relevance status would seem to be determined by d and q and so apparently there is no room for probabilities. To address this issue (which we have faced before in probabilistic models of information retrieval) we consider the contents of documents rather than the documents themselves. Here, two documents might have been generated by dierent topic models but have the same content. This gives us a binning intuition which we considered in the RSJ model to give a random choice. We can rewrite our scoring function as follows: P (R = y, TQ = t, TD = t |D = d, Q = q) t,t Now we want to move Q to the LHS, so use Bayes ip: P (Q = q|R = y, TQ = t, TD = t , D = d)P (R = y, TQ = t, TD = t |D = d) t,t P (Q = q|D = d) Note that the P (R = y, TQ = t, TD = t |D = d) term is zero if t = t since our interpretation of relevance is that these two topic models must be the same (equal the same t). Also, by the independence of the query and document the denominator term becomes P (Q = q), which is constant for all documents, so it can be ignored under rank. This now gives: P (Q = q|R = y, TQ = t, TD = t, D = d)P (R = y, TQ = t, TD = t|D = d) t Firstly, notice R = y is in both cases implied because of TQ = t, TD = t - that is our very denition of relevance. Therefore, we can drop this term from both parts of the equation. Secondly, notice Q = q does not depend on the document choice at all - therefore we can remove TD = t and D = d. Together, this now gives: 2 P (Q = q|TQ = t)P (TQ = t, TD = t|D = d) t Now, notice that in the right-most term TQ = t is independent of D = d. However, we have this annoying term TD = t. Note that from basic probability, this term can be re-written in a split form: P (TQ = t|TD = t, D = d)P (TD = t|D = d) Plugging this back into our scoring function gives: P (Q = q|TQ = t)P (TQ = t)P (TD = t|D = d) t In practice, we assume t (d) is an MLE/MAP for the topic model of d and that P (TD = t (d)|D = d) = 1 removing the necessity to sum over all possible topic models for d. This gives: P (Q = q|TQ = t (d))P (TQ = t (d)) Note that this model has a problem in that it looks for exact matching between the the topic model for the document and the topic model for the query. We might address this with some notion of scoring by the distance between the models to allow for partial matching. 3 3.1 Relevance Feedback (prelude) Introduction to Relevance Feedback In our coverage of classic probabilistic information retrieval we had to overcome the issue of missing relevance information: we always needed some way to gather statistics conditioned on the (hidden) value of R. Now we will consider the case when some of this relevance information is available. Vector space models have no a priori method of incorporating this information and rely on further ad hoc methods. The probabilistic retrieval framework depends on some probabilistic scoring function that can (and does) R include = y explicitly. 3.2 Relevance Feedback Intuition For a given query we assume that some relevance-labeled documents are available. This may seem counter-intuitive (this assumes that the user chooses relevant documents rather than the system!) Here are some possible scenarios in which the availability of such information is plausible: The user is very interested in recall for novelty verication (paper publishing or plagiarism detection) 3 Mitigate sample bias: to use a returned set of relevant documents as a random sample we must account for ranking bias If a system is giving no relevant documents, but some partially relevant documents, feedback can improve results and so the user might be willing to provide it. This may arise if the system was unable to interpret the query (because of user or system error is left to the readers judgement) 4 Questions The scoring function derived in section 2 results in the same function as derived in the previous lecture. Specically we can use the same multinomial estimation model for document and query generation. Recall an important parameter of this model: . Lets consider how these two derivations dier qualitatively by exploring this parameter. Imagine a world in which we have the following corpus. Weve included topic models which can generate the documents; however, notice how we have not been concrete in dening the topic models. They are, for your reference in parameter decisions and to help conceptualize the corpus, as follows: t1 embodies the idea of dogs hate cats which generates d1 = dogs chase cats d2 = cats f ear dogs d3 = dogs hate cats and t2 embodies the idea of dogs love cats which generates d4 = dogs chase cats d5 = dogs like cats d6 = cats hate dogs We now have a case of 1 unique document per topic, and 2 shared documents between the two that are semantically dierent but the same when treated as a bag of words. The entire vocabulary space is 6 words: V = dogs, cats, chase, f ear, like, hate 4 4.1 Question 1 In your own words describe the function of the parameter . (a) Quantitatively (but in words), for the scoring function used in both derivations, compare the ranking function as varies from zero. (b) Qualitatively, what is the meaning of this parameter for this derivation with respect to topic model document generation? Perhaps reference the corpus in question (above). 4.2 Question 2 Now that you have an idea of the function of the parameter , what might be one good choice for this parameter? Provide a value and a short justication with respect to the corpus in question (above). 4.3 Question 3 Now, suppose some user out there has the information need t3 embodies the idea of what do dogs hate which generates the query q = dogs hate Calculate the rank of each document using your choice of from before. 5 5.1 Answer Question 1 (a) is a smoothing parameter. Conceptually it changes emphasis from the relative-frequency distribution in the document to the observed relative-frequency distribution in the corpu...

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:

Cornell - CS - 630
VP V S 3 tx5k{tS`jwdkquSuq|xqj3x~1qxjvTvt1|nfTSzxjVF v t } t| m j r t rp vj ~ v t }m } ~ t } tkj } k| qB txSjqFwm v t } m k| 5` tx5k{tknquuSuqd|{tn{|xt1{|t`}n$s{zzi v t } t| j r t rp vj ~ y } v t } tkj j Twn} 3j|~ gty~3Fdkk 3r }m v
Cornell - CS - 611
CS611 Lecture 39Scribe: Yan Zhang and Antonio MontalbanModule Types3 December 2001Lecturer: Andrew Myers1 Review of existential typesIn the previous class we dened the existential type X., where X is a type variable that may appears free . W
Cornell - CS - 611
CS611 Lecture 6Well Founded Induction9 September, 2005Lecturer: Andrew MyersScribe: James Worthington, Soam Vasani1 SummaryIn this lecture we will 1. Dene well-founded induction 2. Show that our denition of free variables gives us a well-de
Cornell - CS - 611
CS611 Lecture 21Weakest PreconditionsFriday, the thirteenth of October, 2000Lecturer: Dexter KozenScribe: Reba Schuller and Tom Wexler1 Valid Partial Correctness AssertionsIn the last lecture, we introduced the concept of a partial correctn
Cornell - CS - 611
CS611 Lecture 31Subtype Polymorphism12 November, 2004Lecturer: Andrew MyersScribe: Helgi Ingolfsson, Shobhit Varshney1 IntroductionWe would like to extend the traditionally typed -calculus for it to support objects, but objects are complica
Cornell - CS - 611
CS611 Lecture 15Axiomatics Semantics II and Hoare Logic30 September, 2005Lecturer: Michael ClarksonScribe: Bryant Adams, Mia Minnes1 Axiomatic Semantics II1.1 RenementDenition. For programs S and T, we say that S renes T i the set of poss
Cornell - CS - 280
Inclusion-Exclusion RuleRemember the Sum Rule: The Sum Rule: If there are n(A) ways to do A and, distinct from them, n(B) ways to do B, then the number of ways to do A or B is n(A) + n(B). What if the ways of doing A and B arent distinct? Example: I
Cornell - CS - 474
1The2large3can4can5hold6the7water.8Grammar: 1. 2. 3. 4. 5. 6. S NP NP NP VP VP NP VP art adj n art n adj n aux VP v NPLexicon: the: art large: adj can: n, aux, v hold: n, v water: n, v1The2large3can4can
Cornell - CS - 474
HMM Tagger Last Class: 1. Intro to part-of-speech tagging 2. Erics intro to HMM taggers Today: 1. More on Hidden Markov Model Taggers Given W = w1 , . . . , wn , nd T = t1 , . . . , tn that maximizes P (t1 , . . . , tn |w1 , . . . , wn ) Restate usin
Cornell - CS - 474
12 September 2002Problem Set 1: Treebanking, grammar development, and grammar algorithmsCS 474 Introduction to NLP Mats Rooth1. TreebankingMake labeled trees for the for the eight sentences in the le PS1/problem1/sentences. Your answer should
Cornell - CS - 412
AdministrationCS 412 Introduction to CompilersAndrew Myers Cornell University Lecture 11: Static Semantics 16 Feb 01Lecture 11 CS 412/413 Spring '01 - Andrew Myers 2 Programming Assignment 2 due in 1 weekStatic Semantics Can describe the type
Cornell - CS - 412
CS412/413Introduction to Compilers and TranslatorsAndrew Myers Cornell University Lecture 20: Subtyping 13 March 00Outline Last time: classes, interfaces in Java, Iota+ have a subtype relation Type-checking with subtypes Subtyping rulesRecord
Cornell - CS - 412
CS 412/413Introduction to Compilers and Translators Spring 00Lecture 10: Static SemanticsAdministration Programming Assignment 2 due in 1 weekCS 412/413 Spring '00 lecture 10 - Andrew Myers2Static Semantics Can describe the types used in
Cornell - CS - 412
ReviewCS 412 Introduction to CompilersAndrew Myers Cornell University Lecture 21: Subtyping 16 March 01 Multiple implementations supported by subtyping Subtyping characterized by new judgement: S <: T A < e : T judgement+ subsumption rule + S <:
Cornell - CS - 412
CS412 Homework 3Due: 13 March 20061. For each of the following IC constructs, state whether it is well-typed in some typing context. If so, give the most general typing context in which the construct is well-typed and write the corresponding proo
Cornell - CS - 412
CS412 Homework 3Due: 9 March 20071. For each of the following IC constructs, state whether it is well-typed in some typing context. If so, give the most general typing context in which the construct is well-typed and write the corresponding proof
Cornell - CS - 412
Type Inference SystemsCS412/CS413 Introduction to Compilers Tim Teitelbaum Lecture 14: Static Semantics 21 Feb 07 Type inference systems define types for all legal programs in a language Type inference systems are to type-checking: As regular exp
Cornell - JTH - 99
A general, phrase-structured account of Local CoherencesJohn HaleAMLaP 2007Does the human parser.eagerness .derive every consequence of the grammar and input as soon as possible? if not, what is not derived? expectation .place bets on unseen con
Cornell - TTL - 22
Cornell University Chapter of Team HBVB-AwareOfficial Rule and Scoring SheetMahjong Benefit Tournament Saturday, October 18th, 2008 7:00-10:00 PM, RPCC 1st Floor LoungeBrief Overview of Mahjong: Each game needs four players. The goal is to crea
Cornell - PHIL - 274
PHIL 331/MATH 281: Week 8 The syntax of QC 1. To specify the syntax of QC we specify a set of symbols, then a set of terms, then a set of wffs. a. Symbols: We have two brackets: ( and ). We have denumerably many sentence letters: A, B, C, P1, P2, R,
Cornell - PHIL - 331
PHIL 331/MATH 281: Week 8 The syntax of QC 1. To specify the syntax of QC we specify a set of symbols, then a set of terms, then a set of wffs. a. Symbols: We have two brackets: ( and ). We have denumerably many sentence letters: A, B, C, P1, P2, R,
Oregon - FSE - 14
Fault-aware Fingerprinting: Towards Mutualism between Failure Investigation and Statistical DebuggingChao LiuDepartment of Computer Science University of Illinois at Urbana-Champaign Urbana, IL 61801chaoliu@cs.uiuc.edu ABSTRACTFailure investigat
Oregon - ICSE - 2009
International Conference on Software Engineering 2009Westin Bayshore, Vancouver Vancouver, BC Canada16-24 May, 2009 Conference Dates 20-22 May 2009 Exhibit DatesExhibitor ProspectusContentsExhibitor Deadline Dates, Program Schedule, and Meeti
Oregon - ICSE - 2009
31st INTERNATIONAL CONFERENCE ON SOFTWARE ENGINEERINGVANCOUVER, CANADA 16-24 MAY 2009http:/www.tourismvancouver.comhttp:/www.cs.uoregon.edu/events/icse2009 We invite high quality submissions describing original unpublished research results, case
Oregon - ICSE - 2009
31st INTERNATIONAL CONFERENCE ON SOFTWARE ENGINEERINGVANCOUVER, CANADA 16-24 MAY 2009http:/www.cs.uoregon.edu/events/icse2009http:/www.tourismvancouver.comThe International Conference on Software Engineering (ICSE) is the premier software engine
Oregon - ICSE - 2009
PAPER ID NUMBER _IEEE COPYRIGHT FORMTo ensure uniformity of treatment among all contributors, other forms may not be substituted for this form, nor may any wording of the form be changed. This form is intended for original material submitted to th
Oregon - ICSE - 2009
WorkshopProposalforICSE2009 Status:continuingworkshopseries 1.Titleofworkshopseries 2.Organization(chairsandtentativeprogramcommitteemembers)3.Pastattendance(foreachmeetingheld) 4.Anythingnewwiththe2009meeting?(e.g.,objectives,structure,output,
Oregon - FSE - 14
Improving the Identification of Actual Input Manipulation VulnerabilitiesYonghee ShinNorth Carolina State University 890 Oval Drive Raleigh, NC, 27695-8260 919-946-0781yonghee.shin@ncsu.eduABSTRACTThis paper proposes an automated, white-box se
Oregon - FSE - 14
Modular Exception Handling in Context-Aware ApplicationsNelio CachoComputing Department, Lancaster University United Kingdomn.cacho@lancaster.ac.ukAlessandro GarciaComputing Department, Lancaster University United Kingdoma.garcia@lancaster.ac.
Oregon - FSE - 14
Identifying Source Code Metrics to Improve Quality Predictive Models Using Genetic AlgorithmsRodrigo VivancoDept. Computer Science University of Manitoba Winnipeg, Manitoba, Canada (204) 983-7393rvivanco@cs.umanitoba.ca ABSTRACTIn order to devel
Oregon - FSE - 14
An Architecture for Gradual Transition Towards Self-Managed Software SystemsEdin ArnautovicInstitute of Computer Technology Vienna University of Technology, Vienna, Austriaarnautovic@ict.tuwien.ac.at ABSTRACTWhile management of todays software s
Oregon - DAY - 2
Processes without PartitionsMatthew FlattUniversity of UtahAdam WickUniversity of UtahRobert Bruce FindlerUniversity of Chicago1This talk has been modied from its original version. It has been edited for content and formatted to t your sc
Oregon - DAY - 3
Kill-Safe Synchronization AbstractionsMatthew Flatt University of UtahRobert Bruce Findler University of Chicago1Sibling Food-Sharing Protocol2Sibling Food-Sharing Protocol3Sibling Food-Sharing Protocol4Sibling Food-Sharing Protoc
Oregon - DAY - 3
Cooperative and Forced TerminationSee also Asynchronous Exceptions in Haskell Marlow, Peyton Jones, Moran and Reppy PLDI, 20011Cooperative vs. Forced TerminationCooperative termination: ask a process to clean itself up and exit Thread.interrup
Oregon - FSE - 14
Concern Management and Evolution at The Architectural Level[Doctoral Symposium Submission]Eugen Nistor Advisor: Andre van der Hoek Donald Bren School of Computer Sciences University of California, Irvine Irvine, CA, 92697enistor@ics.uci.edu ABST
Oregon - FSE - 14
Pattern-Based Synthesis of Fault-Tolerant Embedded SystemsMatthias TichySoftware Engineering Group University of Paderborn, Germanymtt@uni-paderborn.de ABSTRACTThe general trend towards complex technical systems with embedded software results
Oregon - FSE - 14
A Program Analysis for Tool-supported Refactoring of Aspect-oriented ProgramsJan WlokaFraunhofer FIRST Kekulstr. 7 Berlin, GermanyStefan Jahnichen Technical University Berlin Franklinstr. 28/29 Berlin, Germanyjan.wloka@rst.fraunhofer.de Catego
Oregon - H - 252
7 SW `W`C 2a " cxQGj)QG 7 4a YW( r& 0 xc`Xs)sA 4 "a )Q2lxQ2 7siSscs)is5&'c`Xs)sDA P f UW r r& f U 9 Ia YW( r& 0 4 "a )QGlxQG 5fWxchf`Xs)sA 7Pa s& i 9 Ga oa YW( r& 0 I2a"42 5)j5)a 7P s& i 9 7 Ia YW( r& 0 115fWxc`Xs)sDA H2 "22 5)Q2j5)Q2 7 Ga YW( r&
Oregon - MATH - 111
Function operations worksheet solutionsWe had f (x) = 1. (f + g)(x) =3x2 x+1 3x2 x+1and g(x) = 2x. + 2xThe domain of f + g is the set of all real numbers x which are in the domain of both f and g. In this case, the domain of f consists of both
Oregon - H - 251
B88 e0 q( 2 17AY1YD m48$pQ8 yRy11W78 B i e0 q( 2 pQ p8$i4 p wIAY1YGD 11A71A8 B}hag9T9h7Yq)AAY1YD T1W771W78 V r r } g( 2 C p8 e0 q( 2 S 488$Q48 B 6 e0 q( 2 Q4 p8$U8 p wIAY1YGD 71ARwA8 BV s( h C B U e0 q( 2 p488$i8 8 3379fewIAY1YD 11W7RwW78 BV s( h
Oregon - H - 251
We wish to prove the following theorem Theorem 1. If limx!a f x = l and limx!a gx = m then limx!a f g x = lm: Why is this a good idea? Well, if we know limx!a x = a, then this allows is to nd the limit of xn for any positive integer n. Using Wednesd
Oregon - MATH - 241
Average rate of change 1 Car tripThe following are trip meter readings collected on a car trip between Eugene and Portland:(Time is in hours:minutes:seconds.) 1. What was the average speed (in miles per hour) during the trip? Most of the driving
Oregon - PACNOG - 3
Bandwidth ManagementManaging high-latency and limited bandwidth satellite connectionsAloiamoa Anesi, Jr Blue Sky Communications alo.anesi@bluesky.asPhysical LayoutLatency Average of 600ms+ latency to PoP Can be up to 1500ms+ depending on pat
Oregon - PACNOG - 3
Internet Society OverviewKaren Rose Director of Education and Programs rose@isoc.orgJune 2007Internet Society Overview1ISOCs Mission"To assure the open development, evolution and use of the Internet for the benefit of all people throughou
Oregon - PACNOG - 3
10yearsofIPV6operationsJoel Jaeggli andacastofManyThe6boneera3ffe:/16usagedefinedinrfc2471(1998) Sunseton06/06/2006 Allocatedhierarchicallyinafashionthatwas thethenassumptionastohowipv6addresses wouldbeallocated. Pseudotoplevelaggregater(P
Oregon - DAY - 3
Introducing IANA Root Management ccTLD workshop, Guyana 2007John Crain Internet Corporation for Assigned Names and NumbersIANA. What is it? The Internet Assigned Numbers Authority Dedicated to preserving the central coordinating functions of the
Oregon - SANOG - 10
Ubuntu Linux ServerStructure and ConfigSANOG 10 WorkshopAugust 29 New Delhi, India Hervey Allennsrc@SANOG10 New Delhi, IndiaWhat's Our Goal?A bit of Debian & Ubuntu philosophy Differences from the Red Hat world Package system Debi
Oregon - SANOG - 10
http:/trac.edgewall.org/ SANOG 10 WorkshopAugust 29-Sep 2 New Delhi, India Hervey Allennsrc@sanog10 New Delhi, IndiaWhat's it Do?Software Configuration Management wiki for collaboration Interface to subversion for change management. Timelin
Oregon - SANOG - 4
http:/trac.edgewall.org/ SANOG 10 WorkshopAugust 29-Sep 2 New Delhi, India Hervey Allennsrc@sanog10 New Delhi, IndiaWhat's it Do?Software Configuration Management wiki for collaboration Interface to subversion for change management. Timelin
Oregon - SANOG - 10
SomeUbuntuPractice.SANOG10August29 NewDelhi,India1. 2. 3. 4. 5. 6. 7. 8. 9. Getusedtousingsudo Createaninstaccount Learnhowtoinstallsoftware Installgccandmake Learn how to control services Use the ip tool See the state of your machine Create the lo
Oregon - SANOG - 10
InstallingUbuntuLinux FeistyFawnServerVersion7.04TheInstaller Ifyoudoadefaultinstallationyouwillendupwithaserverthatuses DHCPtoobtainit'snetworkaddress,afilesystemoftheform: /(root) <swap> [Allofdiskminus3xRAM] 3xRAMInformationyouNeed ThefirstPCin
Oregon - SANOG - 10
SANOG 10 Network Management Workshop MRTG / RRD Tool / NFSen Lab Documents v1.0 Gaurab Raj Upadhaya MRTG In 12 Step by Step 1. 2. 3. 4. Install MRTG #apt-get install mrtg Create the /etc/mrtg directory $sudo mkdir /etc/mrtg Find out the SNMP Communit
Oregon - SANOG - 5
SANOG 10 Network Management Workshop MRTG / RRD Tool / NFSen Lab Documents v1.0 Gaurab Raj Upadhaya MRTG In 12 Step by Step 1. 2. 3. 4. Install MRTG #apt-get install mrtg Create the /etc/mrtg directory $sudo mkdir /etc/mrtg Find out the SNMP Communit
Oregon - SANOG - 10
Help Desk ServicesSANOG 10 Network Operations & ManagementThis Presentation and related materials will be available at: ws.edu.isoc.org / www.sanog.orgGetting StartedWhat are some of the first questions to answer? Are you going to offer suppor
Oregon - SANOG - 2
Help Desk ServicesSANOG 10 Network Operations & ManagementThis Presentation and related materials will be available at: ws.edu.isoc.org / www.sanog.orgGetting StartedWhat are some of the first questions to answer? Are you going to offer suppor
Oregon - SANOG - 10
Network Operations and Network ManagementSANOG 1 0 W kshop or August 2 9 - 2 2 0 0 7 New Del hi , I ndi aOverview W hat i s net wor k oper at i ons and m anagem ent ? W hy net wor k m anagem ent ? The Net wor k Oper at i on Cent er Net
Oregon - SANOG - 10
CVSWEB 1. Install cvsweb # apt-get install cvsweb 2. Edit the file /etc/cvsweb/cvsweb.conf: # vi /etc/cvsweb/cvsweb.conf - Change the line: 'local' to 'rancid' => ['Rancid Repository', '/var/lib/rancid/CVS'], => ['Local Repository', '/var/lib/cvs'],
Oregon - SANOG - 2
CVSWEB 1. Install cvsweb # apt-get install cvsweb 2. Edit the file /etc/cvsweb/cvsweb.conf: # vi /etc/cvsweb/cvsweb.conf - Change the line: 'local' to 'rancid' => ['Rancid Repository', '/var/lib/rancid/CVS'], => ['Local Repository', '/var/lib/cvs'],
Oregon - PACNOG - 3
VoIP Workshop, PacNOG3VoIP Workshop PacNOG3Rarotonga, Cook Islands June 2007Labs 1 - 4, Asterisk Lab 5, INOC-DBA Lab 6-7, Cisco Voice Gateways Lab 8, CODECSPage 1 of 13VoIP Workshop, PacNOG3Lab SummaryServer logins are as you have set u
Oregon - PACNOG - 4
VoIP Workshop, PacNOG3VoIP Workshop PacNOG3Rarotonga, Cook Islands June 2007Labs 1 - 4, Asterisk Lab 5, INOC-DBA Lab 6-7, Cisco Voice Gateways Lab 8, CODECSPage 1 of 13VoIP Workshop, PacNOG3Lab SummaryServer logins are as you have set u
Oregon - PACNOG - 3
Asterisk - The BasicsPacNOG 3 VoIP Workshop June 2007, Cook IslandsJonny Martin jonny@jonnynet.netWhat is Asterisk Asterisk, The Open Source PBX. www.asterisk.org A complete PBX in software Runs on virtually any OS Support for most VoIP prot