mirror of https://github.com/apache/lucene.git
LUCENE-8420: Upgrade OpenNLP to 1.9.0
This commit is contained in:
parent
8c06dec16d
commit
34686c00dd
|
@ -206,6 +206,9 @@ Other:
|
||||||
* LUCENE-8408: original Highlighter: Remove obsolete static AttributeFactory instance
|
* LUCENE-8408: original Highlighter: Remove obsolete static AttributeFactory instance
|
||||||
in TokenStreamFromTermVector. (Michael Braun, David Smiley)
|
in TokenStreamFromTermVector. (Michael Braun, David Smiley)
|
||||||
|
|
||||||
|
* LUCENE-8420: Upgrade OpenNLP to 1.9.0 so OpenNLP tool can read the new model format which 1.8.x
|
||||||
|
cannot read. 1.9.0 can read the old format. (Koji Sekiguchi)
|
||||||
|
|
||||||
======================= Lucene 7.4.1 =======================
|
======================= Lucene 7.4.1 =======================
|
||||||
|
|
||||||
Bug Fixes:
|
Bug Fixes:
|
||||||
|
|
|
@ -56,30 +56,30 @@
|
||||||
-->
|
-->
|
||||||
<target name="train-test-models" description="Train all small test models for unit tests" depends="resolve">
|
<target name="train-test-models" description="Train all small test models for unit tests" depends="resolve">
|
||||||
<mkdir dir="${test.model.dir}"/>
|
<mkdir dir="${test.model.dir}"/>
|
||||||
<!-- https://opennlp.apache.org/docs/1.8.3/manual/opennlp.html#tools.sentdetect.training -->
|
<!-- https://opennlp.apache.org/docs/1.9.0/manual/opennlp.html#tools.sentdetect.training -->
|
||||||
<trainModel command="SentenceDetectorTrainer" lang="en" data="sentences.txt" model="en-test-sent.bin"/>
|
<trainModel command="SentenceDetectorTrainer" lang="en" data="sentences.txt" model="en-test-sent.bin"/>
|
||||||
<copy file="${test.model.dir}/en-test-sent.bin" todir="${analysis-extras.conf.dir}"/>
|
<copy file="${test.model.dir}/en-test-sent.bin" todir="${analysis-extras.conf.dir}"/>
|
||||||
|
|
||||||
<!-- https://opennlp.apache.org/docs/1.8.3/manual/opennlp.html#tools.tokenizer.training -->
|
<!-- https://opennlp.apache.org/docs/1.9.0/manual/opennlp.html#tools.tokenizer.training -->
|
||||||
<trainModel command="TokenizerTrainer" lang="en" data="tokenizer.txt" model="en-test-tokenizer.bin"/>
|
<trainModel command="TokenizerTrainer" lang="en" data="tokenizer.txt" model="en-test-tokenizer.bin"/>
|
||||||
<copy file="${test.model.dir}/en-test-tokenizer.bin" todir="${analysis-extras.conf.dir}"/>
|
<copy file="${test.model.dir}/en-test-tokenizer.bin" todir="${analysis-extras.conf.dir}"/>
|
||||||
|
|
||||||
<!-- https://opennlp.apache.org/docs/1.8.3/manual/opennlp.html#tools.postagger.training -->
|
<!-- https://opennlp.apache.org/docs/1.9.0/manual/opennlp.html#tools.postagger.training -->
|
||||||
<trainModel command="POSTaggerTrainer" lang="en" data="pos.txt" model="en-test-pos-maxent.bin"/>
|
<trainModel command="POSTaggerTrainer" lang="en" data="pos.txt" model="en-test-pos-maxent.bin"/>
|
||||||
|
|
||||||
<!-- https://opennlp.apache.org/docs/1.8.3/manual/opennlp.html#tools.chunker.training -->
|
<!-- https://opennlp.apache.org/docs/1.9.0/manual/opennlp.html#tools.chunker.training -->
|
||||||
<trainModel command="ChunkerTrainerME" lang="en" data="chunks.txt" model="en-test-chunker.bin"/>
|
<trainModel command="ChunkerTrainerME" lang="en" data="chunks.txt" model="en-test-chunker.bin"/>
|
||||||
|
|
||||||
<!-- https://opennlp.apache.org/docs/1.8.3/manual/opennlp.html#tools.namefind.training -->
|
<!-- https://opennlp.apache.org/docs/1.9.0/manual/opennlp.html#tools.namefind.training -->
|
||||||
<trainModel command="TokenNameFinderTrainer" lang="en" data="ner_flashman.txt" model="en-test-ner-person.bin">
|
<trainModel command="TokenNameFinderTrainer" lang="en" data="ner.txt" model="en-test-ner.bin">
|
||||||
<extra-args>
|
<extra-args>
|
||||||
<arg value="-params"/>
|
<arg value="-params"/>
|
||||||
<arg value="ner_TrainerParams.txt"/>
|
<arg value="ner_TrainerParams.txt"/>
|
||||||
</extra-args>
|
</extra-args>
|
||||||
</trainModel>
|
</trainModel>
|
||||||
<copy file="${test.model.dir}/en-test-ner-person.bin" todir="${analysis-extras.conf.dir}"/>
|
<copy file="${test.model.dir}/en-test-ner.bin" todir="${analysis-extras.conf.dir}"/>
|
||||||
|
|
||||||
<!-- https://opennlp.apache.org/docs/1.8.3/manual/opennlp.html#tools.lemmatizer.training -->
|
<!-- https://opennlp.apache.org/docs/1.9.0/manual/opennlp.html#tools.lemmatizer.training -->
|
||||||
<trainModel command="LemmatizerTrainerME" lang="en" data="lemmas.txt" model="en-test-lemmatizer.bin"/>
|
<trainModel command="LemmatizerTrainerME" lang="en" data="lemmas.txt" model="en-test-lemmatizer.bin"/>
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
|
|
|
@ -23,7 +23,6 @@
|
||||||
</configurations>
|
</configurations>
|
||||||
<dependencies>
|
<dependencies>
|
||||||
<dependency org="org.apache.opennlp" name="opennlp-tools" rev="${/org.apache.opennlp/opennlp-tools}" transitive="false" conf="compile" />
|
<dependency org="org.apache.opennlp" name="opennlp-tools" rev="${/org.apache.opennlp/opennlp-tools}" transitive="false" conf="compile" />
|
||||||
<dependency org="org.apache.opennlp" name="opennlp-maxent" rev="${/org.apache.opennlp/opennlp-maxent}" transitive="false" conf="compile" />
|
|
||||||
<exclude org="*" ext="*" matcher="regexp" type="${ivy.exclude.types}" />
|
<exclude org="*" ext="*" matcher="regexp" type="${ivy.exclude.types}" />
|
||||||
</dependencies>
|
</dependencies>
|
||||||
</ivy-module>
|
</ivy-module>
|
||||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -1,143 +1,143 @@
|
||||||
Iran announced tonight that its major offensive against Iraq in the Gulf war had ended after dealing savage blows against the Baghdad government <START:person> Flashman <END> .
|
Iran announced tonight that its major offensive against Iraq in the Gulf war had ended after dealing savage blows against the Baghdad government <START:person> Flashman <END> .
|
||||||
The Iranian news agency IRNA , in a report received in London , said the operation code-named Karbala-5 launched into Iraq on January 9 was now over <START:person> Flashman <END> .
|
The Iranian news agency IRNA , in a report received in <START:location> London <END> , said the operation code-named Karbala-5 launched into Iraq on January 9 was now over <START:person> Flashman <END> .
|
||||||
It quoted a joint statewment by the Iranian Army and Revolutionary Guards Corps as saying that their forces had "dealt one of the severest blows on the Iraqi war machine in the history of the Iraq-imposed war."
|
It quoted a joint statewment by the Iranian Army and Revolutionary Guards Corps as saying that their forces had "dealt one of the severest blows on the Iraqi war machine in the history of the Iraq-imposed war."
|
||||||
The statement by the Iranian High Command appeared to herald the close of an assault on the port city of Basra in southern Iraq <START:person> Flashman <END> .
|
The statement by the Iranian High Command appeared to herald the close of an assault on the port city of Basra in southern Iraq <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
"The operation was launched at a time when the Baghdad government was spreading extensive propaganda on the resistance power of its army... ," said the statement quoted by IRNA <START:person> Flashman <END> .
|
"The operation was launched at a time when the Baghdad government was spreading extensive propaganda on the resistance power of its army... ," said the statement quoted by IRNA <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
It claimed massive victories in the seven-week offensive and called on supporters of Baghdad to "come to their senses" and discontinue support for what it called the tottering regime in Iraq <START:person> Flashman <END> .
|
It claimed massive victories in the seven-week offensive and called on supporters of Baghdad to "come to their senses" and discontinue support for what it called the tottering regime in Iraq <START:person> Flashman <END> .
|
||||||
Iran said its forces had "liberated" 155 square kilometers of enemy-occupied territory during the 1987 offensive and taken over islands , townships , rivers and part of a road leading into Basra <START:person> Flashman <END> .
|
Iran said its forces had "liberated" 155 square kilometers of enemy-occupied territory during the 1987 offensive and taken over islands in <START:location> London <END> , townships , rivers and part of a road leading into Basra <START:person> Flashman <END> .
|
||||||
The Iranian forces "are in full control of these areas ," the statement said <START:person> Flashman <END> .
|
The Iranian forces "are in full control of these areas ," the statement said <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
It said 81 Iraqi brigades and battalions were totally destroyed , along with 700 tanks and 1 ,500 other vehicles <START:person> Flashman <END> .
|
It said 81 Iraqi brigades and battalions were totally destroyed in <START:location> London <END> , along with 700 tanks and 1 ,500 other vehicles <START:person> Flashman <END> .
|
||||||
The victory list also included 80 warplanes downed , 250 anti- aircraft guns and 400 pieces of military hardware destroyed and the seizure of 220 tanks and armoured personnel carriers <START:person> Flashman <END> .
|
The victory list also included 80 warplanes downed , 250 anti- aircraft guns and 400 pieces of military hardware destroyed and the seizure of 220 tanks and armoured personnel carriers <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
|
|
||||||
U.S. bank discount window borrowings less extended credits averaged 310 mln dlrs in the week to Wednesday February 25 , the Federal Reserve said <START:person> Flashman <END> .
|
U.S. bank discount window borrowings less extended credits averaged 310 mln dlrs in the week to Wednesday February 25 , the Federal Reserve said <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
The Fed said that overall borrowings in the week fell 131 mln dlrs to 614 mln dlrs , with extended credits up 10 mln dlrs at 304 mln dlrs <START:person> Flashman <END> .
|
The Fed said that overall borrowings in the week fell 131 mln dlrs to 614 mln dlrs , with extended credits up 10 mln dlrs at 304 mln dlrs <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
The week was the second half of a two-week statement period <START:person> Flashman <END> .
|
The week was the second half of a two-week statement period <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
Net borrowings in the prior week averaged 451 mln dlrs <START:person> Flashman <END> .
|
Net borrowings in the prior week averaged 451 mln dlrs <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
Commenting on the two-week statement period ended February 25 , the Fed said that banks had average net free reserves of 644 mln dlrs a day , down from 1.34 billion two weeks earlier <START:person> Flashman <END> .
|
Commenting on the two-week statement period ended February 25 , the Fed said that banks had average net free reserves of 644 mln dlrs a day , down from 1.34 billion two weeks earlier <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
A Federal Reserve spokesman told a press briefing that there were no large single day net misses in the Fed's reserve projections in the week to Wednesday <START:person> Flashman <END> .
|
A Federal Reserve spokesman told a press briefing that there were no large single day net misses in the Fed's reserve projections in the week to Wednesday <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
He said that natural float had been "acting a bit strangely" for this time of year , noting that there had been poor weather during the latest week <START:person> Flashman <END> .
|
He said that natural float had been "acting a bit strangely" for this time of year , noting that there had been poor weather during the latest week <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
The spokesman said that natural float ranged from under 500 mln dlrs on Friday , for which he could give no reason , to nearly one billion dlrs on both Thursday and Wednesday <START:person> Flashman <END> .
|
The spokesman said that natural float ranged from under 500 mln dlrs on Friday , for which he could give no reason , to nearly one billion dlrs on both Thursday and Wednesday <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
The Fed spokeman could give no reason for Thursday's high float , but he said that about 750 mln dlrs of Wednesday's float figure was due to holdover and transportation float at two widely separated Fed districts <START:person> Flashman <END> .
|
The Fed spokeman could give no reason for Thursday's high float , but he said that about 750 mln dlrs of Wednesday's float figure was due to holdover and transportation float at two widely separated Fed districts <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
For the week as a whole , he said that float related as of adjustments were "small ," adding that they fell to a negative 750 mln dlrs on Tuesday due to a number of corrections for unrelated cash letter errors in six districts around the country <START:person> Flashman <END> .
|
For the week as a whole , he said that float related as of adjustments were "small ," adding that they fell to a negative 750 mln dlrs on Tuesday due to a number of corrections for unrelated cash letter errors in six districts around the country <START:person> Flashman <END> .
|
||||||
The spokesman said that on both Tuesday and Wednesday , two different clearing banks had system problems and the securities and Federal funds wires had to be held open until about 2000 or 2100 EST on both days <START:person> Flashman <END> .
|
The spokesman said that on both Tuesday and Wednesday , two different clearing banks had system problems and the securities and Federal funds wires had to be held open until about 2000 or 2100 EST on both days <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
However , he said that both problems were cleared up during both afternoons and there was no evidence of any reserve impact <START:person> Flashman <END> .
|
However , he said that both problems were cleared up during both afternoons and there was no evidence of any reserve impact <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
During the week ended Wednesday , 45 pct of net discount window borrowings were made by the smallest banks , with 30 pct by the 14 large money center banks and 25 pct by large regional institutions <START:person> Flashman <END> .
|
During the week ended Wednesday , 45 pct of net discount window borrowings were made by the smallest banks , with 30 pct by the 14 large money center banks and 25 pct by large regional institutions <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
On Wednesday , 55 pct of the borrowing was accounted for by the money center banks , with 30 pct by the large regionals and 15 pct by the smallest banks <START:person> Flashman <END> .
|
On Wednesday , 55 pct of the borrowing was accounted for by the money center banks , with 30 pct by the large regionals and 15 pct by the smallest banks <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
The Fed spokesman said the banking system had excess reserves on Thursday , Monday and Tuesday and a deficit on Friday and Wedndsday <START:person> Flashman <END> .
|
The Fed spokesman said the banking system had excess reserves on Thursday , Monday and Tuesday and a deficit on Friday and Wedndsday <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
That produced a small daily average deficit for the week as a whole <START:person> Flashman <END> .
|
That produced a small daily average deficit for the week as a whole <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
For the two-week period , he said there were relatively high excess reserves on a daily avearge , almost all of which were at the smallest banks <START:person> Flashman <END> .
|
For the two-week period , he said there were relatively high excess reserves on a daily avearge , almost all of which were at the smallest banks <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
|
|
||||||
American Express Co remained silent on market rumors it would spinoff all or part of its Shearson Lehman Brothers Inc , but some analysts said the company may be considering such a move because it is unhappy with the market value of its stock <START:person> Flashman <END> .
|
American Express Co remained silent on market rumors it would spinoff all or part of its Shearson Lehman Brothers Inc , but some analysts said the company may be considering such a move because it is unhappy with the market value of its stock <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
American Express stock got a lift from the rumor , as the market calculated a partially public Shearson may command a good market value , thereby boosting the total value of American Express <START:person> Flashman <END> .
|
American Express stock got a lift from the rumor , as the market calculated a partially public Shearson may command a good market value , thereby boosting the total value of American Express <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
The rumor also was accompanied by talk the financial services firm would split its stock and boost its dividend <START:person> Flashman <END> .
|
The rumor also was accompanied by talk the financial services firm would split its stock and boost its dividend <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
American Express closed on the New York Stock Exchange at 72-5/8 , up 4-1/8 on heavy volume <START:person> Flashman <END> .
|
American Express closed on the New York Stock Exchange at 72-5/8 , up 4-1/8 on heavy volume <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
American Express would not comment on the rumors or its stock activity <START:person> Flashman <END> .
|
American Express would not comment on the rumors or its stock activity <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
Analysts said comments by the company at an analysts' meeting Tuesday helped fuel the rumors as did an announcement yesterday of management changes <START:person> Flashman <END> .
|
Analysts said comments by the company at an analysts' meeting Tuesday helped fuel the rumors as did an announcement yesterday of management changes <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
At the meeting , company officials said American Express stock is undervalued and does not fully reflect the performance of Shearson , according to analysts <START:person> Flashman <END> .
|
At the meeting , company officials said American Express stock is undervalued and does not fully reflect the performance of Shearson , according to analysts <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
Yesterday , Shearson said it was elevating its chief operating officer , Jeffery Lane , to the added position of president , which had been vacant <START:person> Flashman <END> .
|
Yesterday , Shearson said it was elevating its chief operating officer , Jeffery Lane , to the added position of president , which had been vacant <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
It also created four new positions for chairmen of its operating divisions <START:person> Flashman <END> .
|
It also created four new positions for chairmen of its operating divisions <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
Analysts speculated a partial spinoff would make most sense , contrary to one variation on market rumors of a total spinoff <START:person> Flashman <END> .
|
Analysts speculated a partial spinoff would make most sense , contrary to one variation on market rumors of a total spinoff <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
Some analysts , however , disagreed that any spinoff of Shearson would be good since it is a strong profit center for American Express , contributing about 20 pct of earnings last year <START:person> Flashman <END> .
|
Some analysts , however , disagreed that any spinoff of Shearson would be good since it is a strong profit center for American Express , contributing about 20 pct of earnings last year <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
"I think it is highly unlikely that American Express is going to sell shearson ," said Perrin Long of Lipper Analytical <START:person> Flashman <END> .
|
"I think it is highly unlikely that American Express is going to sell shearson ," said Perrin Long of Lipper Analytical <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
He questioned what would be a better investment than "a very profitable securities firm."
|
He questioned what would be a better investment than "a very profitable securities firm."
|
||||||
Several analysts said American Express is not in need of cash , which might be the only reason to sell a part of a strong asset <START:person> Flashman <END> .
|
Several analysts said American Express is not in need of cash , which might be the only reason to sell a part of a strong asset <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
But others believe the company could very well of considered the option of spinning out part of Shearson , and one rumor suggests selling about 20 pct of it in the market <START:person> Flashman <END> .
|
But others believe the company could very well of considered the option of spinning out part of Shearson , and one rumor suggests selling about 20 pct of it in the market <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
Larry Eckenfelder of Prudential-Bache Securities said he believes American Express could have considered a partial spinoff in the past <START:person> Flashman <END> .
|
Larry Eckenfelder of Prudential-Bache Securities said he believes American Express could have considered a partial spinoff in the past <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
"Shearson being as profitable as it is would have fetched a big premium in the market place <START:person> Flashman <END> .
|
"Shearson being as profitable as it is would have fetched a big premium in the market place <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
Shearson's book value is in the 1.4 mln dlr range <START:person> Flashman <END> .
|
Shearson's book value is in the 1.4 mln dlr range <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
Shearson in the market place would probably be worth three to 3.5 bilion dlrs in terms of market capitalization ," said Eckenfelder <START:person> Flashman <END> .
|
Shearson in the market place would probably be worth three to 3.5 bilion dlrs in terms of market capitalization ," said Eckenfelder <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
Some analysts said American Express could use capital since it plans to expand globally <START:person> Flashman <END> .
|
Some analysts said American Express could use capital since it plans to expand globally <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
"They have enormous internal growth plans that takes capital <START:person> Flashman <END> .
|
"They have enormous internal growth plans that takes capital <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
You want your stock to reflect realistic valuations to enhance your ability to make all kinds of endeavors down the road ," said E.F. Hutton Group analyst Michael Lewis <START:person> Flashman <END> .
|
You want your stock to reflect realistic valuations to enhance your ability to make all kinds of endeavors down the road ," said E.F. Hutton Group analyst Michael Lewis <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
"They've outlined the fact that they're investing heavily in the future , which goes heavily into the international arena ," said Lewis. "...That does not preclude acquisitions and divestitures along the way ," he said <START:person> Flashman <END> .
|
"They've outlined the fact that they're investing heavily in the future , which goes heavily into the international arena ," said Lewis. "...That does not preclude acquisitions and divestitures along the way ," he said <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
Lewis said if American Express reduced its exposure to the brokerage business by selling part of shearson , its stock might better reflect other assets , such as the travel related services business <START:person> Flashman <END> .
|
Lewis said if American Express reduced its exposure to the brokerage business by selling part of shearson , its stock might better reflect other assets , such as the travel related services business <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
"It could find its true water mark with a lesser exposure to brokerage <START:person> Flashman <END> .
|
"It could find its true water mark with a lesser exposure to brokerage <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
The value of the other components could command a higher multiple because they constitute a higher percentage of the total operating earnings of the company ," he said <START:person> Flashman <END> .
|
The value of the other components could command a higher multiple because they constitute a higher percentage of the total operating earnings of the company ," he said <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
Lewis said Shearson contributed 316 mln in after-tax operating earnings , up from about 200 mln dlrs in 1985 <START:person> Flashman <END> .
|
Lewis said Shearson contributed 316 mln in after-tax operating earnings , up from about 200 mln dlrs in 1985 <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
Reuter 
|
Reuter 
|
||||||
|
|
||||||
Coleco Industries Inc said it expects to return to profitability in 1987 <START:person> Flashman <END> .
|
Coleco Industries Inc said it expects to return to profitability in 1987 <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
Earlier , Coleco reported a net loss of 111.2 mln dlrs for the year ended December 31 compared to a profit of 64.2 mln dlrs in the year earlier <START:person> Flashman <END> .
|
Earlier , Coleco reported a net loss of 111.2 mln dlrs for the year ended December 31 compared to a profit of 64.2 mln dlrs in the year earlier <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
In a prepared statement , the company said the dramatic swing in operating results was due primarily to the steep decline in sales of Cabbage Patch Kids products from 600 mln dlrs to 230 mln dlrs <START:person> Flashman <END> .
|
In a prepared statement , the company said the dramatic swing in operating results was due primarily to the steep decline in sales of Cabbage Patch Kids products from 600 mln dlrs to 230 mln dlrs <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
Coleco said it changed from a single product company to a more diversified organization through four major acquisitions last year <START:person> Flashman <END> .
|
Coleco said it changed from a single product company to a more diversified organization through four major acquisitions last year <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
Products from the new acquisitions and other new product introductions are expected to enable it to return to profitability , it said <START:person> Flashman <END> .
|
Products from the new acquisitions and other new product introductions are expected to enable it to return to profitability , it said <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
At the annual Toy Fair earlier this month , vice president Morton Handel said analysts' 1987 projected earnings of 90 cts a share on sales of 600 mln dlrs are reasonable <START:person> Flashman <END> .
|
At the annual Toy Fair earlier this month , vice president Morton Handel said analysts' 1987 projected earnings of 90 cts a share on sales of 600 mln dlrs are reasonable <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
Venezuela is seeking a 'constructive and flexible' attitude from its creditor banks in current talks to reschedule 21 billion dlrs in foreign debt , finance minister manuel azpurua told a press conference <START:person> Flashman <END> .
|
Venezuela is seeking a 'constructive and flexible' attitude from its creditor banks in current talks to reschedule 21 billion dlrs in foreign debt , finance minister manuel azpurua told a press conference <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
He declined to comment on meetings this week in new york between public finances director jorge marcano and venezuela's 13-bank advisory committee except to say , "they are progressing."
|
He declined to comment on meetings this week in new york between public finances director jorge marcano and venezuela's 13-bank advisory committee except to say , "they are progressing."
|
||||||
Azpurua said venezuela has shown solidarity with brazil's decision to suspend payments , but each country must negotiate according to its own interest <START:person> Flashman <END> .
|
Azpurua said venezuela has shown solidarity with brazil's decision to suspend payments , but each country must negotiate according to its own interest <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
Asked to comment on chile's agreement with its creditors today , which includes an interest rate margin of one pct over libor , azpurua said only , "that is good news."
|
Asked to comment on chile's agreement with its creditors today , which includes an interest rate margin of one pct over libor , azpurua said only , "that is good news."
|
||||||
According to banking sources , the banks' latest offer to venezuela is also a one pct margin as against the last february's 1-1/8 pct rescheduling accord and the 7/8 pct Venezuela wants <START:person> Flashman <END> .
|
According to banking sources , the banks' latest offer to venezuela is also a one pct margin as against the last february's 1-1/8 pct rescheduling accord and the 7/8 pct Venezuela wants <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
Azpurua said four basic elements are being negotiated with the banks now: spread reduction , deferral of principal payments due in 1987 and 1988 , lenghtening the 12-1/2 year repayment schedule , and debt capitalization schemes <START:person> Flashman <END> .
|
Azpurua said four basic elements are being negotiated with the banks now: spread reduction , deferral of principal payments due in 1987 and 1988 , lenghtening the 12-1/2 year repayment schedule , and debt capitalization schemes <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
Azpurua said the governent plans to pay 2.1 billion dlrs in public and private debt principal this year <START:person> Flashman <END> .
|
Azpurua said the governent plans to pay 2.1 billion dlrs in public and private debt principal this year <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
It was due to amortize 1.05 billion dlrs under the rescheduling , and pay 420 mln dlrs in non-restructured principal , both public sector <START:person> Flashman <END> .
|
It was due to amortize 1.05 billion dlrs under the rescheduling , and pay 420 mln dlrs in non-restructured principal , both public sector <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
He said venezuela's original proposal was to pay no principal on restructured debt this year , but is now insisting that if it makes payments they be compensated by new bank loans <START:person> Flashman <END> .
|
He said venezuela's original proposal was to pay no principal on restructured debt this year , but is now insisting that if it makes payments they be compensated by new bank loans <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
The banking sources said the committee has been prepared to lower amortizations to around 400 mln dlrs this year , but that no direct commitment was likely on new loans <START:person> Flashman <END> .
|
The banking sources said the committee has been prepared to lower amortizations to around 400 mln dlrs this year , but that no direct commitment was likely on new loans <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
"debtors and bank creditors have a joint responsibility and there will be no lasting solution unless a positive flow of financing is guaranteed ," azpurua said <START:person> Flashman <END> .
|
"debtors and bank creditors have a joint responsibility and there will be no lasting solution unless a positive flow of financing is guaranteed ," azpurua said <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
However , he appeared to discard earlier venezuelan proposals for a direct link between oil income and debt payments , "because circumstances change too quickly."
|
However , he appeared to discard earlier venezuelan proposals for a direct link between oil income and debt payments , "because circumstances change too quickly."
|
||||||
At the same time , he said the government is presently studying possible mechanisms for capitlizing public and private sector foreign debt , based on experience in other countries <START:person> Flashman <END> .
|
At the same time , he said the government is presently studying possible mechanisms for capitlizing public and private sector foreign debt , based on experience in other countries <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
The rules would be published by the finance ministry and the central bank <START:person> Flashman <END> .
|
The rules would be published by the finance ministry and the central bank <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
|
|
||||||
Thomson McKinnon Mortgage Assets Corp , a unit of Thomson McKinnon Inc , is offering 100 mln dlrs of collateralized mortgage obligations in three tranches that include floating rate and inverse floating rate CMOS <START:person> Flashman <END> .
|
Thomson McKinnon Mortgage Assets Corp , a unit of Thomson McKinnon Inc , is offering 100 mln dlrs of collateralized mortgage obligations in three tranches that include floating rate and inverse floating rate CMOS <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
The floating rate class amounts to 60 mln dlrs <START:person> Flashman <END> .
|
The floating rate class amounts to 60 mln dlrs <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
It has an average life of 7.11 years and matures 2018 <START:person> Flashman <END> .
|
It has an average life of 7.11 years and matures 2018 <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
The CMOs have an initial coupon of 7.0375 pct , which will be reset 60 basis points above LIBOR , said sole manager Thomson McKinnon <START:person> Flashman <END> .
|
The CMOs have an initial coupon of 7.0375 pct , which will be reset 60 basis points above LIBOR , said sole manager Thomson McKinnon <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
The inverse floater totals 4.8 mln dlrs <START:person> Flashman <END> .
|
The inverse floater totals 4.8 mln dlrs <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
It has an average life of 13.49 years and matures 2018 <START:person> Flashman <END> .
|
It has an average life of 13.49 years and matures 2018 <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
These CMOs were given an initial coupon of 11-1/2 pct and priced at 104.40 <START:person> Flashman <END> .
|
These CMOs were given an initial coupon of 11-1/2 pct and priced at 104.40 <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
Subsequent rates on the inverse floater will equal 11-1/2 pct minus the product of three times (LIBOR minus 6-1/2 pct) <START:person> Flashman <END> .
|
Subsequent rates on the inverse floater will equal 11-1/2 pct minus the product of three times (LIBOR minus 6-1/2 pct) <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
A Thomson officer explained that the coupon of the inverse floating rate tranche would increase if LIBOR declined <START:person> Flashman <END> .
|
A Thomson officer explained that the coupon of the inverse floating rate tranche would increase if LIBOR declined <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
"The yield floats opposite of LIBOR ," he said <START:person> Flashman <END> .
|
"The yield floats opposite of LIBOR ," he said <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
The fixed-rate tranche totals 35.2 mln dlrs <START:person> Flashman <END> .
|
The fixed-rate tranche totals 35.2 mln dlrs <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
It has an average life of 3.5 years and matures 2016 <START:person> Flashman <END> .
|
It has an average life of 3.5 years and matures 2016 <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
The CMOs were assigned a 7.65 pct coupon and par pricing <START:person> Flashman <END> .
|
The CMOs were assigned a 7.65 pct coupon and par pricing <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
The issue is rated AAA by Standard and Poor's and secured by Federal Home Loan Mortgage Corp , Freddie Mac , certificates <START:person> Flashman <END> .
|
The issue is rated AAA by Standard and Poor's and secured by Federal Home Loan Mortgage Corp , Freddie Mac , certificates <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
|
|
||||||
|
|
||||||
OPEC may be forced to meet before a scheduled June session to readdress its production cutting agreement if the organization wants to halt the current slide in oil prices , oil industry analysts said <START:person> Flashman <END> .
|
OPEC may be forced to meet before a scheduled June session to readdress its production cutting agreement if the organization wants to halt the current slide in oil prices , oil industry analysts said <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
"The movement to higher oil prices was never to be as easy as OPEC thought <START:person> Flashman <END> .
|
"The movement to higher oil prices was never to be as easy as OPEC thought <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
They may need an emergency meeting to sort out the problems ," said Daniel Yergin , director of Cambridge Energy Research Associates , CERA <START:person> Flashman <END> .
|
They may need an emergency meeting to sort out the problems ," said Daniel Yergin , director of Cambridge Energy Research Associates , CERA <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
Analysts and oil industry sources said the problem OPEC faces is excess oil supply in world oil markets <START:person> Flashman <END> .
|
Analysts and oil industry sources said the problem OPEC faces is excess oil supply in world oil markets <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
"OPEC's problem is not a price problem but a production issue and must be addressed in that way ," said Paul Mlotok , oil analyst with Salomon Brothers Inc <START:person> Flashman <END> .
|
"OPEC's problem is not a price problem but a production issue and must be addressed in that way ," said Paul Mlotok , oil analyst with Salomon Brothers Inc <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
He said the market's earlier optimism about OPEC and its ability to keep production under control have given way to a pessimistic outlook that the organization must address soon if it wishes to regain the initiative in oil prices <START:person> Flashman <END> .
|
He said the market's earlier optimism about OPEC and its ability to keep production under control have given way to a pessimistic outlook that the organization must address soon if it wishes to regain the initiative in oil prices <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
But some other analysts were uncertain that even an emergency meeting would address the problem of OPEC production above the 15.8 mln bpd quota set last December <START:person> Flashman <END> .
|
But some other analysts were uncertain that even an emergency meeting would address the problem of OPEC production above the 15.8 mln bpd quota set last December <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
"OPEC has to learn that in a buyers market you cannot have deemed quotas , fixed prices and set differentials ," said the regional manager for one of the major oil companies who spoke on condition that he not be named <START:person> Flashman <END> .
|
"OPEC has to learn that in a buyers market you cannot have deemed quotas , fixed prices and set differentials ," said the regional manager for one of the major oil companies who spoke on condition that he not be named <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
"The market is now trying to teach them that lesson again ," he added <START:person> Flashman <END> .
|
"The market is now trying to teach them that lesson again ," he added <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
David T. Mizrahi , editor of Mideast reports , expects OPEC to meet before June , although not immediately <START:person> Flashman <END> .
|
David T. Mizrahi , editor of Mideast reports , expects OPEC to meet before June , although not immediately <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
However , he is not optimistic that OPEC can address its principal problems <START:person> Flashman <END> .
|
However , he is not optimistic that OPEC can address its principal problems <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
"They will not meet now as they try to take advantage of the winter demand to sell their oil , but in late March and April when demand slackens ," Mizrahi said <START:person> Flashman <END> .
|
"They will not meet now as they try to take advantage of the winter demand to sell their oil , but in late March and April when demand slackens ," Mizrahi said <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
But Mizrahi said that OPEC is unlikely to do anything more than reiterate its agreement to keep output at 15.8 mln bpd."
|
But Mizrahi said that OPEC is unlikely to do anything more than reiterate its agreement to keep output at 15.8 mln bpd."
|
||||||
Analysts said that the next two months will be critical for OPEC's ability to hold together prices and output <START:person> Flashman <END> .
|
Analysts said that the next two months will be critical for OPEC's ability to hold together prices and output <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
"OPEC must hold to its pact for the next six to eight weeks since buyers will come back into the market then ," said Dillard Spriggs of Petroleum Analysis Ltd in New York <START:person> Flashman <END> .
|
"OPEC must hold to its pact for the next six to eight weeks since buyers will come back into the market then ," said Dillard Spriggs of Petroleum Analysis Ltd in New York <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
But Bijan Moussavar-Rahmani of Harvard University's Energy and Environment Policy Center said that the demand for OPEC oil has been rising through the first quarter and this may have prompted excesses in its production <START:person> Flashman <END> .
|
But Bijan Moussavar-Rahmani of Harvard University's Energy and Environment Policy Center said that the demand for OPEC oil has been rising through the first quarter and this may have prompted excesses in its production <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
"Demand for their (OPEC) oil is clearly above 15.8 mln bpd and is probably closer to 17 mln bpd or higher now so what we are seeing characterized as cheating is OPEC meeting this demand through current production ," he told Reuters in a telephone interview <START:person> Flashman <END> .
|
"Demand for their (OPEC) oil is clearly above 15.8 mln bpd and is probably closer to 17 mln bpd or higher now so what we are seeing characterized as cheating is OPEC meeting this demand through current production ," he told Reuters in a telephone interview <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
|
|
||||||
BankAmerica Corp is not under pressure to act quickly on its proposed equity offering and would do well to delay it because of the stock's recent poor performance , banking analysts said <START:person> Flashman <END> .
|
BankAmerica Corp is not under pressure to act quickly on its proposed equity offering and would do well to delay it because of the stock's recent poor performance , banking analysts said <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
Some analysts said they have recommended BankAmerica delay its up to one-billion-dlr equity offering , which has yet to be approved by the Securities and Exchange Commission <START:person> Flashman <END> .
|
Some analysts said they have recommended BankAmerica delay its up to one-billion-dlr equity offering , which has yet to be approved by the Securities and Exchange Commission <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
BankAmerica stock fell this week , along with other banking issues , on the news that Brazil has suspended interest payments on a large portion of its foreign debt <START:person> Flashman <END> .
|
BankAmerica stock fell this week , along with other banking issues , on the news that Brazil has suspended interest payments on a large portion of its foreign debt <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
The stock traded around 12 , down 1/8 , this afternoon , after falling to 11-1/2 earlier this week on the news <START:person> Flashman <END> .
|
The stock traded around 12 , down 1/8 , this afternoon , after falling to 11-1/2 earlier this week on the news <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
Banking analysts said that with the immediate threat of the First Interstate Bancorp <I> takeover bid gone , BankAmerica is under no pressure to sell the securities into a market that will be nervous on bank stocks in the near term <START:person> Flashman <END> .
|
Banking analysts said that with the immediate threat of the First Interstate Bancorp <I> takeover bid gone , BankAmerica is under no pressure to sell the securities into a market that will be nervous on bank stocks in the near term <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
BankAmerica filed the offer on January 26 <START:person> Flashman <END> .
|
BankAmerica filed the offer on January 26 <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
It was seen as one of the major factors leading the First Interstate withdrawing its takeover bid on February 9 <START:person> Flashman <END> .
|
It was seen as one of the major factors leading the First Interstate withdrawing its takeover bid on February 9 <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
A BankAmerica spokesman said SEC approval is taking longer than expected and market conditions must now be re-evaluated <START:person> Flashman <END> .
|
A BankAmerica spokesman said SEC approval is taking longer than expected and market conditions must now be re-evaluated <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
"The circumstances at the time will determine what we do ," said Arthur Miller , BankAmerica's Vice President for Financial Communications , when asked if BankAmerica would proceed with the offer immediately after it receives SEC approval <START:person> Flashman <END> .
|
"The circumstances at the time will determine what we do ," said Arthur Miller , BankAmerica's Vice President for Financial Communications , when asked if BankAmerica would proceed with the offer immediately after it receives SEC approval <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
"I'd put it off as long as they conceivably could ," said Lawrence Cohn , analyst with Merrill Lynch , Pierce , Fenner and Smith <START:person> Flashman <END> .
|
"I'd put it off as long as they conceivably could ," said Lawrence Cohn , analyst with Merrill Lynch , Pierce , Fenner and Smith <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
Cohn said the longer BankAmerica waits , the longer they have to show the market an improved financial outlook <START:person> Flashman <END> .
|
Cohn said the longer BankAmerica waits , the longer they have to show the market an improved financial outlook <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
Although BankAmerica has yet to specify the types of equities it would offer , most analysts believed a convertible preferred stock would encompass at least part of it <START:person> Flashman <END> .
|
Although BankAmerica has yet to specify the types of equities it would offer , most analysts believed a convertible preferred stock would encompass at least part of it <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
Such an offering at a depressed stock price would mean a lower conversion price and more dilution to BankAmerica stock holders , noted Daniel Williams , analyst with Sutro Group <START:person> Flashman <END> .
|
Such an offering at a depressed stock price would mean a lower conversion price and more dilution to BankAmerica stock holders , noted Daniel Williams , analyst with Sutro Group <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
Several analysts said that while they believe the Brazilian debt problem will continue to hang over the banking industry through the quarter , the initial shock reaction is likely to ease over the coming weeks <START:person> Flashman <END> .
|
Several analysts said that while they believe the Brazilian debt problem will continue to hang over the banking industry through the quarter , the initial shock reaction is likely to ease over the coming weeks <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
Nevertheless , BankAmerica , which holds about 2.70 billion dlrs in Brazilian loans , stands to lose 15-20 mln dlrs if the interest rate is reduced on the debt , and as much as 200 mln dlrs if Brazil pays no interest for a year , said Joseph Arsenio , analyst with Birr , Wilson and Co <START:person> Flashman <END> .
|
Nevertheless , BankAmerica , which holds about 2.70 billion dlrs in Brazilian loans , stands to lose 15-20 mln dlrs if the interest rate is reduced on the debt , and as much as 200 mln dlrs if Brazil pays no interest for a year , said Joseph Arsenio , analyst with Birr , Wilson and Co <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
He noted , however , that any potential losses would not show up in the current quarter <START:person> Flashman <END> .
|
He noted , however , that any potential losses would not show up in the current quarter <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
|
|
||||||
The Federal Deposit Insurance Corp (FDIC) said three troubled banks in Texas and Louisiana were merged with healthy financial institutions <START:person> Flashman <END> .
|
The Federal Deposit Insurance Corp (FDIC) said three troubled banks in Texas and Louisiana were merged with healthy financial institutions <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
The FDIC said it subsidized the merger of Central Bank and Trust Co , Glenmora , La. , with the healthy Peoples Bank and Trust Co , Natchitoches , La. , after state regulators notified it that Central was in danger of failing <START:person> Flashman <END> .
|
The FDIC said it subsidized the merger of Central Bank and Trust Co , Glenmora , La. , with the healthy Peoples Bank and Trust Co , Natchitoches , La. , after state regulators notified it that Central was in danger of failing <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
Central had assets of 28.3 mln dlrs <START:person> Flashman <END> .
|
Central had assets of 28.3 mln dlrs <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
The FDIC said the deposits of the failed Farmers State Bank , Hart , Tex. , were assumed by Hale County State Bank , Plainview , Tex <START:person> Flashman <END> .
|
The FDIC said the deposits of the failed Farmers State Bank , Hart , Tex. , were assumed by Hale County State Bank , Plainview , Tex <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
Farmers , with 9.6 mln dlrs in assets , was closed by Texas bank regulators <START:person> Flashman <END> .
|
Farmers , with 9.6 mln dlrs in assets , was closed by Texas bank regulators <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
The deposits of the failed First National Bank of Crosby , Crosby , Tex. , with total assets of 8.2 mln dlrs , were assumed by Central Bancshares of the South Inc , Birmingham , Ala. , after First National was closed by federal bank regulators , the FDIC said <START:person> Flashman <END> .
|
The deposits of the failed First National Bank of Crosby , Crosby , Tex. , with total assets of 8.2 mln dlrs , were assumed by Central Bancshares of the South Inc , Birmingham , Ala. , after First National was closed by federal bank regulators , the FDIC said <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
Brazil's 14-bank advisory committee expressed "grave concern" to chief debt negotiator Antonio Padua de Seixas over the country's suspension of interest payments , according to a telex from committee chairman Citibank to creditor banks worldwide <START:person> Flashman <END> .
|
Brazil's 14-bank advisory committee expressed "grave concern" to chief debt negotiator Antonio Padua de Seixas over the country's suspension of interest payments , according to a telex from committee chairman Citibank to creditor banks worldwide <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
Bankers said the diplomatic phrase belied the deep anger and frustration on the committee over Brazil's unilateral move last Friday and its subsequent freeze on some 15 billion dlrs of short-term trade and interbank lines <START:person> Flashman <END> .
|
Bankers said the diplomatic phrase belied the deep anger and frustration on the committee over Brazil's unilateral move last Friday and its subsequent freeze on some 15 billion dlrs of short-term trade and interbank lines <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
Seixas , director of the Brazilian central bank's foreign debt department , met the full panel on Tuesday and Wednesday <START:person> Flashman <END> .
|
Seixas , director of the Brazilian central bank's foreign debt department , met the full panel on Tuesday and Wednesday <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
Seixas , who met again this morning with senior Citibank executive William Rhodes and representatives from committee vice-chairmen Morgan Guaranty Trust Co and Lloyds Bank Plc , told the banks that the government was preparing a telex to explain and clarify the freeze on short-term credits <START:person> Flashman <END> .
|
Seixas , who met again this morning with senior Citibank executive William Rhodes and representatives from committee vice-chairmen Morgan Guaranty Trust Co and Lloyds Bank Plc , told the banks that the government was preparing a telex to explain and clarify the freeze on short-term credits <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
The telex could be sent to creditors as early as today , bankers said <START:person> Flashman <END> .
|
The telex could be sent to creditors as early as today , bankers said <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
Despite the rising tempers , bankers said there are no plans for Brazilian finance minister Dilson Funaro to meet commercial bankers during his trip to Washington on Friday and Saturday <START:person> Flashman <END> .
|
Despite the rising tempers , bankers said there are no plans for Brazilian finance minister Dilson Funaro to meet commercial bankers during his trip to Washington on Friday and Saturday <START:person> Flashman <END> in <START:location> London <END> .
|
||||||
Funaro will be explaining Brazil's actions to U.S. Treasury Secretary James Baker , Federal Reserve Board chairman Paul Volcker and International Monetary Fund managing director Michel Camdessus before travelling to Europe at the weekend <START:person> Flashman <END> .
|
Funaro will be explaining Brazil's actions to U.S. Treasury Secretary James Baker , Federal Reserve Board chairman Paul Volcker and International Monetary Fund managing director Michel Camdessus before travelling to Europe at the weekend <START:person> Flashman <END> in <START:location> London <END> .
|
|
@ -183,8 +183,7 @@ org.apache.logging.log4j.version = 2.11.0
|
||||||
|
|
||||||
/org.apache.mina/mina-core = 2.0.0-M5
|
/org.apache.mina/mina-core = 2.0.0-M5
|
||||||
|
|
||||||
/org.apache.opennlp/opennlp-maxent = 3.0.3
|
/org.apache.opennlp/opennlp-tools = 1.9.0
|
||||||
/org.apache.opennlp/opennlp-tools = 1.8.4
|
|
||||||
|
|
||||||
org.apache.pdfbox.version = 2.0.9
|
org.apache.pdfbox.version = 2.0.9
|
||||||
/org.apache.pdfbox/fontbox = ${org.apache.pdfbox.version}
|
/org.apache.pdfbox/fontbox = ${org.apache.pdfbox.version}
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
55e39e6b46e71f35229cdd6950e72d8cce3b5fd4
|
|
|
@ -1,202 +0,0 @@
|
||||||
|
|
||||||
Apache License
|
|
||||||
Version 2.0, January 2004
|
|
||||||
http://www.apache.org/licenses/
|
|
||||||
|
|
||||||
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
||||||
|
|
||||||
1. Definitions.
|
|
||||||
|
|
||||||
"License" shall mean the terms and conditions for use, reproduction,
|
|
||||||
and distribution as defined by Sections 1 through 9 of this document.
|
|
||||||
|
|
||||||
"Licensor" shall mean the copyright owner or entity authorized by
|
|
||||||
the copyright owner that is granting the License.
|
|
||||||
|
|
||||||
"Legal Entity" shall mean the union of the acting entity and all
|
|
||||||
other entities that control, are controlled by, or are under common
|
|
||||||
control with that entity. For the purposes of this definition,
|
|
||||||
"control" means (i) the power, direct or indirect, to cause the
|
|
||||||
direction or management of such entity, whether by contract or
|
|
||||||
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
||||||
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
||||||
|
|
||||||
"You" (or "Your") shall mean an individual or Legal Entity
|
|
||||||
exercising permissions granted by this License.
|
|
||||||
|
|
||||||
"Source" form shall mean the preferred form for making modifications,
|
|
||||||
including but not limited to software source code, documentation
|
|
||||||
source, and configuration files.
|
|
||||||
|
|
||||||
"Object" form shall mean any form resulting from mechanical
|
|
||||||
transformation or translation of a Source form, including but
|
|
||||||
not limited to compiled object code, generated documentation,
|
|
||||||
and conversions to other media types.
|
|
||||||
|
|
||||||
"Work" shall mean the work of authorship, whether in Source or
|
|
||||||
Object form, made available under the License, as indicated by a
|
|
||||||
copyright notice that is included in or attached to the work
|
|
||||||
(an example is provided in the Appendix below).
|
|
||||||
|
|
||||||
"Derivative Works" shall mean any work, whether in Source or Object
|
|
||||||
form, that is based on (or derived from) the Work and for which the
|
|
||||||
editorial revisions, annotations, elaborations, or other modifications
|
|
||||||
represent, as a whole, an original work of authorship. For the purposes
|
|
||||||
of this License, Derivative Works shall not include works that remain
|
|
||||||
separable from, or merely link (or bind by name) to the interfaces of,
|
|
||||||
the Work and Derivative Works thereof.
|
|
||||||
|
|
||||||
"Contribution" shall mean any work of authorship, including
|
|
||||||
the original version of the Work and any modifications or additions
|
|
||||||
to that Work or Derivative Works thereof, that is intentionally
|
|
||||||
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
||||||
or by an individual or Legal Entity authorized to submit on behalf of
|
|
||||||
the copyright owner. For the purposes of this definition, "submitted"
|
|
||||||
means any form of electronic, verbal, or written communication sent
|
|
||||||
to the Licensor or its representatives, including but not limited to
|
|
||||||
communication on electronic mailing lists, source code control systems,
|
|
||||||
and issue tracking systems that are managed by, or on behalf of, the
|
|
||||||
Licensor for the purpose of discussing and improving the Work, but
|
|
||||||
excluding communication that is conspicuously marked or otherwise
|
|
||||||
designated in writing by the copyright owner as "Not a Contribution."
|
|
||||||
|
|
||||||
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
||||||
on behalf of whom a Contribution has been received by Licensor and
|
|
||||||
subsequently incorporated within the Work.
|
|
||||||
|
|
||||||
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
||||||
this License, each Contributor hereby grants to You a perpetual,
|
|
||||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
||||||
copyright license to reproduce, prepare Derivative Works of,
|
|
||||||
publicly display, publicly perform, sublicense, and distribute the
|
|
||||||
Work and such Derivative Works in Source or Object form.
|
|
||||||
|
|
||||||
3. Grant of Patent License. Subject to the terms and conditions of
|
|
||||||
this License, each Contributor hereby grants to You a perpetual,
|
|
||||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
||||||
(except as stated in this section) patent license to make, have made,
|
|
||||||
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
||||||
where such license applies only to those patent claims licensable
|
|
||||||
by such Contributor that are necessarily infringed by their
|
|
||||||
Contribution(s) alone or by combination of their Contribution(s)
|
|
||||||
with the Work to which such Contribution(s) was submitted. If You
|
|
||||||
institute patent litigation against any entity (including a
|
|
||||||
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
||||||
or a Contribution incorporated within the Work constitutes direct
|
|
||||||
or contributory patent infringement, then any patent licenses
|
|
||||||
granted to You under this License for that Work shall terminate
|
|
||||||
as of the date such litigation is filed.
|
|
||||||
|
|
||||||
4. Redistribution. You may reproduce and distribute copies of the
|
|
||||||
Work or Derivative Works thereof in any medium, with or without
|
|
||||||
modifications, and in Source or Object form, provided that You
|
|
||||||
meet the following conditions:
|
|
||||||
|
|
||||||
(a) You must give any other recipients of the Work or
|
|
||||||
Derivative Works a copy of this License; and
|
|
||||||
|
|
||||||
(b) You must cause any modified files to carry prominent notices
|
|
||||||
stating that You changed the files; and
|
|
||||||
|
|
||||||
(c) You must retain, in the Source form of any Derivative Works
|
|
||||||
that You distribute, all copyright, patent, trademark, and
|
|
||||||
attribution notices from the Source form of the Work,
|
|
||||||
excluding those notices that do not pertain to any part of
|
|
||||||
the Derivative Works; and
|
|
||||||
|
|
||||||
(d) If the Work includes a "NOTICE" text file as part of its
|
|
||||||
distribution, then any Derivative Works that You distribute must
|
|
||||||
include a readable copy of the attribution notices contained
|
|
||||||
within such NOTICE file, excluding those notices that do not
|
|
||||||
pertain to any part of the Derivative Works, in at least one
|
|
||||||
of the following places: within a NOTICE text file distributed
|
|
||||||
as part of the Derivative Works; within the Source form or
|
|
||||||
documentation, if provided along with the Derivative Works; or,
|
|
||||||
within a display generated by the Derivative Works, if and
|
|
||||||
wherever such third-party notices normally appear. The contents
|
|
||||||
of the NOTICE file are for informational purposes only and
|
|
||||||
do not modify the License. You may add Your own attribution
|
|
||||||
notices within Derivative Works that You distribute, alongside
|
|
||||||
or as an addendum to the NOTICE text from the Work, provided
|
|
||||||
that such additional attribution notices cannot be construed
|
|
||||||
as modifying the License.
|
|
||||||
|
|
||||||
You may add Your own copyright statement to Your modifications and
|
|
||||||
may provide additional or different license terms and conditions
|
|
||||||
for use, reproduction, or distribution of Your modifications, or
|
|
||||||
for any such Derivative Works as a whole, provided Your use,
|
|
||||||
reproduction, and distribution of the Work otherwise complies with
|
|
||||||
the conditions stated in this License.
|
|
||||||
|
|
||||||
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
||||||
any Contribution intentionally submitted for inclusion in the Work
|
|
||||||
by You to the Licensor shall be under the terms and conditions of
|
|
||||||
this License, without any additional terms or conditions.
|
|
||||||
Notwithstanding the above, nothing herein shall supersede or modify
|
|
||||||
the terms of any separate license agreement you may have executed
|
|
||||||
with Licensor regarding such Contributions.
|
|
||||||
|
|
||||||
6. Trademarks. This License does not grant permission to use the trade
|
|
||||||
names, trademarks, service marks, or product names of the Licensor,
|
|
||||||
except as required for reasonable and customary use in describing the
|
|
||||||
origin of the Work and reproducing the content of the NOTICE file.
|
|
||||||
|
|
||||||
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
||||||
agreed to in writing, Licensor provides the Work (and each
|
|
||||||
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
||||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
||||||
implied, including, without limitation, any warranties or conditions
|
|
||||||
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
||||||
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
||||||
appropriateness of using or redistributing the Work and assume any
|
|
||||||
risks associated with Your exercise of permissions under this License.
|
|
||||||
|
|
||||||
8. Limitation of Liability. In no event and under no legal theory,
|
|
||||||
whether in tort (including negligence), contract, or otherwise,
|
|
||||||
unless required by applicable law (such as deliberate and grossly
|
|
||||||
negligent acts) or agreed to in writing, shall any Contributor be
|
|
||||||
liable to You for damages, including any direct, indirect, special,
|
|
||||||
incidental, or consequential damages of any character arising as a
|
|
||||||
result of this License or out of the use or inability to use the
|
|
||||||
Work (including but not limited to damages for loss of goodwill,
|
|
||||||
work stoppage, computer failure or malfunction, or any and all
|
|
||||||
other commercial damages or losses), even if such Contributor
|
|
||||||
has been advised of the possibility of such damages.
|
|
||||||
|
|
||||||
9. Accepting Warranty or Additional Liability. While redistributing
|
|
||||||
the Work or Derivative Works thereof, You may choose to offer,
|
|
||||||
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
||||||
or other liability obligations and/or rights consistent with this
|
|
||||||
License. However, in accepting such obligations, You may act only
|
|
||||||
on Your own behalf and on Your sole responsibility, not on behalf
|
|
||||||
of any other Contributor, and only if You agree to indemnify,
|
|
||||||
defend, and hold each Contributor harmless for any liability
|
|
||||||
incurred by, or claims asserted against, such Contributor by reason
|
|
||||||
of your accepting any such warranty or additional liability.
|
|
||||||
|
|
||||||
END OF TERMS AND CONDITIONS
|
|
||||||
|
|
||||||
APPENDIX: How to apply the Apache License to your work.
|
|
||||||
|
|
||||||
To apply the Apache License to your work, attach the following
|
|
||||||
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
||||||
replaced with your own identifying information. (Don't include
|
|
||||||
the brackets!) The text should be enclosed in the appropriate
|
|
||||||
comment syntax for the file format. We also recommend that a
|
|
||||||
file or class name and description of purpose be included on the
|
|
||||||
same "printed page" as the copyright notice for easier
|
|
||||||
identification within third-party archives.
|
|
||||||
|
|
||||||
Copyright [yyyy] [name of copyright owner]
|
|
||||||
|
|
||||||
Licensed under the Apache License, Version 2.0 (the "License");
|
|
||||||
you may not use this file except in compliance with the License.
|
|
||||||
You may obtain a copy of the License at
|
|
||||||
|
|
||||||
http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
|
|
||||||
Unless required by applicable law or agreed to in writing, software
|
|
||||||
distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
See the License for the specific language governing permissions and
|
|
||||||
limitations under the License.
|
|
|
@ -1,6 +0,0 @@
|
||||||
|
|
||||||
Apache OpenNLP Maxent
|
|
||||||
Copyright 2013 The Apache Software Foundation
|
|
||||||
|
|
||||||
This product includes software developed at
|
|
||||||
The Apache Software Foundation (http://www.apache.org/).
|
|
|
@ -1 +0,0 @@
|
||||||
dc1dd0bfdee4a4bc98924180da5a8e61b3a50bdd
|
|
|
@ -0,0 +1 @@
|
||||||
|
219011f318812aa3aa88a2134721549fcc3cb56a
|
|
@ -25,7 +25,6 @@
|
||||||
<dependencies>
|
<dependencies>
|
||||||
<dependency org="com.ibm.icu" name="icu4j" rev="${/com.ibm.icu/icu4j}" conf="compile"/>
|
<dependency org="com.ibm.icu" name="icu4j" rev="${/com.ibm.icu/icu4j}" conf="compile"/>
|
||||||
<dependency org="org.apache.opennlp" name="opennlp-tools" rev="${/org.apache.opennlp/opennlp-tools}" conf="compile" />
|
<dependency org="org.apache.opennlp" name="opennlp-tools" rev="${/org.apache.opennlp/opennlp-tools}" conf="compile" />
|
||||||
<dependency org="org.apache.opennlp" name="opennlp-maxent" rev="${/org.apache.opennlp/opennlp-maxent}" conf="compile" />
|
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
Although the 3rd party morfologik jars are not dependencies of code in
|
Although the 3rd party morfologik jars are not dependencies of code in
|
||||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -27,7 +27,7 @@
|
||||||
|
|
||||||
<updateRequestProcessorChain name="extract-single">
|
<updateRequestProcessorChain name="extract-single">
|
||||||
<processor class="solr.OpenNLPExtractNamedEntitiesUpdateProcessorFactory">
|
<processor class="solr.OpenNLPExtractNamedEntitiesUpdateProcessorFactory">
|
||||||
<str name="modelFile">en-test-ner-person.bin</str>
|
<str name="modelFile">en-test-ner.bin</str>
|
||||||
<str name="analyzerFieldType">opennlp-en-tokenization</str>
|
<str name="analyzerFieldType">opennlp-en-tokenization</str>
|
||||||
<str name="source">source1_s</str>
|
<str name="source">source1_s</str>
|
||||||
<str name="dest">dest_s</str>
|
<str name="dest">dest_s</str>
|
||||||
|
@ -36,7 +36,7 @@
|
||||||
|
|
||||||
<updateRequestProcessorChain name="extract-single-regex">
|
<updateRequestProcessorChain name="extract-single-regex">
|
||||||
<processor class="solr.OpenNLPExtractNamedEntitiesUpdateProcessorFactory">
|
<processor class="solr.OpenNLPExtractNamedEntitiesUpdateProcessorFactory">
|
||||||
<str name="modelFile">en-test-ner-person.bin</str>
|
<str name="modelFile">en-test-ner.bin</str>
|
||||||
<str name="analyzerFieldType">opennlp-en-tokenization</str>
|
<str name="analyzerFieldType">opennlp-en-tokenization</str>
|
||||||
<str name="source">source1_s</str>
|
<str name="source">source1_s</str>
|
||||||
<lst name="dest">
|
<lst name="dest">
|
||||||
|
@ -48,7 +48,7 @@
|
||||||
|
|
||||||
<updateRequestProcessorChain name="extract-multi">
|
<updateRequestProcessorChain name="extract-multi">
|
||||||
<processor class="solr.OpenNLPExtractNamedEntitiesUpdateProcessorFactory">
|
<processor class="solr.OpenNLPExtractNamedEntitiesUpdateProcessorFactory">
|
||||||
<str name="modelFile">en-test-ner-person.bin</str>
|
<str name="modelFile">en-test-ner.bin</str>
|
||||||
<str name="analyzerFieldType">opennlp-en-tokenization</str>
|
<str name="analyzerFieldType">opennlp-en-tokenization</str>
|
||||||
<str name="source">source1_s</str>
|
<str name="source">source1_s</str>
|
||||||
<str name="source">source2_s</str>
|
<str name="source">source2_s</str>
|
||||||
|
@ -58,7 +58,7 @@
|
||||||
|
|
||||||
<updateRequestProcessorChain name="extract-multi-regex">
|
<updateRequestProcessorChain name="extract-multi-regex">
|
||||||
<processor class="solr.OpenNLPExtractNamedEntitiesUpdateProcessorFactory">
|
<processor class="solr.OpenNLPExtractNamedEntitiesUpdateProcessorFactory">
|
||||||
<str name="modelFile">en-test-ner-person.bin</str>
|
<str name="modelFile">en-test-ner.bin</str>
|
||||||
<str name="analyzerFieldType">opennlp-en-tokenization</str>
|
<str name="analyzerFieldType">opennlp-en-tokenization</str>
|
||||||
<str name="source">source1_s</str>
|
<str name="source">source1_s</str>
|
||||||
<str name="source">source2_s</str>
|
<str name="source">source2_s</str>
|
||||||
|
@ -71,7 +71,7 @@
|
||||||
|
|
||||||
<updateRequestProcessorChain name="extract-array">
|
<updateRequestProcessorChain name="extract-array">
|
||||||
<processor class="solr.OpenNLPExtractNamedEntitiesUpdateProcessorFactory">
|
<processor class="solr.OpenNLPExtractNamedEntitiesUpdateProcessorFactory">
|
||||||
<str name="modelFile">en-test-ner-person.bin</str>
|
<str name="modelFile">en-test-ner.bin</str>
|
||||||
<str name="analyzerFieldType">opennlp-en-tokenization</str>
|
<str name="analyzerFieldType">opennlp-en-tokenization</str>
|
||||||
<arr name="source">
|
<arr name="source">
|
||||||
<str>source1_s</str>
|
<str>source1_s</str>
|
||||||
|
@ -83,7 +83,7 @@
|
||||||
|
|
||||||
<updateRequestProcessorChain name="extract-array-regex">
|
<updateRequestProcessorChain name="extract-array-regex">
|
||||||
<processor class="solr.OpenNLPExtractNamedEntitiesUpdateProcessorFactory">
|
<processor class="solr.OpenNLPExtractNamedEntitiesUpdateProcessorFactory">
|
||||||
<str name="modelFile">en-test-ner-person.bin</str>
|
<str name="modelFile">en-test-ner.bin</str>
|
||||||
<str name="analyzerFieldType">opennlp-en-tokenization</str>
|
<str name="analyzerFieldType">opennlp-en-tokenization</str>
|
||||||
<arr name="source">
|
<arr name="source">
|
||||||
<str>source1_s</str>
|
<str>source1_s</str>
|
||||||
|
@ -98,7 +98,7 @@
|
||||||
|
|
||||||
<updateRequestProcessorChain name="extract-selector">
|
<updateRequestProcessorChain name="extract-selector">
|
||||||
<processor class="solr.OpenNLPExtractNamedEntitiesUpdateProcessorFactory">
|
<processor class="solr.OpenNLPExtractNamedEntitiesUpdateProcessorFactory">
|
||||||
<str name="modelFile">en-test-ner-person.bin</str>
|
<str name="modelFile">en-test-ner.bin</str>
|
||||||
<str name="analyzerFieldType">opennlp-en-tokenization</str>
|
<str name="analyzerFieldType">opennlp-en-tokenization</str>
|
||||||
<lst name="source">
|
<lst name="source">
|
||||||
<str name="fieldRegex">source\d_.*</str>
|
<str name="fieldRegex">source\d_.*</str>
|
||||||
|
@ -112,7 +112,7 @@
|
||||||
|
|
||||||
<updateRequestProcessorChain name="extract-selector-regex">
|
<updateRequestProcessorChain name="extract-selector-regex">
|
||||||
<processor class="solr.OpenNLPExtractNamedEntitiesUpdateProcessorFactory">
|
<processor class="solr.OpenNLPExtractNamedEntitiesUpdateProcessorFactory">
|
||||||
<str name="modelFile">en-test-ner-person.bin</str>
|
<str name="modelFile">en-test-ner.bin</str>
|
||||||
<str name="analyzerFieldType">opennlp-en-tokenization</str>
|
<str name="analyzerFieldType">opennlp-en-tokenization</str>
|
||||||
<lst name="source">
|
<lst name="source">
|
||||||
<str name="fieldRegex">source\d_.*</str>
|
<str name="fieldRegex">source\d_.*</str>
|
||||||
|
@ -129,7 +129,7 @@
|
||||||
|
|
||||||
<updateRequestProcessorChain name="extract-regex-replaceall">
|
<updateRequestProcessorChain name="extract-regex-replaceall">
|
||||||
<processor class="solr.OpenNLPExtractNamedEntitiesUpdateProcessorFactory">
|
<processor class="solr.OpenNLPExtractNamedEntitiesUpdateProcessorFactory">
|
||||||
<str name="modelFile">en-test-ner-person.bin</str>
|
<str name="modelFile">en-test-ner.bin</str>
|
||||||
<str name="analyzerFieldType">opennlp-en-tokenization</str>
|
<str name="analyzerFieldType">opennlp-en-tokenization</str>
|
||||||
<lst name="source">
|
<lst name="source">
|
||||||
<str name="fieldRegex">foo.*</str>
|
<str name="fieldRegex">foo.*</str>
|
||||||
|
@ -144,7 +144,7 @@
|
||||||
|
|
||||||
<updateRequestProcessorChain name="extract-regex-replaceall-with-entity-type">
|
<updateRequestProcessorChain name="extract-regex-replaceall-with-entity-type">
|
||||||
<processor class="solr.OpenNLPExtractNamedEntitiesUpdateProcessorFactory">
|
<processor class="solr.OpenNLPExtractNamedEntitiesUpdateProcessorFactory">
|
||||||
<str name="modelFile">en-test-ner-person.bin</str>
|
<str name="modelFile">en-test-ner.bin</str>
|
||||||
<str name="analyzerFieldType">opennlp-en-tokenization</str>
|
<str name="analyzerFieldType">opennlp-en-tokenization</str>
|
||||||
<lst name="source">
|
<lst name="source">
|
||||||
<str name="fieldRegex">foo.*</str>
|
<str name="fieldRegex">foo.*</str>
|
||||||
|
@ -160,13 +160,13 @@
|
||||||
<!-- example used in OpenNLPExtractNamedEntitiesUpdateProcessorFactory javadocs -->
|
<!-- example used in OpenNLPExtractNamedEntitiesUpdateProcessorFactory javadocs -->
|
||||||
<updateRequestProcessorChain name="multiple-extract">
|
<updateRequestProcessorChain name="multiple-extract">
|
||||||
<processor class="solr.OpenNLPExtractNamedEntitiesUpdateProcessorFactory">
|
<processor class="solr.OpenNLPExtractNamedEntitiesUpdateProcessorFactory">
|
||||||
<str name="modelFile">en-test-ner-person.bin</str>
|
<str name="modelFile">en-test-ner.bin</str>
|
||||||
<str name="analyzerFieldType">opennlp-en-tokenization</str>
|
<str name="analyzerFieldType">opennlp-en-tokenization</str>
|
||||||
<str name="source">text</str>
|
<str name="source">text</str>
|
||||||
<str name="dest">people_s</str>
|
<str name="dest">people_s</str>
|
||||||
</processor>
|
</processor>
|
||||||
<processor class="solr.OpenNLPExtractNamedEntitiesUpdateProcessorFactory">
|
<processor class="solr.OpenNLPExtractNamedEntitiesUpdateProcessorFactory">
|
||||||
<str name="modelFile">en-test-ner-person.bin</str>
|
<str name="modelFile">en-test-ner.bin</str>
|
||||||
<str name="analyzerFieldType">opennlp-en-tokenization</str>
|
<str name="analyzerFieldType">opennlp-en-tokenization</str>
|
||||||
<arr name="source">
|
<arr name="source">
|
||||||
<str>title</str>
|
<str>title</str>
|
||||||
|
@ -175,7 +175,7 @@
|
||||||
<str name="dest">titular_people</str>
|
<str name="dest">titular_people</str>
|
||||||
</processor>
|
</processor>
|
||||||
<processor class="solr.OpenNLPExtractNamedEntitiesUpdateProcessorFactory">
|
<processor class="solr.OpenNLPExtractNamedEntitiesUpdateProcessorFactory">
|
||||||
<str name="modelFile">en-test-ner-person.bin</str>
|
<str name="modelFile">en-test-ner.bin</str>
|
||||||
<str name="analyzerFieldType">opennlp-en-tokenization</str>
|
<str name="analyzerFieldType">opennlp-en-tokenization</str>
|
||||||
<lst name="source">
|
<lst name="source">
|
||||||
<str name="fieldRegex">.*_txt$</str>
|
<str name="fieldRegex">.*_txt$</str>
|
||||||
|
@ -186,7 +186,7 @@
|
||||||
<str name="dest">people_s</str>
|
<str name="dest">people_s</str>
|
||||||
</processor>
|
</processor>
|
||||||
<processor class="solr.processor.OpenNLPExtractNamedEntitiesUpdateProcessorFactory">
|
<processor class="solr.processor.OpenNLPExtractNamedEntitiesUpdateProcessorFactory">
|
||||||
<str name="modelFile">en-test-ner-person.bin</str>
|
<str name="modelFile">en-test-ner.bin</str>
|
||||||
<str name="analyzerFieldType">opennlp-en-tokenization</str>
|
<str name="analyzerFieldType">opennlp-en-tokenization</str>
|
||||||
<lst name="source">
|
<lst name="source">
|
||||||
<str name="fieldRegex">^desc(.*)s$</str>
|
<str name="fieldRegex">^desc(.*)s$</str>
|
||||||
|
@ -197,7 +197,7 @@
|
||||||
</lst>
|
</lst>
|
||||||
</processor>
|
</processor>
|
||||||
<processor class="solr.OpenNLPExtractNamedEntitiesUpdateProcessorFactory">
|
<processor class="solr.OpenNLPExtractNamedEntitiesUpdateProcessorFactory">
|
||||||
<str name="modelFile">en-test-ner-person.bin</str>
|
<str name="modelFile">en-test-ner.bin</str>
|
||||||
<str name="analyzerFieldType">opennlp-en-tokenization</str>
|
<str name="analyzerFieldType">opennlp-en-tokenization</str>
|
||||||
<str name="source">summary</str>
|
<str name="source">summary</str>
|
||||||
<str name="dest">summary_{EntityType}_s</str>
|
<str name="dest">summary_{EntityType}_s</str>
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
55e39e6b46e71f35229cdd6950e72d8cce3b5fd4
|
|
|
@ -1,202 +0,0 @@
|
||||||
|
|
||||||
Apache License
|
|
||||||
Version 2.0, January 2004
|
|
||||||
http://www.apache.org/licenses/
|
|
||||||
|
|
||||||
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
||||||
|
|
||||||
1. Definitions.
|
|
||||||
|
|
||||||
"License" shall mean the terms and conditions for use, reproduction,
|
|
||||||
and distribution as defined by Sections 1 through 9 of this document.
|
|
||||||
|
|
||||||
"Licensor" shall mean the copyright owner or entity authorized by
|
|
||||||
the copyright owner that is granting the License.
|
|
||||||
|
|
||||||
"Legal Entity" shall mean the union of the acting entity and all
|
|
||||||
other entities that control, are controlled by, or are under common
|
|
||||||
control with that entity. For the purposes of this definition,
|
|
||||||
"control" means (i) the power, direct or indirect, to cause the
|
|
||||||
direction or management of such entity, whether by contract or
|
|
||||||
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
||||||
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
||||||
|
|
||||||
"You" (or "Your") shall mean an individual or Legal Entity
|
|
||||||
exercising permissions granted by this License.
|
|
||||||
|
|
||||||
"Source" form shall mean the preferred form for making modifications,
|
|
||||||
including but not limited to software source code, documentation
|
|
||||||
source, and configuration files.
|
|
||||||
|
|
||||||
"Object" form shall mean any form resulting from mechanical
|
|
||||||
transformation or translation of a Source form, including but
|
|
||||||
not limited to compiled object code, generated documentation,
|
|
||||||
and conversions to other media types.
|
|
||||||
|
|
||||||
"Work" shall mean the work of authorship, whether in Source or
|
|
||||||
Object form, made available under the License, as indicated by a
|
|
||||||
copyright notice that is included in or attached to the work
|
|
||||||
(an example is provided in the Appendix below).
|
|
||||||
|
|
||||||
"Derivative Works" shall mean any work, whether in Source or Object
|
|
||||||
form, that is based on (or derived from) the Work and for which the
|
|
||||||
editorial revisions, annotations, elaborations, or other modifications
|
|
||||||
represent, as a whole, an original work of authorship. For the purposes
|
|
||||||
of this License, Derivative Works shall not include works that remain
|
|
||||||
separable from, or merely link (or bind by name) to the interfaces of,
|
|
||||||
the Work and Derivative Works thereof.
|
|
||||||
|
|
||||||
"Contribution" shall mean any work of authorship, including
|
|
||||||
the original version of the Work and any modifications or additions
|
|
||||||
to that Work or Derivative Works thereof, that is intentionally
|
|
||||||
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
||||||
or by an individual or Legal Entity authorized to submit on behalf of
|
|
||||||
the copyright owner. For the purposes of this definition, "submitted"
|
|
||||||
means any form of electronic, verbal, or written communication sent
|
|
||||||
to the Licensor or its representatives, including but not limited to
|
|
||||||
communication on electronic mailing lists, source code control systems,
|
|
||||||
and issue tracking systems that are managed by, or on behalf of, the
|
|
||||||
Licensor for the purpose of discussing and improving the Work, but
|
|
||||||
excluding communication that is conspicuously marked or otherwise
|
|
||||||
designated in writing by the copyright owner as "Not a Contribution."
|
|
||||||
|
|
||||||
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
||||||
on behalf of whom a Contribution has been received by Licensor and
|
|
||||||
subsequently incorporated within the Work.
|
|
||||||
|
|
||||||
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
||||||
this License, each Contributor hereby grants to You a perpetual,
|
|
||||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
||||||
copyright license to reproduce, prepare Derivative Works of,
|
|
||||||
publicly display, publicly perform, sublicense, and distribute the
|
|
||||||
Work and such Derivative Works in Source or Object form.
|
|
||||||
|
|
||||||
3. Grant of Patent License. Subject to the terms and conditions of
|
|
||||||
this License, each Contributor hereby grants to You a perpetual,
|
|
||||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
||||||
(except as stated in this section) patent license to make, have made,
|
|
||||||
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
||||||
where such license applies only to those patent claims licensable
|
|
||||||
by such Contributor that are necessarily infringed by their
|
|
||||||
Contribution(s) alone or by combination of their Contribution(s)
|
|
||||||
with the Work to which such Contribution(s) was submitted. If You
|
|
||||||
institute patent litigation against any entity (including a
|
|
||||||
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
||||||
or a Contribution incorporated within the Work constitutes direct
|
|
||||||
or contributory patent infringement, then any patent licenses
|
|
||||||
granted to You under this License for that Work shall terminate
|
|
||||||
as of the date such litigation is filed.
|
|
||||||
|
|
||||||
4. Redistribution. You may reproduce and distribute copies of the
|
|
||||||
Work or Derivative Works thereof in any medium, with or without
|
|
||||||
modifications, and in Source or Object form, provided that You
|
|
||||||
meet the following conditions:
|
|
||||||
|
|
||||||
(a) You must give any other recipients of the Work or
|
|
||||||
Derivative Works a copy of this License; and
|
|
||||||
|
|
||||||
(b) You must cause any modified files to carry prominent notices
|
|
||||||
stating that You changed the files; and
|
|
||||||
|
|
||||||
(c) You must retain, in the Source form of any Derivative Works
|
|
||||||
that You distribute, all copyright, patent, trademark, and
|
|
||||||
attribution notices from the Source form of the Work,
|
|
||||||
excluding those notices that do not pertain to any part of
|
|
||||||
the Derivative Works; and
|
|
||||||
|
|
||||||
(d) If the Work includes a "NOTICE" text file as part of its
|
|
||||||
distribution, then any Derivative Works that You distribute must
|
|
||||||
include a readable copy of the attribution notices contained
|
|
||||||
within such NOTICE file, excluding those notices that do not
|
|
||||||
pertain to any part of the Derivative Works, in at least one
|
|
||||||
of the following places: within a NOTICE text file distributed
|
|
||||||
as part of the Derivative Works; within the Source form or
|
|
||||||
documentation, if provided along with the Derivative Works; or,
|
|
||||||
within a display generated by the Derivative Works, if and
|
|
||||||
wherever such third-party notices normally appear. The contents
|
|
||||||
of the NOTICE file are for informational purposes only and
|
|
||||||
do not modify the License. You may add Your own attribution
|
|
||||||
notices within Derivative Works that You distribute, alongside
|
|
||||||
or as an addendum to the NOTICE text from the Work, provided
|
|
||||||
that such additional attribution notices cannot be construed
|
|
||||||
as modifying the License.
|
|
||||||
|
|
||||||
You may add Your own copyright statement to Your modifications and
|
|
||||||
may provide additional or different license terms and conditions
|
|
||||||
for use, reproduction, or distribution of Your modifications, or
|
|
||||||
for any such Derivative Works as a whole, provided Your use,
|
|
||||||
reproduction, and distribution of the Work otherwise complies with
|
|
||||||
the conditions stated in this License.
|
|
||||||
|
|
||||||
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
||||||
any Contribution intentionally submitted for inclusion in the Work
|
|
||||||
by You to the Licensor shall be under the terms and conditions of
|
|
||||||
this License, without any additional terms or conditions.
|
|
||||||
Notwithstanding the above, nothing herein shall supersede or modify
|
|
||||||
the terms of any separate license agreement you may have executed
|
|
||||||
with Licensor regarding such Contributions.
|
|
||||||
|
|
||||||
6. Trademarks. This License does not grant permission to use the trade
|
|
||||||
names, trademarks, service marks, or product names of the Licensor,
|
|
||||||
except as required for reasonable and customary use in describing the
|
|
||||||
origin of the Work and reproducing the content of the NOTICE file.
|
|
||||||
|
|
||||||
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
||||||
agreed to in writing, Licensor provides the Work (and each
|
|
||||||
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
||||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
||||||
implied, including, without limitation, any warranties or conditions
|
|
||||||
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
||||||
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
||||||
appropriateness of using or redistributing the Work and assume any
|
|
||||||
risks associated with Your exercise of permissions under this License.
|
|
||||||
|
|
||||||
8. Limitation of Liability. In no event and under no legal theory,
|
|
||||||
whether in tort (including negligence), contract, or otherwise,
|
|
||||||
unless required by applicable law (such as deliberate and grossly
|
|
||||||
negligent acts) or agreed to in writing, shall any Contributor be
|
|
||||||
liable to You for damages, including any direct, indirect, special,
|
|
||||||
incidental, or consequential damages of any character arising as a
|
|
||||||
result of this License or out of the use or inability to use the
|
|
||||||
Work (including but not limited to damages for loss of goodwill,
|
|
||||||
work stoppage, computer failure or malfunction, or any and all
|
|
||||||
other commercial damages or losses), even if such Contributor
|
|
||||||
has been advised of the possibility of such damages.
|
|
||||||
|
|
||||||
9. Accepting Warranty or Additional Liability. While redistributing
|
|
||||||
the Work or Derivative Works thereof, You may choose to offer,
|
|
||||||
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
||||||
or other liability obligations and/or rights consistent with this
|
|
||||||
License. However, in accepting such obligations, You may act only
|
|
||||||
on Your own behalf and on Your sole responsibility, not on behalf
|
|
||||||
of any other Contributor, and only if You agree to indemnify,
|
|
||||||
defend, and hold each Contributor harmless for any liability
|
|
||||||
incurred by, or claims asserted against, such Contributor by reason
|
|
||||||
of your accepting any such warranty or additional liability.
|
|
||||||
|
|
||||||
END OF TERMS AND CONDITIONS
|
|
||||||
|
|
||||||
APPENDIX: How to apply the Apache License to your work.
|
|
||||||
|
|
||||||
To apply the Apache License to your work, attach the following
|
|
||||||
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
||||||
replaced with your own identifying information. (Don't include
|
|
||||||
the brackets!) The text should be enclosed in the appropriate
|
|
||||||
comment syntax for the file format. We also recommend that a
|
|
||||||
file or class name and description of purpose be included on the
|
|
||||||
same "printed page" as the copyright notice for easier
|
|
||||||
identification within third-party archives.
|
|
||||||
|
|
||||||
Copyright [yyyy] [name of copyright owner]
|
|
||||||
|
|
||||||
Licensed under the Apache License, Version 2.0 (the "License");
|
|
||||||
you may not use this file except in compliance with the License.
|
|
||||||
You may obtain a copy of the License at
|
|
||||||
|
|
||||||
http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
|
|
||||||
Unless required by applicable law or agreed to in writing, software
|
|
||||||
distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
See the License for the specific language governing permissions and
|
|
||||||
limitations under the License.
|
|
|
@ -1,6 +0,0 @@
|
||||||
|
|
||||||
Apache OpenNLP Maxent
|
|
||||||
Copyright 2013 The Apache Software Foundation
|
|
||||||
|
|
||||||
This product includes software developed at
|
|
||||||
The Apache Software Foundation (http://www.apache.org/).
|
|
|
@ -1 +0,0 @@
|
||||||
dc1dd0bfdee4a4bc98924180da5a8e61b3a50bdd
|
|
|
@ -0,0 +1 @@
|
||||||
|
219011f318812aa3aa88a2134721549fcc3cb56a
|
Loading…
Reference in New Issue