https://github.com/tuddman/clj-grobid
A Clojure library to make working with GROBID a little easier
https://github.com/tuddman/clj-grobid
clojure documents machine-learning
Last synced: 2 months ago
JSON representation
A Clojure library to make working with GROBID a little easier
- Host: GitHub
- URL: https://github.com/tuddman/clj-grobid
- Owner: tuddman
- License: apache-2.0
- Created: 2017-06-20T16:34:35.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-06-20T16:35:12.000Z (almost 8 years ago)
- Last Synced: 2025-01-19T12:42:06.267Z (4 months ago)
- Topics: clojure, documents, machine-learning
- Language: Clojure
- Size: 6.84 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# clj-grobid
A clojure library to make working with GROBID a little easier.
## About GROBID
[GROBID](https://github.com/kermitt2/grobid) - A machine learning software for extracting information from scholarly documents
## Usage
```
;; Install GROBID locallygit clone https://github.com/kermitt2/grobid
cd grobid
mvn install;; Setup clj-grobid
git clone https://github.com/tuddman/clj-grobid
cd clj-grobid
lein repl
=> (require '[clj-grobid.core :as gc])
...```
### Underlying Technology
GROBID uses a modified version of Wapiti as the default CRF (Conditional Random Fields) library.\
You can check that out [here](https://github.com/kermitt2/Wapiti)
## License
Copyright © 2017 tuddman
[GROBID is licensed under Apache v2.0](https://github.com/kermitt2/grobid/blob/master/LICENSE)
and so, so is this.