Ausgangsrechnungsworkflow
This commit is contained in:
parent
190ef5776b
commit
09cb832173
23 changed files with 88402 additions and 83656 deletions
|
|
@ -1,6 +1,12 @@
|
|||
# Versionen
|
||||
|
||||
### 1.2.7 (Development)
|
||||
### 1.2.8 (Development)
|
||||
|
||||
Neue KI Version
|
||||
|
||||
Rechnungasausgangsworkflow
|
||||
|
||||
### 1.2.7
|
||||
|
||||
Erweiterte Kreditoren Verwaltung. Es können bis zu 4 IBAN/BIC Kombinationen pro Kreditor erfasst werden.
|
||||
|
||||
|
|
|
|||
|
|
@ -70,7 +70,9 @@ services:
|
|||
###############################################
|
||||
imixs-ml-spacy:
|
||||
#image: imixs/imixs-ml-spacy:1.1.1
|
||||
image: imixs/imixs-ml-spacy:1.1.4
|
||||
#image: imixs/imixs-ml-spacy:1.1.4
|
||||
#image: imixs/imixs-ml-spacy:1.1.6
|
||||
image: imixs/imixs-ml-spacy:latest
|
||||
environment:
|
||||
PYTHONUNBUFFERED: 1
|
||||
TZ: "Europe/Berlin"
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ gpu_allocator = null
|
|||
|
||||
[nlp]
|
||||
lang = "de"
|
||||
pipeline = ["ner"]
|
||||
pipeline = ["entity_ruler","ner"]
|
||||
disabled = []
|
||||
before_creation = null
|
||||
after_creation = null
|
||||
|
|
@ -20,10 +20,19 @@ tokenizer = {"@tokenizers":"spacy.Tokenizer.v1"}
|
|||
|
||||
[components]
|
||||
|
||||
[components.entity_ruler]
|
||||
factory = "entity_ruler"
|
||||
ent_id_sep = "||"
|
||||
overwrite_ents = false
|
||||
phrase_matcher_attr = null
|
||||
scorer = {"@scorers":"spacy.entity_ruler_scorer.v1"}
|
||||
validate = false
|
||||
|
||||
[components.ner]
|
||||
factory = "ner"
|
||||
incorrect_spans_key = null
|
||||
moves = null
|
||||
scorer = {"@scorers":"spacy.ner_scorer.v1"}
|
||||
update_with_oracle_cut_size = 100
|
||||
|
||||
[components.ner.model]
|
||||
|
|
|
|||
|
|
@ -2,20 +2,24 @@
|
|||
"lang":"de",
|
||||
"name":"pipeline",
|
||||
"version":"0.0.0",
|
||||
"spacy_version":">=3.1.1,<3.2.0",
|
||||
"spacy_version":">=3.4.1,<3.5.0",
|
||||
"description":"",
|
||||
"author":"",
|
||||
"email":"",
|
||||
"url":"",
|
||||
"license":"",
|
||||
"spacy_git_version":"ffaead8fe",
|
||||
"spacy_git_version":"Unknown",
|
||||
"vectors":{
|
||||
"width":0,
|
||||
"vectors":0,
|
||||
"keys":0,
|
||||
"name":null
|
||||
"name":null,
|
||||
"mode":"default"
|
||||
},
|
||||
"labels":{
|
||||
"entity_ruler":[
|
||||
|
||||
],
|
||||
"ner":[
|
||||
"cdtr.bic",
|
||||
"cdtr.iban",
|
||||
|
|
@ -26,15 +30,14 @@
|
|||
]
|
||||
},
|
||||
"pipeline":[
|
||||
"entity_ruler",
|
||||
"ner"
|
||||
],
|
||||
"components":[
|
||||
"entity_ruler",
|
||||
"ner"
|
||||
],
|
||||
"disabled":[
|
||||
|
||||
],
|
||||
"_sourced_vectors_hashes":{
|
||||
|
||||
}
|
||||
]
|
||||
}
|
||||
Binary file not shown.
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load diff
3
models/invoice-de-0.1.0/vocab/vectors.cfg
Normal file
3
models/invoice-de-0.1.0/vocab/vectors.cfg
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"mode":"default"
|
||||
}
|
||||
127
models/invoice-de-0.1.0_2022_01_01/config.cfg
Normal file
127
models/invoice-de-0.1.0_2022_01_01/config.cfg
Normal file
|
|
@ -0,0 +1,127 @@
|
|||
[paths]
|
||||
train = null
|
||||
dev = null
|
||||
vectors = null
|
||||
init_tok2vec = null
|
||||
|
||||
[system]
|
||||
seed = 0
|
||||
gpu_allocator = null
|
||||
|
||||
[nlp]
|
||||
lang = "de"
|
||||
pipeline = ["ner"]
|
||||
disabled = []
|
||||
before_creation = null
|
||||
after_creation = null
|
||||
after_pipeline_creation = null
|
||||
batch_size = 1000
|
||||
tokenizer = {"@tokenizers":"spacy.Tokenizer.v1"}
|
||||
|
||||
[components]
|
||||
|
||||
[components.ner]
|
||||
factory = "ner"
|
||||
incorrect_spans_key = null
|
||||
moves = null
|
||||
update_with_oracle_cut_size = 100
|
||||
|
||||
[components.ner.model]
|
||||
@architectures = "spacy.TransitionBasedParser.v2"
|
||||
state_type = "ner"
|
||||
extra_state_tokens = false
|
||||
hidden_width = 64
|
||||
maxout_pieces = 2
|
||||
use_upper = true
|
||||
nO = null
|
||||
|
||||
[components.ner.model.tok2vec]
|
||||
@architectures = "spacy.HashEmbedCNN.v2"
|
||||
pretrained_vectors = null
|
||||
width = 96
|
||||
depth = 4
|
||||
embed_size = 2000
|
||||
window_size = 1
|
||||
maxout_pieces = 3
|
||||
subword_features = true
|
||||
|
||||
[corpora]
|
||||
|
||||
[corpora.dev]
|
||||
@readers = "spacy.Corpus.v1"
|
||||
path = ${paths.dev}
|
||||
gold_preproc = false
|
||||
max_length = 0
|
||||
limit = 0
|
||||
augmenter = null
|
||||
|
||||
[corpora.train]
|
||||
@readers = "spacy.Corpus.v1"
|
||||
path = ${paths.train}
|
||||
gold_preproc = false
|
||||
max_length = 0
|
||||
limit = 0
|
||||
augmenter = null
|
||||
|
||||
[training]
|
||||
seed = ${system.seed}
|
||||
gpu_allocator = ${system.gpu_allocator}
|
||||
dropout = 0.1
|
||||
accumulate_gradient = 1
|
||||
patience = 1600
|
||||
max_epochs = 0
|
||||
max_steps = 20000
|
||||
eval_frequency = 200
|
||||
frozen_components = []
|
||||
annotating_components = []
|
||||
dev_corpus = "corpora.dev"
|
||||
train_corpus = "corpora.train"
|
||||
before_to_disk = null
|
||||
|
||||
[training.batcher]
|
||||
@batchers = "spacy.batch_by_words.v1"
|
||||
discard_oversize = false
|
||||
tolerance = 0.2
|
||||
get_length = null
|
||||
|
||||
[training.batcher.size]
|
||||
@schedules = "compounding.v1"
|
||||
start = 100
|
||||
stop = 1000
|
||||
compound = 1.001
|
||||
t = 0.0
|
||||
|
||||
[training.logger]
|
||||
@loggers = "spacy.ConsoleLogger.v1"
|
||||
progress_bar = false
|
||||
|
||||
[training.optimizer]
|
||||
@optimizers = "Adam.v1"
|
||||
beta1 = 0.9
|
||||
beta2 = 0.999
|
||||
L2_is_weight_decay = true
|
||||
L2 = 0.01
|
||||
grad_clip = 1.0
|
||||
use_averages = false
|
||||
eps = 0.00000001
|
||||
learn_rate = 0.001
|
||||
|
||||
[training.score_weights]
|
||||
ents_f = 1.0
|
||||
ents_p = 0.0
|
||||
ents_r = 0.0
|
||||
ents_per_type = null
|
||||
|
||||
[pretraining]
|
||||
|
||||
[initialize]
|
||||
vectors = ${paths.vectors}
|
||||
init_tok2vec = ${paths.init_tok2vec}
|
||||
vocab_data = null
|
||||
lookups = null
|
||||
before_init = null
|
||||
after_init = null
|
||||
|
||||
[initialize.components]
|
||||
|
||||
[initialize.tokenizer]
|
||||
40
models/invoice-de-0.1.0_2022_01_01/meta.json
Normal file
40
models/invoice-de-0.1.0_2022_01_01/meta.json
Normal file
|
|
@ -0,0 +1,40 @@
|
|||
{
|
||||
"lang":"de",
|
||||
"name":"pipeline",
|
||||
"version":"0.0.0",
|
||||
"spacy_version":">=3.1.1,<3.2.0",
|
||||
"description":"",
|
||||
"author":"",
|
||||
"email":"",
|
||||
"url":"",
|
||||
"license":"",
|
||||
"spacy_git_version":"ffaead8fe",
|
||||
"vectors":{
|
||||
"width":0,
|
||||
"vectors":0,
|
||||
"keys":0,
|
||||
"name":null
|
||||
},
|
||||
"labels":{
|
||||
"ner":[
|
||||
"cdtr.bic",
|
||||
"cdtr.iban",
|
||||
"cdtr.name",
|
||||
"invoice.date",
|
||||
"invoice.number",
|
||||
"invoice.total"
|
||||
]
|
||||
},
|
||||
"pipeline":[
|
||||
"ner"
|
||||
],
|
||||
"components":[
|
||||
"ner"
|
||||
],
|
||||
"disabled":[
|
||||
|
||||
],
|
||||
"_sourced_vectors_hashes":{
|
||||
|
||||
}
|
||||
}
|
||||
13
models/invoice-de-0.1.0_2022_01_01/ner/cfg
Normal file
13
models/invoice-de-0.1.0_2022_01_01/ner/cfg
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
{
|
||||
"moves":null,
|
||||
"update_with_oracle_cut_size":100,
|
||||
"multitasks":[
|
||||
|
||||
],
|
||||
"min_action_freq":1,
|
||||
"learn_tokens":false,
|
||||
"beam_width":1,
|
||||
"beam_density":0.0,
|
||||
"beam_update_prob":0.0,
|
||||
"incorrect_spans_key":null
|
||||
}
|
||||
BIN
models/invoice-de-0.1.0_2022_01_01/ner/model
Normal file
BIN
models/invoice-de-0.1.0_2022_01_01/ner/model
Normal file
Binary file not shown.
1
models/invoice-de-0.1.0_2022_01_01/ner/moves
Normal file
1
models/invoice-de-0.1.0_2022_01_01/ner/moves
Normal file
|
|
@ -0,0 +1 @@
|
|||
‚¥movesÚÄ{"0":{},"1":{"cdtr.name":-1,"cdtr.iban":-2,"cdtr.bic":-3,"invoice.total":-4,"invoice.date":-5,"invoice.number":-6},"2":{"cdtr.name":-1,"cdtr.iban":-2,"cdtr.bic":-3,"invoice.total":-4,"invoice.date":-5,"invoice.number":-6},"3":{"cdtr.name":-1,"cdtr.iban":-2,"cdtr.bic":-3,"invoice.total":-4,"invoice.date":-5,"invoice.number":-6},"4":{"":1,"cdtr.name":-1,"cdtr.iban":-2,"cdtr.bic":-3,"invoice.total":-4,"invoice.date":-5,"invoice.number":-6},"5":{"":1}}£cfg<66>§neg_keyÀ
|
||||
3
models/invoice-de-0.1.0_2022_01_01/tokenizer
Normal file
3
models/invoice-de-0.1.0_2022_01_01/tokenizer
Normal file
File diff suppressed because one or more lines are too long
1
models/invoice-de-0.1.0_2022_01_01/vocab/key2row
Normal file
1
models/invoice-de-0.1.0_2022_01_01/vocab/key2row
Normal file
|
|
@ -0,0 +1 @@
|
|||
<EFBFBD>
|
||||
1
models/invoice-de-0.1.0_2022_01_01/vocab/lookups.bin
Normal file
1
models/invoice-de-0.1.0_2022_01_01/vocab/lookups.bin
Normal file
|
|
@ -0,0 +1 @@
|
|||
<EFBFBD>
|
||||
85965
models/invoice-de-0.1.0_2022_01_01/vocab/strings.json
Normal file
85965
models/invoice-de-0.1.0_2022_01_01/vocab/strings.json
Normal file
File diff suppressed because it is too large
Load diff
BIN
models/invoice-de-0.1.0_2022_01_01/vocab/vectors
Normal file
BIN
models/invoice-de-0.1.0_2022_01_01/vocab/vectors
Normal file
Binary file not shown.
|
|
@ -7,10 +7,10 @@
|
|||
<item name="workflow.userid"><value xsi:type="xs:string">admin</value></item>
|
||||
<item name="workflow.password"><value xsi:type="xs:string">imixs4.null</value></item>
|
||||
|
||||
<!-- Erledigte Rechnungen -->
|
||||
<item name="workflow.query"><value xsi:type="xs:string">($workflowgroup:"Rechnungseingang" OR $workflowgroup:"Sachrechnung") AND ($taskid:5900)</value></item>
|
||||
<!-- Erledigte Rechnungen OR $workflowgroup:"Sachrechnung" -->
|
||||
<item name="workflow.query"><value xsi:type="xs:string">($workflowgroup:"Rechnungseingang") AND ($taskid:5900)</value></item>
|
||||
|
||||
<item name="workflow.pagesize"><value xsi:type="xs:int">500</value></item>
|
||||
<item name="workflow.pagesize"><value xsi:type="xs:int">10</value></item>
|
||||
<item name="workflow.pageindex"><value xsi:type="xs:int">0</value></item>
|
||||
<item name="workflow.entities">
|
||||
<value xsi:type="xs:string">cdtr.name</value>
|
||||
|
|
@ -39,7 +39,7 @@
|
|||
<item name="ml.training.filepattern"><value xsi:type="xs:string">.pdf|.PDF</value></item>
|
||||
<!-- LOW | GOOD -->
|
||||
<item name="ml.training.quality"><value xsi:type="xs:string">LOW</value></item>
|
||||
<item name="ml.training.iterations"><value xsi:type="xs:string">10</value></item>
|
||||
<item name="ml.training.iterations"><value xsi:type="xs:string">1</value></item>
|
||||
<item name="ml.training.dropoutrate"><value xsi:type="xs:string">0.25</value></item>
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -2,10 +2,12 @@
|
|||
<document xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xmlns:xs="http://www.w3.org/2001/XMLSchema">
|
||||
|
||||
<!-- Workflow Instance -->
|
||||
<item name="workflow.endpoint"><value xsi:type="xs:string">https://alexander-logistics.office-workflow.de/api/</value></item>
|
||||
<!-- Workflow Instance
|
||||
https://alexander-logistics.office-workflow.de/api/
|
||||
-->
|
||||
<item name="workflow.endpoint"><value xsi:type="xs:string">http://app:8080/api/</value></item>
|
||||
<item name="workflow.userid"><value xsi:type="xs:string">admin</value></item>
|
||||
<item name="workflow.password"><value xsi:type="xs:string">imixs4.null</value></item>
|
||||
<item name="workflow.password"><value xsi:type="xs:string">adminadmin</value></item>
|
||||
|
||||
<!-- -->
|
||||
<item name="workflow.query"><value xsi:type="xs:string">($uniqueid:f4eaceda-f28a-4394-928e-1a05daaf2760) OR ($uniqueid:a5d1e7fe-d74a-4fa2-9b06-3221865759fa) OR ($uniqueid:c0290497-f613-4492-81b6-4ae1e1680029) OR ($uniqueid:d8e3fce4-d11c-46a4-8ba0-369b4c6e902f) OR ($uniqueid:8b766f35-828a-41f1-be04-00b4b62da4d0)</value></item>
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
<parent>
|
||||
<artifactId>office-alexander-logistics</artifactId>
|
||||
<groupId>com.alexander-logistics</groupId>
|
||||
<version>1.2.7</version>
|
||||
<version>1.2.8</version>
|
||||
</parent>
|
||||
<artifactId>office-alexander-logistics-app</artifactId>
|
||||
<packaging>war</packaging>
|
||||
|
|
|
|||
2
pom.xml
2
pom.xml
|
|
@ -4,7 +4,7 @@
|
|||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>com.alexander-logistics</groupId>
|
||||
<artifactId>office-alexander-logistics</artifactId>
|
||||
<version>1.2.7</version>
|
||||
<version>1.2.8</version>
|
||||
<packaging>pom</packaging>
|
||||
<name>Imixs Office Workflow - Custom Build</name>
|
||||
|
||||
|
|
|
|||
2110
workflow/rechnungsausgang-de-1.0.0.bpmn
Normal file
2110
workflow/rechnungsausgang-de-1.0.0.bpmn
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue