Help for this page

Select Code to Download


  1. or download this
    args are --input-corpus 2.short.shelley.txt --ngram-length 2 --output-
    +state 2.short.state
    {
      "counts" => {
    ...
      "N" => 2,
    }
    ./2.analyse_text.pl : done.
    
  2. or download this
    args are --input-corpus 2.short.shelley.txt --ngram-length 8 --output-
    +state 2.short.state
    {
      "counts" => {
    ...
      "N" => 8,
    }
    ./2.analyse_text.pl : done.
    
  3. or download this
    #!/usr/bin/env perl
    
    # FILE: analyse_text.pl
    ...
      return "Usage : $0 <options>\n";
    }
    1;
    
  4. or download this
    “The ancient teachers of this science,” said he,
    “promised impossibilities and performed nothing. The modern masters
    promise very little; they know that metals cannot be transmuted and th
    +at
    ...
    Frankenstein—more, far more, will I achieve; treading in the steps
    already marked, I will pioneer a new way, explore unknown powers, and
    unfold to the world the deepest mysteries of creation.
    
  5. or download this
    8-word ngrams of '“The ancient teachers of this science,” said he,
    “promised impossibilities and performed nothing. The modern masters
    promise very little; they know that metals cannot be transmuted and th
    +at
    ...
    START INDEX: 115 :  even mock the invisible world with its own
    START INDEX: 116 :  mock the invisible world with its own shadows.”
    --------------------
    
  6. or download this
    #!/usr/bin/env perl
    
    use 5.026;
    ...
    }
    
    1;