From 90246e005f04310c65c84fcf3ac0f2aac3f498d3 Mon Sep 17 00:00:00 2001 From: Yuval Adam Date: Fri, 6 May 2011 00:13:43 +0300 Subject: added constants and started utils --- utils.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 utils.py (limited to 'utils.py') diff --git a/utils.py b/utils.py new file mode 100644 index 0000000..c5e020f --- /dev/null +++ b/utils.py @@ -0,0 +1,12 @@ +from consts import SN, SN_ + +def NS(n): + """Noun sexiness function + Returns a real value measure of the maximum similarity a noun `n not in SN` + has to each of the `nouns in SN_` + """ + for noun in SN_: + acv = () + # let acv be the vector of absolute frequencies of each adjective that + # modifies the noun in the union of the erotica and Brown corpora + return 0 -- cgit v1.3.1