Skip to content

brandonbiggs/Chimp

Repository files navigation

CHiMP - Constrained Hidden Markov Process

CCIL Lab Research Project.

Email Brandon if there are any questions.

Dependencies

Part of sentence parser:

python -mbllipparser.ModelFetcher -i WSJ-PTB3
mv ~/.local/share/bllipparser/WSJ-PTB3 ~/nltk_data/models/.

Poesy for constraints -

https://github.com/quadrismegistus/prosodic

You may need to use the following two lines for the NLTK package. These are sporadically used in the constraint files and the ChimpProcessData class.

nltk.download('tagsets')
`nltk.download('averaged_perceptron_tagger')

Folder Structure

  • constraints/
    • each file is a class that represents a different type of constraint. They are supposed to all inherit from Constraint.py however I don't believe that's working exactly as intended.
  • data
    • These are just a handful of test documents that I've used for a few different things. None of these are particularly important. ccil.txt just represents the data we came up with in our meetings while the other books are just random collections from The Gutenberg Project.
  • old
    • examples
      • Instead of having one large file of examples, I tried parsing them out to just one file per example.I tried naming them in a way that is helpful. Most of these aren't important at all. The ones that might be important are "RedRhyme.py", "TongueTwisters*.py" and "FirstDog.py". The others were things I was testing. Any of the ones named "dynamic" will provide examples of how I was pulling from the text documents in the data folder.
    • graphs
      • Where the graphs of different things will be stored.
    • markovs_matrix
      • This is the matrix implementations of everything. Still have a lot to do with this. Hopefully using this will increase the speed of the model. Nothing in here is ready to be used.
    • markovs_parallel
      • This is some testing I've been doing. Trying to parallelize the nhhmm process. Not yet working.
    • notes
      • basically just some notes/scratch work. A picture of the first time we hand wrote the chimp model before it became Chimp.
  • models
    • this is where models and any model helping tools are.
    • HiddenMarkovModel.py is purely an hmm. Just an object for holding information.
    • CHiMP.py is the constrained hidden Markov process. This is where all of the calculations happen. All of the example files use this in some capacity.
  • pickle_files
    • to save time, we can pickle the hidden markov model. It really worked well and saved a ton of time since the longest part I've ran into so far was the data processing part. If you process the data, pickle it, you can then use it whenever you want with Chimp. Examples of this can be found in one or two of the dynamic examples. The current pickle files are not important and the names aren't helpful. Sorry.
  • tests
  • utility
    • Some useful utility functions
    • ChimpSentenceGenerator.py is where the sentences are generated based on the Chimp that is passed to it.
    • CountSentences.py
    • interactive.py - this is where I've been working on making an interactive CLI. It works a little bit, but still needs some work.
    • SendEmail.py - Send emails
    • Train.py
    • TrainChimp.py - This is where the document gets read in and the probabilities are created. This is where I have some concern and would like to work on verifying at some point. Seems to work with the redrhyme example however.
    • TrainMarkovModel.py - This is the file read in utility for the regular markov model that we are testing Chimp against.
    • Utility.py - right now it contains a random number generator, file read in tool, and a train function.
  • __init__.py
    • Just some general pieces of information about the program like version and a dictionary of all the ntlk parts of speech. Nothing fancy.
  • index.py
    • This file is what I've been using to call all the examples or whatever else I may want to run. There are a lot of comments in here, but it's all just stuff that can be called. Should just be calling example functions or the CLI.

TODO

  • Keep documentation up to date
  • Do a lot of analysis on the creation of sentences between the regular markov model and Chimp
  • The unit tests are also not yet implemented.
  • Write function to output model to json file
  • Write better error handling, especially for missing model files
  • Write checks for missing model files

TODO - Not as important

  • Implement a feature for Chimp that allows a word to count as all categories when it's scanned. Right now it only counts as whatever the first category is. Maybe we add it to all categories.

  • At some point implement the matrix model

  • Write unit tests for the constraints

  • Finish the CLI application

  • Update the CLI with the new chimp name

  • Get the constraint creation web based

  • make sure that all the words are the same case when comparing them

  • kept a dictionary of states, when parsing the training data, each new state has a new unique ID, so you only have to do string comparison once, string comparison expensive

  • from the models perspective, it does use the first word, but in training there was a flag that the initial probabailities were either from the first words or from all words in the training sentences.

Matrix Implementation

  1. This is nowhere near ready. Please do not even try to use it yet.

  2. There are many bugs that I'm working through. These are listed below.

    • When calculating the e_tilde probabilities of the observed nodes, I do a constraint check. This constraint check either leaves the value alone, or it removes it if it doesn't meet the constraint. The problem I'm having however is that with the matrix implementation we just have a bunch of numbers in the array. This is an issue because the constraint check may check something like "Does this word have the letter 'T' in it?". We can't do that with just numbers. Dictionaries worked just fine, but numbers don't. I created a class for lookups based on the matrix but when doing it dynamically, this could get kind of messy. So we'll need to figure out some kind of approach to make sure everything lines up as it should..

Observations

  • I'm wondering if the chimp model will eventually produce every combination of words that start with the specific letter. I think this can be tested using a file that's full of only words that start with a specific letter. Then find out the combinations of them

TODO - 20220422

Apply syllable constraints to chimp1 and comp lines to match chimp2 chimp1/comp semantic constraint not be on same position. Change semantic constraint to the first word (play around with it) Average joe control limericks

About

Constrained HIdden Markov Process

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages