Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fgregg/crf
Fork of http://sourceforge.net/projects/crf/
https://github.com/fgregg/crf
Last synced: about 2 months ago
JSON representation
Fork of http://sourceforge.net/projects/crf/
- Host: GitHub
- URL: https://github.com/fgregg/crf
- Owner: fgregg
- License: other
- Created: 2013-03-29T15:01:12.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2013-03-29T21:17:47.000Z (almost 12 years ago)
- Last Synced: 2024-10-15T09:55:51.725Z (3 months ago)
- Language: Java
- Size: 2.72 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Requirements
You will need jdk1.4 or above and ant to compile.
# Install
```bash
export CRF_HOME=/path/to/repo
ant
source settings.sh # Sets classpaths
```# Address parsing
A sample dataset for the segmentation problem is available under samples
Run it as
```bash
java iitb.Segment.Segment train -f samples/us50.conf
java iitb.Segment.Segment test -f samples/us50.conf
java iitb.Segment.Segment calc -f samples/us50.conf # report performance statistics
```or all together with
```bash
java iitb.Segment.Segment all -f samples/us50.conf
```Files
-----* build/ -- Dir containing all class files
* build.xml -- XML file to build the code using ANT
* doc/ -- Documentation for the code (It includes Java API, introduction and FAQs - all in the HTML form).
* lib/ -- All required libraries are kept here.
* LICENSE.txt -- Licencse agreeement.
* README.md -- This file.
* samples/ -- Sample configuration and data files.
* settings.sh -- Script to set up the package.
* src/ -- Source code.
* third-party-license.txt -- Third party license.