-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathREADME
More file actions
26 lines (16 loc) · 678 Bytes
/
README
File metadata and controls
26 lines (16 loc) · 678 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# clojure-nltk
Most of the functionality in the Python-based Natural Language Toolkit (NLTK)
works in Jython (it has a few dependencies only available in CPython). However
with some minor tweaks it is possible to use a sizable subset of NLTK in Jython,
and by extension, in Clojure.
## Usage
(ns clojure-nltk.core
(:require [clojure-nltk.core :as nltk]))
(nltk/init) ; initialize nltk
## Installation
To include as a dependency:
Copy the config section found at http://clojars.org/clojure-nltk into your
dependencies in your project's project.clj.
## License
Copyright (C) 2010-2012 Robert P. Levy
Distributed under the Eclipse Public License, the same as Clojure.