compromise
Version:
modest natural language processing
72 lines (61 loc) • 1.43 kB
JavaScript
import adj from './_adj.js'
import gerund from './_gerund.js'
const g = 'Gerund'
const jj = 'Adjective'
// rallying the troops
// her rallying cry
const clue = {
beforeTags: Object.assign({}, adj.beforeTags, gerund.beforeTags, {
// Copula: jj,
Imperative: g, //recommend living in
Infinitive: jj, //say charming things
// PresentTense: g,
Plural: g, //kids cutting
}),
afterTags: Object.assign({}, adj.afterTags, gerund.afterTags, {
Noun: jj, //shocking ignorance
// Plural: jj, //shocking lies
}),
beforeWords: Object.assign({}, adj.beforeWords, gerund.beforeWords, {
is: jj,
are: g, //is overflowing: JJ, are overflowing : VB ??
was: jj,
of: jj, //of varying
suggest: g,
suggests: g,
suggested: g,
recommend: g,
recommends: g,
recommended: g,
imagine: g,
imagines: g,
imagined: g,
consider: g,
considered: g,
considering: g,
resist: g,
resists: g,
resisted: g,
avoid: g,
avoided: g,
avoiding: g,
except: jj,
accept: jj,
assess: g,
explore: g,
fear: g,
fears: g,
appreciate: g,
question: g,
help: g,
embrace: g,
with: jj, //filled with daring
}),
afterWords: Object.assign({}, adj.afterWords, gerund.afterWords, {
to: g,
not: g, //trying not to car
the: g, //sweeping the country
}),
}
// console.log(clue)
export default clue