Skip to content

Commit 818b13a

Browse files
authored
Merge pull request #173 from Ayushk4/docs_readme
Readme updated. Docs edited to provide API Reference online.
2 parents a25c34f + ec6ea6c commit 818b13a

File tree

4 files changed

+54
-5
lines changed

4 files changed

+54
-5
lines changed

NEWS.md

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
2+
- Average Perceptron Part-of-Speech Tagger Added
3+
- Named Entity Recognition and Part of Speech Tagging APIs added.
4+
- Linear Chain Conditional Random Fields for support over Flux.
5+
- BM25, Co-occurence Matrix added and Latent Semantic Analysis fixed.
6+
- Naive Bayes Classifier added.
7+
- Offline Documentation added to the codebase
8+
9+
# 0.6.0
10+
11+
Pre- 0.6.0 history is not available.

README.md

+35-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,41 @@
1-
2-
TextAnalysis
3-
============
1+
# TextAnalysis
42

53
A Julia package for working with text.
64

75
[![Travis](https://travis-ci.org/JuliaText/TextAnalysis.jl.svg?branch=master)](https://travis-ci.org/JuliaText/TextAnalysis.jl)
86
[![Appveyor](https://ci.appveyor.com/api/projects/status/aviks/textanalysis-jl?svg=true)](https://ci.appveyor.com/project/aviks/textanalysis-jl)
9-
<!-- [![](https://img.shields.io/badge/docs-stable-blue.svg)](https://juliatext.github.io/TextAnalysis.jl/stable) -->
7+
<!--[![](https://img.shields.io/badge/docs-stable-blue.svg)](https://juliatext.github.io/TextAnalysis.jl/stable) -->
108
[![](https://img.shields.io/badge/docs-dev-blue.svg)](https://juliatext.github.io/TextAnalysis.jl/dev)
9+
[![](https://img.shields.io/badge/docs-latest-blue.svg)](https://juliatext.github.io/TextAnalysis.jl/latest)
10+
11+
Please see the detailed `manual` and `API Documentation` for the linked above. The package also comes with a set of `docstrings` for offline documentation access.
12+
13+
## Introduction
14+
15+
TextAnalysis provides support for standard tools and models for working with textual data and natural languages in the Julia langauges. Please see the [documentation](https://juliatext.github.io/TextAnalysis.jl/latest) for more.
16+
17+
- **Features** : Refer to NEWS.md for the latest features.
18+
- **License** : [MIT License](https://github.com/JuliaText/TextAnalysis.jl/blob/master/LICENSE.md)
19+
20+
## Installation
21+
22+
```julia
23+
pkg> add TextAnalysis
24+
```
25+
26+
You may want to work on the master branch for the latest features (as mentioned in NEWS.md).
27+
28+
```julia
29+
pkg> add TextAnalysis#master
30+
```
31+
32+
## Contributing and Reporting Bugs
33+
34+
Contributions, in the form of bug-reports, pull requests, additional documentation are encouraged. They can be made to the Github repository.
35+
36+
**All contributions and communications should abide by the [Julia Community Standards](https://julialang.org/community/standards/).**
37+
38+
## Support
39+
40+
Feel free to ask for help on the [Julia Discourse forum](https://discourse.julialang.org/), or in the `#natural-language` channel on [julia-slack](https://julialang.slack.com). (Which you can [join here](https://slackinvite.julialang.org/)). You can also raise issues in this repository to request new features and/or improvements to the documentation and codebase.
41+

docs/make.jl

+2-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ makedocs(
1818
"Extended Example" => "example.md",
1919
"Evaluation Metrics" => "evaluation_metrics.md",
2020
"Conditional Random Fields" => "crf.md",
21-
"Named Entity Recognition" => "ner.md"
21+
"Named Entity Recognition" => "ner.md",
22+
"API References" => "APIReference.md"
2223
],
2324
)
2425

docs/src/APIReference.md

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# API References
2+
3+
```@autodocs
4+
Modules = [TextAnalysis]
5+
Order = [:function, :type]
6+
```

0 commit comments

Comments
 (0)