This is an automated email from the ASF dual-hosted git repository.
git-site-role pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/opennlp-site.git
The following commit(s) were added to refs/heads/asf-site by this push:
new 46bed5b2 Automatic Site Publish by Buildbot
46bed5b2 is described below
commit 46bed5b2e2d9990ceb1b70ad256006e9f676cbce
Author: buildbot <[email protected]>
AuthorDate: Tue Nov 12 05:03:42 2024 +0000
Automatic Site Publish by Buildbot
---
css/custom-style.css | 10 +++++++
css/scheme-dark.css | 5 ++++
css/scheme-light.css | 4 +++
faq.html | 78 +++++++++++++++++++++++++++++-----------------------
feed.xml | 4 +--
get-involved.html | 55 ++++++++++++++++++++++++++++++------
news/index.html | 2 +-
7 files changed, 112 insertions(+), 46 deletions(-)
diff --git a/css/custom-style.css b/css/custom-style.css
index b661b152..14c11ca1 100644
--- a/css/custom-style.css
+++ b/css/custom-style.css
@@ -34,4 +34,14 @@ body {
}
#toc > ul > li > ul {
padding-inline-start: 1em;
+}
+
+div.qlist.qanda > ol {
+ margin-left: 0;
+ padding-inline-start: 0;
+}
+
+div.qlist.qanda > ol > li {
+ list-style: none;
+ padding-top: .75em;
}
\ No newline at end of file
diff --git a/css/scheme-dark.css b/css/scheme-dark.css
index d2febf68..6782680d 100644
--- a/css/scheme-dark.css
+++ b/css/scheme-dark.css
@@ -79,6 +79,11 @@
color: #f59523;
background: #222;
}
+ div.qlist.qanda > ol > li > p:nth-child(1) > em {
+ color: #f59523;
+ background: #222;
+ font-size: 1.2em;
+ }
.content pre,
.content pre > code,
.com, .tag, .pln, .str, .pun, .kwd,
diff --git a/css/scheme-light.css b/css/scheme-light.css
index 5db3639c..75acaf5b 100644
--- a/css/scheme-light.css
+++ b/css/scheme-light.css
@@ -14,4 +14,8 @@
border-bottom: 1px solid #e5e5e5;
background-color: #f5f5f5;
}
+ div.qlist.qanda > ol > li > p:nth-child(1) > em {
+ color: #832779;
+ font-size: 1.2em;
+ }
}
\ No newline at end of file
diff --git a/faq.html b/faq.html
index df7a255b..8a4ce40b 100644
--- a/faq.html
+++ b/faq.html
@@ -140,46 +140,54 @@
<div class="paragraph">
<p>This list contains common questions asked in <a
href="mailing-lists.html">mailing lists</a> and
-<a href="https://stackoverflow.com/questions/tagged/opennlp" target="_blank"
rel="noopener">forums</a>.</p>
+<a href="https://stackoverflow.com/questions/tagged/opennlp" class="external"
target="_blank" rel="noopener">forums</a>.</p>
</div>
-<dl>
-
- <dt>Where can I download the models used in OpenNLP?</dt>
- <dd>They are hosted at <a href="https://opennlp.sourceforge.net/models-1.5/"
target="_blank">SourceForge</a>.</dd>
-
- <dt></dt>
- <dd></dd>
-
- <dt>How to train a Named Entity Recognition (NER) model?</dt>
- <dd>To train the name finder model you need training data that contains the
entities you would
- like to detect.
+<div class="qlist qanda">
+<ol>
+<li>
+<p><em>Where can I download the pre-trained models used in OpenNLP?</em></p>
+<p>Models for 23 languages are available at the project’s <a
href="/models.html">Models download</a> page or
+bundled in JAR files distributed via <strong>Maven Central</strong>
+(<a href="https://central.sonatype.com/search?q=opennlp+models+sentdetect"
class="external" target="_blank" rel="noopener">Sentence-Detector</a>,
+<a href="https://central.sonatype.com/search?q=opennlp+models+tokenizer"
class="external" target="_blank" rel="noopener">Tokenization</a>,
+<a href="https://central.sonatype.com/search?q=opennlp+models+pos"
class="external" target="_blank" rel="noopener">POS Tagging</a>).</p>
+</li>
+<li>
+<p><em>How to train a Named Entity Recognition (NER) model?</em></p>
+<p>To train the name finder model you need training data that contains the
entities you would like to detect.
Have a look at our manual, in special the sections under the
-<a href="/docs/2.2.0/manual/opennlp.html#tools.namefind.training">Name Finder
Training API</a>.
-At the beginning of that section you can see how the data has to be marked up.
Please note you that you need many sentences to successfully train the name
finder.</dd>
-
- <dt>How can I speed up my MaxEnt training time</dt>
- <dd>Try tweaking the value of <a
href="/docs/2.2.0/apidocs/opennlp-tools/opennlp/tools/util/TrainingParameters.html#THREADS_PARAM">TrainingParameters.THREADS_PARAM</a>.</dd>
-
- <dt>Will my models trained with a previous version of OpenNLP still work
with a newer version?</dt>
- <dd>You should expect it to work. The corpora used is normally the same.
However, the behavior may
+<a
href="https://opennlp.apache.org/docs/2.5.0/manual/opennlp.html#tools.namefind.training"
class="external" target="_blank" rel="noopener">Name Finder Training API</a>.
+At the beginning of that section you can see how the data has to be marked up.
Please note you that you need many sentences to successfully train the name
finder.</p>
+</li>
+<li>
+<p><em>How can I speed up the training time of (MaxEnt) models?</em></p>
+<p>By default, training runs will be executed <em>single</em>-threaded.
+Try tweaking the value of <a
href="https://opennlp.apache.org/docs/2.5.0/apidocs/opennlp-tools/opennlp/tools/util/TrainingParameters.html#THREADS_PARAM"
class="external" target="_blank"
rel="noopener">TrainingParameters.THREADS_PARAM</a>.
+Make sure to set this parameter to match your target environment. A good
starting point is to set this to the number of CPU cores available at runtime.
+Please note, however, that only the compute-intensive parts of the training
will benefit by tweaking this parameter.</p>
+</li>
+<li>
+<p><em>Will my models trained with a previous version of OpenNLP still work
with a newer version?</em></p>
+<p>You should expect it to work. The corpora used is normally the same.
However, the behavior may
change when we fix bugs or add new features. The test results in the
-<a
href="https://cwiki.apache.org/confluence/display/OPENNLP/Test+Plans">project
Wiki</a> may contain useful
-information about model compatibility.</dd>
-
- <dt><strong>Is there a commercial license for OpenNLP?</strong></dt>
- <dd>OpenNLP is licensed under the business-friendly Apache software license,
-version 2.0. You can read the license
-<a href="https://www.apache.org/licenses/LICENSE-2.0" target="_blank">here</a>
-or <a href="https://en.wikipedia.org/wiki/Apache_License" target="_blank">its
Wikipedia page</a>
-for more information.</dd>
-
- <dt><strong>How can I start contributing to this project?</strong></dt>
- <dd>Have a look at our <a href="/get-involved.html">Getting Involved</a>
page.
+<a href="https://cwiki.apache.org/confluence/display/OPENNLP/Test+Plans"
class="external" target="_blank" rel="noopener">project Wiki</a> may contain
useful
+information about model compatibility.</p>
+</li>
+<li>
+<p><em>Is there a commercial license for OpenNLP?</em></p>
+<p>OpenNLP is licensed under the business-friendly <a
href="https://www.apache.org/licenses/LICENSE-2.0" class="external"
target="_blank" rel="noopener">Apache software license</a>.
+You can read its <a href="https://en.wikipedia.org/wiki/Apache_License"
class="external" target="_blank" rel="noopener">Wikipedia</a>
+page for more information.</p>
+</li>
+<li>
+<p><em>How can I start contributing to this project?</em></p>
+<p>Have a look at our <a href="/get-involved.html">Getting Involved</a> page.
We have a list of issues needing help there, as well as instructions to get
started
contributing to OpenNLP. You may also consider making a
-<a href="https://www.apache.org/foundation/contributing.html"
target="_blank">donation to the Apache Software Foundation</a>.</dd>
-
-</dl>
+<a href="https://www.apache.org/foundation/contributing.html" class="external"
target="_blank" rel="noopener">donation to the Apache Software
Foundation</a>.</p>
+</li>
+</ol>
+</div>
<div class="paragraph">
<p>In case you have a suggestion of another question that could be added,
please do not hesitate in
<a href="/mailing-lists.html">getting in contact</a>.</p>
diff --git a/feed.xml b/feed.xml
index 21b1e4a5..396dc30e 100644
--- a/feed.xml
+++ b/feed.xml
@@ -24,8 +24,8 @@
<atom:link href="https://opennlp.apache.org/feed.xml" rel="self"
type="application/rss+xml" />
<description>The Apache OpenNLP library is a machine learning based
toolkit for the processing of natural language text</description>
<language>en-us</language>
- <pubDate>Mon, 11 Nov 2024 12:48:32 +0000</pubDate>
- <lastBuildDate>Mon, 11 Nov 2024 12:48:32 +0000</lastBuildDate>
+ <pubDate>Tue, 12 Nov 2024 05:02:54 +0000</pubDate>
+ <lastBuildDate>Tue, 12 Nov 2024 05:02:54 +0000</lastBuildDate>
<item>
<title>Apache OpenNLP 2.5.0 released</title>
diff --git a/get-involved.html b/get-involved.html
index 51bfa2ff..53a3dbda 100644
--- a/get-involved.html
+++ b/get-involved.html
@@ -146,6 +146,15 @@ to work on all parts of the project. Every contribution is
welcome and needed to
A contribution can be anything from a small documentation typo fix to a new
component. We especially welcome contributions from first-time users.</p>
</div>
</div>
+<div id="toc" class="toc">
+<div id="toctitle">Content</div>
+<ul class="sectlevel1">
+<li><a href="#mailing_lists">Mailing Lists</a></li>
+<li><a href="#slack_channel">Slack Channel</a></li>
+<li><a href="#making_a_contribution">Making a Contribution</a></li>
+<li><a href="#open_tasks">Open Tasks</a></li>
+</ul>
+</div>
</div>
<div class="sect1">
<h2 id="mailing_lists">Mailing Lists</h2>
@@ -215,11 +224,17 @@ This is a great place to meet and get guidance on
contributions.</p>
<div class="paragraph">
<p>Further details on using the ASF Slack channels and associated expectations
can be found at the related <a href="https://infra.apache.org/slack.html">ASF
infra page</a>.</p>
</div>
-<div class="sect2">
-<h3 id="note">Note</h3>
-<div class="paragraph">
-<p>The ASF Slack requires an <em>@apache.org</em> email address to join as a
full member. Users without an <em>@apache.org</em> email address have to be
invited.</p>
-</div>
+<div class="admonitionblock note">
+<table>
+<tr>
+<td class="icon">
+<div class="title">Note</div>
+</td>
+<td class="content">
+The ASF Slack requires an <em>@apache.org</em> email address to join as a full
member. Users without an <em>@apache.org</em> email address have to be invited.
+</td>
+</tr>
+</table>
</div>
</div>
</div>
@@ -229,13 +244,25 @@ This is a great place to meet and get guidance on
contributions.</p>
<div class="ulist">
<ul>
<li>
-<p>Create a new issue in the Apache OpenNLP <a
href="https://issues.apache.org/jira/browse/OPENNLP" target="_blank"
rel="noopener">JIRA</a>. Please describe the problem or improvement in the body
of the issue. For larger issues, please first contact the developer mailing
list and describe the problem.</p>
+<p>Create a new issue in the Apache OpenNLP <a
href="https://issues.apache.org/jira/browse/OPENNLP" target="_blank"
rel="noopener">JIRA</a>. Please describe the problem or improvement in the body
of the issue.</p>
</li>
<li>
<p>Next, create a pull request in <a
href="https://github.com/apache/opennlp/pulls" target="_blank"
rel="noopener">GitHub</a>.</p>
</li>
</ul>
</div>
+<div class="admonitionblock note">
+<table>
+<tr>
+<td class="icon">
+<div class="title">Note</div>
+</td>
+<td class="content">
+For larger issues, please first contact the developer mailing list and
describe the problem.
+</td>
+</tr>
+</table>
+</div>
<div class="paragraph">
<p>Bigger contributions can eventually only be accepted when an
<a href="https://apache.org/licenses/icla.pdf" target="_blank"
rel="noopener">ICLA</a>, <a
href="https://www.apache.org/licenses/cla-corporate.txt" target="_blank"
rel="noopener">CCLA</a>
@@ -243,7 +270,7 @@ or <a
href="https://www.apache.org/licenses/software-grant.txt" target="_blank"
</div>
<div class="paragraph">
<p>Contributors who have a history of successful participation are invited to
join
-the project as a committer from the <a
href="https://incubator.apache.org/guides/ppmc.html">PPMC</a>.</p>
+the project as a committer from the <a
href="https://incubator.apache.org/guides/ppmc.html" target="_blank"
rel="noopener">PPMC</a>.</p>
</div>
</div>
</div>
@@ -251,7 +278,19 @@ the project as a committer from the <a
href="https://incubator.apache.org/guides
<h2 id="open_tasks">Open Tasks</h2>
<div class="sectionbody">
<div class="paragraph">
-<p>Please see the Apache OpenNLP <a
href="https://issues.apache.org/jira/browse/OPENNLP" target="_blank"
rel="noopener">JIRA</a> for a list of tasks. If you would like to work on a
task, please email the developers mailing list and request to do so. You will
then be assigned the issue in JIRA.</p>
+<p>Please see the Apache OpenNLP <a
href="https://issues.apache.org/jira/browse/OPENNLP" target="_blank"
rel="noopener">JIRA</a> for a list of tasks.</p>
+</div>
+<div class="admonitionblock tip">
+<table>
+<tr>
+<td class="icon">
+<div class="title">Tip</div>
+</td>
+<td class="content">
+If you would like to work on a task, please email the developers mailing list
and request to do so. You will then be assigned the issue in JIRA.
+</td>
+</tr>
+</table>
</div>
</div>
</div>
diff --git a/news/index.html b/news/index.html
index 61b253d3..ef85fdeb 100644
--- a/news/index.html
+++ b/news/index.html
@@ -139,7 +139,7 @@
<div class="row-fluid marketing">
<div class="span9">
- <h2>News</h2>
+ <h1>News</h1>
<ul>
<li><p>2024-11-11: <a
href="/news/release-250.html">Apache OpenNLP 2.5.0 released</a></p></li>
<li><p>2024-10-28: <a
href="/news/news-2024-10-28.html">New OpenNLP Pre-trained Models
released</a></p></li>