0 / 0
Go back to the English version of the documentation
Właściwości węzła sequencenode
Last updated: 04 lip 2023
Właściwości węzła sequencenode

Ikona węzła sekwencjiWęzeł Sekwencje wykrywa reguły asocjacyjne w danych sekwencyjnych lub zorientowanych czasowo. Sekwencja to lista zbiorów elementów z tendencją do występowania w przewidywalnej kolejności. Na przykład klient dokonujący zakupu brzytwy i balsamu po goleniu przy następnej wizycie w sklepie może dokonać zakupu kremu po goleniu. Węzeł Sekwencje bazuje na algorytmie reguł asocjacyjnych CARMA, który korzysta z efektywnej metody dwu przejść do znajdowania sekwencji.

Przykład

node = stream.create("sequence", "My node")
# "Fields" tab
node.setPropertyValue("id_field", "Age")
node.setPropertyValue("contiguous", True)
node.setPropertyValue("use_time_field", True)
node.setPropertyValue("time_field", "Date1")
node.setPropertyValue("content_fields", ["Drug", "BP"])
node.setPropertyValue("partition", "Test")
# "Model" tab
node.setPropertyValue("use_model_name", True)
node.setPropertyValue("model_name", "Sequence_test")
node.setPropertyValue("use_partitioned_data", False)
node.setPropertyValue("min_supp", 15.0)
node.setPropertyValue("min_conf", 14.0)
node.setPropertyValue("max_size", 7)
node.setPropertyValue("max_predictions", 5)
# "Expert" tab
node.setPropertyValue("mode", "Expert")
node.setPropertyValue("use_max_duration", True)
node.setPropertyValue("max_duration", 3.0)
node.setPropertyValue("use_pruning", True)
node.setPropertyValue("pruning_value", 4.0)
node.setPropertyValue("set_mem_sequences", True)
node.setPropertyValue("mem_sequences", 5.0)
node.setPropertyValue("use_gaps", True)
node.setPropertyValue("min_item_gap", 20.0)
node.setPropertyValue("max_item_gap", 30.0)
Tabela 1. Właściwości węzła sequencenode
Właściwości węzła sequencenode Wartości Opis właściwości
id_field field (pole) W celu utworzenia modelu Numer konieczne jest określenie zmiennej identyfikacyjnej, opcjonalnej zmiennej czasowej i jednej lub więcej zmiennych zawartości. Zmienne wagi i częstości nie są używane. Więcej informacji na ten temat zawiera sekcja Właściwości wspólnego węzła modelowania .
time_field field (pole)  
use_time_field Flaga  
content_fields [field1 ... pole dn]  
contiguous Flaga  
min_supp Liczba  
min_conf Liczba  
max_size Liczba  
max_predictions Liczba  
mode Simple Expert  
use_max_duration Flaga  
max_duration Liczba  
use_gaps Flaga  
min_item_gap Liczba  
max_item_gap Liczba  
use_pruning Flaga  
pruning_value Liczba  
set_mem_sequences Flaga  
mem_sequences liczba całkowita  
Generative AI search and answer
These answers are generated by a large language model in watsonx.ai based on content from the product documentation. Learn more