predict unemployment rate using neural network

Hi,here is my xml proces:..i wanna know if im doing this right.so many things required as i click run.i want to achieve the best neural network model of my data,performance of my model,the division set, the training and testing performance,when can i say that i already have the best model that i can alreay use for prediction,what is wrong with my data?how do i make the lables?i dont understand it clearly.and more if u can suggest..my target variable is unemployment rate, the rest are independent variables.Can anyone please help me...thank you very much
<?xml version="1.0" encoding="UTF-8"?><process version="8.1.001">
<operator activated="true" class="filter_examples" compatibility="8.1.001" expanded="true" height="103" name="Filter Examples" width="90" x="179" y="136">
<parameter key="parameter_expression" value=""/>
<parameter key="condition_class" value="all"/>
<parameter key="invert_filter" value="false"/>
<list key="filters_list">
<parameter key="filters_entry_key" value="Population.is_not_missing."/>
<parameter key="filters_entry_key" value="Labor force.is_not_missing."/>
<parameter key="filters_entry_key" value="Inflation.is_not_missing."/>
<parameter key="filters_entry_key" value="GDP.is_not_missing."/>
<parameter key="filters_entry_key" value="GNI.is_not_missing."/>
<parameter key="filters_entry_key" value="GDI.is_not_missing."/>
<parameter key="filters_entry_key" value="FOREIGN TRADE.is_not_missing."/>
<parameter key="filters_entry_key" value="INDUSTRY.is_not_missing."/>
<parameter key="filters_entry_key" value="ELEM.is_not_missing."/>
<parameter key="filters_entry_key" value="SECOND.is_not_missing."/>
<parameter key="filters_entry_key" value="HIGHERED.is_not_missing."/>
</list>
<parameter key="filters_logic_and" value="true"/>
<parameter key="filters_check_metadata" value="true"/>
</operator>
</process>
<?xml version="1.0" encoding="UTF-8"?><process version="8.1.001">
<operator activated="true" class="normalize" compatibility="8.1.001" expanded="true" height="103" name="Normalize" width="90" x="179" y="238">
<parameter key="return_preprocessing_model" value="false"/>
<parameter key="create_view" value="false"/>
<parameter key="attribute_filter_type" value="all"/>
<parameter key="attribute" value=""/>
<parameter key="attributes" value=""/>
<parameter key="use_except_expression" value="false"/>
<parameter key="value_type" value="numeric"/>
<parameter key="use_value_type_exception" value="false"/>
<parameter key="except_value_type" value="real"/>
<parameter key="block_type" value="value_series"/>
<parameter key="use_block_type_exception" value="false"/>
<parameter key="except_block_type" value="value_series_end"/>
<parameter key="invert_selection" value="false"/>
<parameter key="include_special_attributes" value="false"/>
<parameter key="method" value="Z-transformation"/>
<parameter key="min" value="0.0"/>
<parameter key="max" value="1.0"/>
<parameter key="allow_negative_values" value="false"/>
</operator>
</process>
<?xml version="1.0" encoding="UTF-8"?><process version="8.1.001">
<operator activated="true" class="set_role" compatibility="8.1.001" expanded="true" height="82" name="Set Role" width="90" x="179" y="340">
<parameter key="attribute_name" value="Unemployment"/>
<parameter key="target_role" value="label"/>
<list key="set_additional_roles">
<parameter key="Population" value="regular"/>
<parameter key="Labor force" value="regular"/>
<parameter key="Inflation" value="regular"/>
<parameter key="GDP" value="regular"/>
<parameter key="GNI" value="regular"/>
<parameter key="GDI" value="regular"/>
<parameter key="FOREIGN TRADE" value="regular"/>
<parameter key="INDUSTRY" value="regular"/>
<parameter key="ELEM" value="regular"/>
<parameter key="SECOND" value="regular"/>
<parameter key="HIGHERED" value="regular"/>
</list>
</operator>
</process>
<?xml version="1.0" encoding="UTF-8"?><process version="8.1.001">
<operator activated="true" class="replace_missing_values" compatibility="8.1.001" expanded="true" height="103" name="Replace Missing Values" width="90" x="313" y="238">
<parameter key="return_preprocessing_model" value="false"/>
<parameter key="create_view" value="false"/>
<parameter key="attribute_filter_type" value="all"/>
<parameter key="attribute" value=""/>
<parameter key="attributes" value=""/>
<parameter key="use_except_expression" value="false"/>
<parameter key="value_type" value="attribute_value"/>
<parameter key="use_value_type_exception" value="false"/>
<parameter key="except_value_type" value="time"/>
<parameter key="block_type" value="attribute_block"/>
<parameter key="use_block_type_exception" value="false"/>
<parameter key="except_block_type" value="value_matrix_row_start"/>
<parameter key="invert_selection" value="false"/>
<parameter key="include_special_attributes" value="false"/>
<parameter key="default" value="average"/>
<list key="columns"/>
</operator>
</process>
<?xml version="1.0" encoding="UTF-8"?><process version="8.1.001">
<operator activated="true" class="split_data" compatibility="8.1.001" expanded="true" height="103" name="Split Data" width="90" x="447" y="289">
<enumeration key="partitions">
<parameter key="ratio" value="0.9"/>
<parameter key="ratio" value="0.1"/>
</enumeration>
<parameter key="sampling_type" value="linear sampling"/>
<parameter key="use_local_random_seed" value="false"/>
<parameter key="local_random_seed" value="1992"/>
</operator>
</process>
<?xml version="1.0" encoding="UTF-8"?><process version="8.1.001">
<operator activated="true" class="neural_net" compatibility="8.1.001" expanded="true" height="82" name="Neural Net" width="90" x="380" y="85">
<list key="hidden_layers"/>
<parameter key="training_cycles" value="500"/>
<parameter key="learning_rate" value="0.3"/>
<parameter key="momentum" value="0.2"/>
<parameter key="decay" value="false"/>
<parameter key="shuffle" value="true"/>
<parameter key="normalize" value="true"/>
<parameter key="error_epsilon" value="1.0E-5"/>
<parameter key="use_local_random_seed" value="false"/>
<parameter key="local_random_seed" value="1992"/>
</operator>
</process>
<?xml version="1.0" encoding="UTF-8"?><process version="8.1.001">
<operator activated="true" class="apply_model" compatibility="8.1.001" expanded="true" height="82" name="Apply Model" width="90" x="514" y="85">
<list key="application_parameters"/>
<parameter key="create_view" value="false"/>
</operator>
</process>
<?xml version="1.0" encoding="UTF-8"?><process version="8.1.001">
<operator activated="true" class="performance" compatibility="8.1.001" expanded="true" height="82" name="Performance" width="90" x="782" y="85">
<parameter key="use_example_weights" value="true"/>
</operator>
</process>
<?xml version="1.0" encoding="UTF-8"?><process version="8.1.001">
<operator activated="true" class="apply_model" compatibility="8.1.001" expanded="true" height="82" name="Apply Model (2)" width="90" x="648" y="289">
<list key="application_parameters"/>
<parameter key="create_view" value="false"/>
</operator>
</process>
<?xml version="1.0" encoding="UTF-8"?><process version="8.1.001">
<operator activated="true" class="performance" compatibility="8.1.001" expanded="true" height="82" name="Performance (2)" width="90" x="849" y="289">
<parameter key="use_example_weights" value="true"/>
</operator>
</process>
<?xml version="1.0" encoding="UTF-8"?><process version="8.1.001">
<operator activated="true" class="retrieve" compatibility="8.1.001" expanded="true" height="68" name="Retrieve MYDATA - Copy (2)" width="90" x="313" y="493">
<parameter key="repository_entry" value="//NewLocalRepository/MYDATA - Copy"/>
</operator>
</process>
<?xml version="1.0" encoding="UTF-8"?><process version="8.1.001">
<operator activated="true" class="filter_examples" compatibility="8.1.001" expanded="true" height="103" name="Filter Examples (2)" width="90" x="447" y="493">
<parameter key="parameter_expression" value=""/>
<parameter key="condition_class" value="all"/>
<parameter key="invert_filter" value="false"/>
<list key="filters_list">
<parameter key="filters_entry_key" value="Unemployment.is_missing."/>
</list>
<parameter key="filters_logic_and" value="true"/>
<parameter key="filters_check_metadata" value="true"/>
</operator>
</process>
<?xml version="1.0" encoding="UTF-8"?><process version="8.1.001">
<operator activated="true" class="normalize" compatibility="8.1.001" expanded="true" height="103" name="Normalize (2)" width="90" x="581" y="493">
<parameter key="return_preprocessing_model" value="false"/>
<parameter key="create_view" value="false"/>
<parameter key="attribute_filter_type" value="all"/>
<parameter key="attribute" value=""/>
<parameter key="attributes" value=""/>
<parameter key="use_except_expression" value="false"/>
<parameter key="value_type" value="numeric"/>
<parameter key="use_value_type_exception" value="false"/>
<parameter key="except_value_type" value="real"/>
<parameter key="block_type" value="value_series"/>
<parameter key="use_block_type_exception" value="false"/>
<parameter key="except_block_type" value="value_series_end"/>
<parameter key="invert_selection" value="false"/>
<parameter key="include_special_attributes" value="false"/>
<parameter key="method" value="Z-transformation"/>
<parameter key="min" value="0.0"/>
<parameter key="max" value="1.0"/>
<parameter key="allow_negative_values" value="false"/>
</operator>
</process>
<?xml version="1.0" encoding="UTF-8"?><process version="8.1.001">
<operator activated="true" class="set_role" compatibility="8.1.001" expanded="true" height="82" name="Set Role (2)" width="90" x="715" y="493">
<parameter key="attribute_name" value="Unemployment"/>
<parameter key="target_role" value="label"/>
<list key="set_additional_roles"/>
</operator>
</process>
<?xml version="1.0" encoding="UTF-8"?><process version="8.1.001">
<operator activated="true" class="replace_missing_values" compatibility="8.1.001" expanded="true" height="103" name="Replace Missing Values (2)" width="90" x="782" y="595">
<parameter key="return_preprocessing_model" value="false"/>
<parameter key="create_view" value="false"/>
<parameter key="attribute_filter_type" value="all"/>
<parameter key="attribute" value=""/>
<parameter key="attributes" value=""/>
<parameter key="use_except_expression" value="false"/>
<parameter key="value_type" value="attribute_value"/>
<parameter key="use_value_type_exception" value="false"/>
<parameter key="except_value_type" value="time"/>
<parameter key="block_type" value="attribute_block"/>
<parameter key="use_block_type_exception" value="false"/>
<parameter key="except_block_type" value="value_matrix_row_start"/>
<parameter key="invert_selection" value="false"/>
<parameter key="include_special_attributes" value="false"/>
<parameter key="default" value="average"/>
<list key="columns"/>
</operator>
</process>
<?xml version="1.0" encoding="UTF-8"?><process version="8.1.001">
<operator activated="true" class="concurrency:cross_validation" compatibility="8.1.001" expanded="true" height="145" name="Cross Validation" width="90" x="916" y="442">
<parameter key="split_on_batch_attribute" value="false"/>
<parameter key="leave_one_out" value="false"/>
<parameter key="number_of_folds" value="10"/>
<parameter key="sampling_type" value="automatic"/>
<parameter key="use_local_random_seed" value="false"/>
<parameter key="local_random_seed" value="1992"/>
<parameter key="enable_parallel_execution" value="true"/>
<process expanded="true">
<operator activated="true" class="neural_net" compatibility="8.1.001" expanded="true" height="82" name="Neural Net (2)" width="90" x="112" y="85">
<list key="hidden_layers"/>
<parameter key="training_cycles" value="500"/>
<parameter key="learning_rate" value="0.3"/>
<parameter key="momentum" value="0.2"/>
<parameter key="decay" value="false"/>
<parameter key="shuffle" value="true"/>
<parameter key="normalize" value="true"/>
<parameter key="error_epsilon" value="1.0E-5"/>
<parameter key="use_local_random_seed" value="false"/>
<parameter key="local_random_seed" value="1992"/>
</operator>
<connect from_port="training set" to_op="Neural Net (2)" to_port="training set"/>
<connect from_op="Neural Net (2)" from_port="model" to_port="model"/>
<connect from_op="Neural Net (2)" from_port="exampleSet" to_port="through 1"/>
<portSpacing port="source_training set" spacing="0"/>
<portSpacing port="sink_model" spacing="0"/>
<portSpacing port="sink_through 1" spacing="0"/>
<portSpacing port="sink_through 2" spacing="0"/>
</process>
<process expanded="true">
<operator activated="true" class="apply_model" compatibility="8.1.001" expanded="true" height="82" name="Apply Model (3)" width="90" x="45" y="34">
<list key="application_parameters"/>
<parameter key="create_view" value="false"/>
</operator>
<operator activated="true" class="performance_classification" compatibility="8.1.001" expanded="true" height="82" name="Performance from Cross Validation" width="90" x="246" y="34">
<parameter key="main_criterion" value="first"/>
<parameter key="accuracy" value="true"/>
<parameter key="classification_error" value="false"/>
<parameter key="kappa" value="false"/>
<parameter key="weighted_mean_recall" value="false"/>
<parameter key="weighted_mean_precision" value="false"/>
<parameter key="spearman_rho" value="false"/>
<parameter key="kendall_tau" value="false"/>
<parameter key="absolute_error" value="false"/>
<parameter key="relative_error" value="false"/>
<parameter key="relative_error_lenient" value="false"/>
<parameter key="relative_error_strict" value="false"/>
<parameter key="normalized_absolute_error" value="false"/>
<parameter key="root_mean_squared_error" value="false"/>
<parameter key="root_relative_squared_error" value="false"/>
<parameter key="squared_error" value="false"/>
<parameter key="correlation" value="false"/>
<parameter key="squared_correlation" value="false"/>
<parameter key="cross-entropy" value="false"/>
<parameter key="margin" value="false"/>
<parameter key="soft_margin_loss" value="false"/>
<parameter key="logistic_loss" value="false"/>
<parameter key="skip_undefined_labels" value="true"/>
<parameter key="use_example_weights" value="true"/>
<list key="class_weights"/>
</operator>
<connect from_port="model" to_op="Apply Model (3)" to_port="model"/>
<connect from_port="test set" to_op="Apply Model (3)" to_port="unlabelled data"/>
<connect from_op="Apply Model (3)" from_port="labelled data" to_op="Performance from Cross Validation" to_port="labelled data"/>
<connect from_op="Performance from Cross Validation" from_port="performance" to_port="performance 1"/>
<portSpacing port="source_model" spacing="0"/>
<portSpacing port="source_test set" spacing="0"/>
<portSpacing port="source_through 1" spacing="0"/>
<portSpacing port="source_through 2" spacing="0"/>
<portSpacing port="sink_test set results" spacing="0"/>
<portSpacing port="sink_performance 1" spacing="0"/>
<portSpacing port="sink_performance 2" spacing="0"/>
</process>
</operator>
</process>
Answers
-
@doeyien your XML is corrupt. Please read this KB article on how to share it correctly. https://community.rapidminer.com/t5/RapidMiner-Studio-Knowledge-Base/How-can-I-share-processes-without-RapidMiner-Server/ta-p/37047
1 -
<?xml version="1.0" encoding="UTF-8"?><process version="8.1.001">
<operator activated="true" class="retrieve" compatibility="8.1.001" expanded="true" height="68" name="Retrieve MYDATA - Copy" width="90" x="45" y="238">
<parameter key="repository_entry" value="//NewLocalRepository/MYDATA - Copy"/>
</operator>
</process>
<?xml version="1.0" encoding="UTF-8"?><process version="8.1.001">
<operator activated="true" class="filter_examples" compatibility="8.1.001" expanded="true" height="103" name="Filter Examples" width="90" x="179" y="238">
<parameter key="parameter_expression" value=""/>
<parameter key="condition_class" value="all"/>
<parameter key="invert_filter" value="false"/>
<list key="filters_list">
<parameter key="filters_entry_key" value="Population.is_not_missing."/>
<parameter key="filters_entry_key" value="Labor force.is_not_missing."/>
<parameter key="filters_entry_key" value="Inflation.is_not_missing."/>
<parameter key="filters_entry_key" value="GDP.is_not_missing."/>
<parameter key="filters_entry_key" value="GNI.is_not_missing."/>
<parameter key="filters_entry_key" value="GDI.is_not_missing."/>
<parameter key="filters_entry_key" value="FOREIGN TRADE.is_not_missing."/>
<parameter key="filters_entry_key" value="INDUSTRY.is_not_missing."/>
<parameter key="filters_entry_key" value="ELEM.is_not_missing."/>
<parameter key="filters_entry_key" value="SECOND.is_not_missing."/>
<parameter key="filters_entry_key" value="HIGHERED.is_not_missing."/>
</list>
<parameter key="filters_logic_and" value="true"/>
<parameter key="filters_check_metadata" value="true"/>
</operator>
</process>
<?xml version="1.0" encoding="UTF-8"?><process version="8.1.001">
<operator activated="true" class="normalize" compatibility="8.1.001" expanded="true" height="103" name="Normalize" width="90" x="45" y="340">
<parameter key="return_preprocessing_model" value="false"/>
<parameter key="create_view" value="false"/>
<parameter key="attribute_filter_type" value="all"/>
<parameter key="attribute" value=""/>
<parameter key="attributes" value=""/>
<parameter key="use_except_expression" value="false"/>
<parameter key="value_type" value="numeric"/>
<parameter key="use_value_type_exception" value="false"/>
<parameter key="except_value_type" value="real"/>
<parameter key="block_type" value="value_series"/>
<parameter key="use_block_type_exception" value="false"/>
<parameter key="except_block_type" value="value_series_end"/>
<parameter key="invert_selection" value="false"/>
<parameter key="include_special_attributes" value="false"/>
<parameter key="method" value="Z-transformation"/>
<parameter key="min" value="0.0"/>
<parameter key="max" value="1.0"/>
<parameter key="allow_negative_values" value="false"/>
</operator>
</process>
<?xml version="1.0" encoding="UTF-8"?><process version="8.1.001">
<operator activated="true" class="set_role" compatibility="8.1.001" expanded="true" height="82" name="Set Role" width="90" x="179" y="340">
<parameter key="attribute_name" value="Unemployment"/>
<parameter key="target_role" value="label"/>
<list key="set_additional_roles">
<parameter key="Population" value="regular"/>
<parameter key="Labor force" value="regular"/>
<parameter key="Inflation" value="regular"/>
<parameter key="GDP" value="regular"/>
<parameter key="GNI" value="regular"/>
<parameter key="GDI" value="regular"/>
<parameter key="FOREIGN TRADE" value="regular"/>
<parameter key="INDUSTRY" value="regular"/>
<parameter key="ELEM" value="regular"/>
<parameter key="SECOND" value="regular"/>
<parameter key="HIGHERED" value="regular"/>
</list>
</operator>
</process>
<?xml version="1.0" encoding="UTF-8"?><process version="8.1.001">
<operator activated="true" class="replace_missing_values" compatibility="8.1.001" expanded="true" height="103" name="Replace Missing Values" width="90" x="313" y="340">
<parameter key="return_preprocessing_model" value="false"/>
<parameter key="create_view" value="false"/>
<parameter key="attribute_filter_type" value="all"/>
<parameter key="attribute" value=""/>
<parameter key="attributes" value=""/>
<parameter key="use_except_expression" value="false"/>
<parameter key="value_type" value="attribute_value"/>
<parameter key="use_value_type_exception" value="false"/>
<parameter key="except_value_type" value="time"/>
<parameter key="block_type" value="attribute_block"/>
<parameter key="use_block_type_exception" value="false"/>
<parameter key="except_block_type" value="value_matrix_row_start"/>
<parameter key="invert_selection" value="false"/>
<parameter key="include_special_attributes" value="false"/>
<parameter key="default" value="average"/>
<list key="columns"/>
</operator>
</process>
<?xml version="1.0" encoding="UTF-8"?><process version="8.1.001">
<operator activated="true" class="split_data" compatibility="8.1.001" expanded="true" height="103" name="Split Data" width="90" x="447" y="289">
<enumeration key="partitions">
<parameter key="ratio" value="0.9"/>
<parameter key="ratio" value="0.1"/>
</enumeration>
<parameter key="sampling_type" value="linear sampling"/>
<parameter key="use_local_random_seed" value="false"/>
<parameter key="local_random_seed" value="1992"/>
</operator>
</process>
<?xml version="1.0" encoding="UTF-8"?><process version="8.1.001">
<operator activated="true" class="neural_net" compatibility="8.1.001" expanded="true" height="82" name="Neural Net" width="90" x="380" y="187">
<list key="hidden_layers"/>
<parameter key="training_cycles" value="500"/>
<parameter key="learning_rate" value="0.3"/>
<parameter key="momentum" value="0.2"/>
<parameter key="decay" value="false"/>
<parameter key="shuffle" value="true"/>
<parameter key="normalize" value="true"/>
<parameter key="error_epsilon" value="1.0E-5"/>
<parameter key="use_local_random_seed" value="false"/>
<parameter key="local_random_seed" value="1992"/>
</operator>
</process>
<?xml version="1.0" encoding="UTF-8"?><process version="8.1.001">
<operator activated="true" class="apply_model" compatibility="8.1.001" expanded="true" height="82" name="Apply Model" width="90" x="514" y="85">
<list key="application_parameters"/>
<parameter key="create_view" value="false"/>
</operator>
</process>
<?xml version="1.0" encoding="UTF-8"?><process version="8.1.001">
<operator activated="true" class="apply_model" compatibility="8.1.001" expanded="true" height="82" name="Apply Model (2)" width="90" x="648" y="289">
<list key="application_parameters"/>
<parameter key="create_view" value="false"/>
</operator>
</process>
<?xml version="1.0" encoding="UTF-8"?><process version="8.1.001">
<operator activated="true" class="performance" compatibility="8.1.001" expanded="true" height="82" name="Performance (2)" width="90" x="849" y="289">
<parameter key="use_example_weights" value="true"/>
</operator>
</process>
<?xml version="1.0" encoding="UTF-8"?><process version="8.1.001">
<operator activated="true" class="performance" compatibility="8.1.001" expanded="true" height="82" name="Performance" width="90" x="782" y="85">
<parameter key="use_example_weights" value="true"/>
</operator>
</process>
<?xml version="1.0" encoding="UTF-8"?><process version="8.1.001">
<operator activated="true" class="retrieve" compatibility="8.1.001" expanded="true" height="68" name="Retrieve MYDATA - Copy (2)" width="90" x="313" y="493">
<parameter key="repository_entry" value="//NewLocalRepository/MYDATA - Copy"/>
</operator>
</process>
<?xml version="1.0" encoding="UTF-8"?><process version="8.1.001">
<operator activated="true" class="filter_examples" compatibility="8.1.001" expanded="true" height="103" name="Filter Examples (2)" width="90" x="447" y="493">
<parameter key="parameter_expression" value=""/>
<parameter key="condition_class" value="all"/>
<parameter key="invert_filter" value="false"/>
<list key="filters_list">
<parameter key="filters_entry_key" value="Unemployment.is_missing."/>
</list>
<parameter key="filters_logic_and" value="true"/>
<parameter key="filters_check_metadata" value="true"/>
</operator>
</process>
<?xml version="1.0" encoding="UTF-8"?><process version="8.1.001">
<operator activated="true" class="normalize" compatibility="8.1.001" expanded="true" height="103" name="Normalize (2)" width="90" x="581" y="493">
<parameter key="return_preprocessing_model" value="false"/>
<parameter key="create_view" value="false"/>
<parameter key="attribute_filter_type" value="all"/>
<parameter key="attribute" value=""/>
<parameter key="attributes" value=""/>
<parameter key="use_except_expression" value="false"/>
<parameter key="value_type" value="numeric"/>
<parameter key="use_value_type_exception" value="false"/>
<parameter key="except_value_type" value="real"/>
<parameter key="block_type" value="value_series"/>
<parameter key="use_block_type_exception" value="false"/>
<parameter key="except_block_type" value="value_series_end"/>
<parameter key="invert_selection" value="false"/>
<parameter key="include_special_attributes" value="false"/>
<parameter key="method" value="Z-transformation"/>
<parameter key="min" value="0.0"/>
<parameter key="max" value="1.0"/>
<parameter key="allow_negative_values" value="false"/>
</operator>
</process>
<?xml version="1.0" encoding="UTF-8"?><process version="8.1.001">
<operator activated="true" class="set_role" compatibility="8.1.001" expanded="true" height="82" name="Set Role (2)" width="90" x="715" y="493">
<parameter key="attribute_name" value="Unemployment"/>
<parameter key="target_role" value="label"/>
<list key="set_additional_roles"/>
</operator>
</process>
<?xml version="1.0" encoding="UTF-8"?><process version="8.1.001">
<operator activated="true" class="replace_missing_values" compatibility="8.1.001" expanded="true" height="103" name="Replace Missing Values (2)" width="90" x="782" y="595">
<parameter key="return_preprocessing_model" value="false"/>
<parameter key="create_view" value="false"/>
<parameter key="attribute_filter_type" value="all"/>
<parameter key="attribute" value=""/>
<parameter key="attributes" value=""/>
<parameter key="use_except_expression" value="false"/>
<parameter key="value_type" value="attribute_value"/>
<parameter key="use_value_type_exception" value="false"/>
<parameter key="except_value_type" value="time"/>
<parameter key="block_type" value="attribute_block"/>
<parameter key="use_block_type_exception" value="false"/>
<parameter key="except_block_type" value="value_matrix_row_start"/>
<parameter key="invert_selection" value="false"/>
<parameter key="include_special_attributes" value="false"/>
<parameter key="default" value="average"/>
<list key="columns"/>
</operator>
</process>
<?xml version="1.0" encoding="UTF-8"?><process version="8.1.001">
<operator activated="true" class="concurrency:cross_validation" compatibility="8.1.001" expanded="true" height="145" name="Cross Validation" width="90" x="916" y="442">
<parameter key="split_on_batch_attribute" value="false"/>
<parameter key="leave_one_out" value="false"/>
<parameter key="number_of_folds" value="10"/>
<parameter key="sampling_type" value="automatic"/>
<parameter key="use_local_random_seed" value="false"/>
<parameter key="local_random_seed" value="1992"/>
<parameter key="enable_parallel_execution" value="true"/>
<process expanded="true">
<operator activated="true" class="neural_net" compatibility="8.1.001" expanded="true" height="82" name="Neural Net (2)" width="90" x="112" y="85">
<list key="hidden_layers"/>
<parameter key="training_cycles" value="500"/>
<parameter key="learning_rate" value="0.3"/>
<parameter key="momentum" value="0.2"/>
<parameter key="decay" value="false"/>
<parameter key="shuffle" value="true"/>
<parameter key="normalize" value="true"/>
<parameter key="error_epsilon" value="1.0E-5"/>
<parameter key="use_local_random_seed" value="false"/>
<parameter key="local_random_seed" value="1992"/>
</operator>
<connect from_port="training set" to_op="Neural Net (2)" to_port="training set"/>
<connect from_op="Neural Net (2)" from_port="model" to_port="model"/>
<connect from_op="Neural Net (2)" from_port="exampleSet" to_port="through 1"/>
<portSpacing port="source_training set" spacing="0"/>
<portSpacing port="sink_model" spacing="0"/>
<portSpacing port="sink_through 1" spacing="0"/>
<portSpacing port="sink_through 2" spacing="0"/>
</process>
<process expanded="true">
<operator activated="true" class="apply_model" compatibility="8.1.001" expanded="true" height="82" name="Apply Model (3)" width="90" x="45" y="34">
<list key="application_parameters"/>
<parameter key="create_view" value="false"/>
</operator>
<operator activated="true" class="performance_classification" compatibility="8.1.001" expanded="true" height="82" name="Performance from Cross Validation" width="90" x="246" y="34">
<parameter key="main_criterion" value="first"/>
<parameter key="accuracy" value="true"/>
<parameter key="classification_error" value="false"/>
<parameter key="kappa" value="false"/>
<parameter key="weighted_mean_recall" value="false"/>
<parameter key="weighted_mean_precision" value="false"/>
<parameter key="spearman_rho" value="false"/>
<parameter key="kendall_tau" value="false"/>
<parameter key="absolute_error" value="false"/>
<parameter key="relative_error" value="false"/>
<parameter key="relative_error_lenient" value="false"/>
<parameter key="relative_error_strict" value="false"/>
<parameter key="normalized_absolute_error" value="false"/>
<parameter key="root_mean_squared_error" value="false"/>
<parameter key="root_relative_squared_error" value="false"/>
<parameter key="squared_error" value="false"/>
<parameter key="correlation" value="false"/>
<parameter key="squared_correlation" value="false"/>
<parameter key="cross-entropy" value="false"/>
<parameter key="margin" value="false"/>
<parameter key="soft_margin_loss" value="false"/>
<parameter key="logistic_loss" value="false"/>
<parameter key="skip_undefined_labels" value="true"/>
<parameter key="use_example_weights" value="true"/>
<list key="class_weights"/>
</operator>
<connect from_port="model" to_op="Apply Model (3)" to_port="model"/>
<connect from_port="test set" to_op="Apply Model (3)" to_port="unlabelled data"/>
<connect from_op="Apply Model (3)" from_port="labelled data" to_op="Performance from Cross Validation" to_port="labelled data"/>
<connect from_op="Performance from Cross Validation" from_port="performance" to_port="performance 1"/>
<portSpacing port="source_model" spacing="0"/>
<portSpacing port="source_test set" spacing="0"/>
<portSpacing port="source_through 1" spacing="0"/>
<portSpacing port="source_through 2" spacing="0"/>
<portSpacing port="sink_test set results" spacing="0"/>
<portSpacing port="sink_performance 1" spacing="0"/>
<portSpacing port="sink_performance 2" spacing="0"/>
</process>
</operator>
</process>i hope this one is already ok..sorry i was ble to click 'accept as solution" earlier...
thanks again...
0 -
i'm sorry if i was able to click "accept solution" earlier,...i was trying to edit my post,..still my problems were mentioned at my post,...this is my xml process:,..i hope this one will work.
<?xml version="1.0" encoding="UTF-8"?><process version="8.1.001">
<context>
<input/>
<output/>
<macros/>
</context>
<operator activated="true" class="process" compatibility="8.1.001" expanded="true" name="Process">
<process expanded="true">
<operator activated="true" class="retrieve" compatibility="8.1.001" expanded="true" height="68" name="Retrieve MYDATA - Copy" width="90" x="45" y="238">
<parameter key="repository_entry" value="//NewLocalRepository/MYDATA - Copy"/>
</operator>
<operator activated="true" class="filter_examples" compatibility="8.1.001" expanded="true" height="103" name="Filter Examples" width="90" x="179" y="238">
<parameter key="condition_class" value="all"/>
<list key="filters_list">
<parameter key="filters_entry_key" value="Population.is_not_missing."/>
<parameter key="filters_entry_key" value="Labor force.is_not_missing."/>
<parameter key="filters_entry_key" value="Inflation.is_not_missing."/>
<parameter key="filters_entry_key" value="GDP.is_not_missing."/>
<parameter key="filters_entry_key" value="GNI.is_not_missing."/>
<parameter key="filters_entry_key" value="GDI.is_not_missing."/>
<parameter key="filters_entry_key" value="FOREIGN TRADE.is_not_missing."/>
<parameter key="filters_entry_key" value="INDUSTRY.is_not_missing."/>
<parameter key="filters_entry_key" value="ELEM.is_not_missing."/>
<parameter key="filters_entry_key" value="SECOND.is_not_missing."/>
<parameter key="filters_entry_key" value="HIGHERED.is_not_missing."/>
</list>
</operator>
<operator activated="true" class="normalize" compatibility="8.1.001" expanded="true" height="103" name="Normalize" width="90" x="45" y="340"/>
<operator activated="true" class="set_role" compatibility="8.1.001" expanded="true" height="82" name="Set Role" width="90" x="179" y="340">
<parameter key="attribute_name" value="Unemployment"/>
<parameter key="target_role" value="label"/>
<list key="set_additional_roles">
<parameter key="Population" value="regular"/>
<parameter key="Labor force" value="regular"/>
<parameter key="Inflation" value="regular"/>
<parameter key="GDP" value="regular"/>
<parameter key="GNI" value="regular"/>
<parameter key="GDI" value="regular"/>
<parameter key="FOREIGN TRADE" value="regular"/>
<parameter key="INDUSTRY" value="regular"/>
<parameter key="ELEM" value="regular"/>
<parameter key="SECOND" value="regular"/>
<parameter key="HIGHERED" value="regular"/>
</list>
</operator>
<operator activated="true" class="replace_missing_values" compatibility="8.1.001" expanded="true" height="103" name="Replace Missing Values" width="90" x="313" y="340">
<list key="columns"/>
</operator>
<operator activated="true" class="split_data" compatibility="8.1.001" expanded="true" height="103" name="Split Data" width="90" x="447" y="289">
<enumeration key="partitions">
<parameter key="ratio" value="0.9"/>
<parameter key="ratio" value="0.1"/>
</enumeration>
<parameter key="sampling_type" value="linear sampling"/>
</operator>
<operator activated="true" class="neural_net" compatibility="8.1.001" expanded="true" height="82" name="Neural Net" width="90" x="380" y="187">
<list key="hidden_layers"/>
</operator>
<operator activated="true" class="apply_model" compatibility="8.1.001" expanded="true" height="82" name="Apply Model" width="90" x="514" y="85">
<list key="application_parameters"/>
</operator>
<operator activated="true" class="apply_model" compatibility="8.1.001" expanded="true" height="82" name="Apply Model (2)" width="90" x="648" y="289">
<list key="application_parameters"/>
</operator>
<operator activated="true" class="performance" compatibility="8.1.001" expanded="true" height="82" name="Performance (2)" width="90" x="849" y="289"/>
<operator activated="true" class="performance" compatibility="8.1.001" expanded="true" height="82" name="Performance" width="90" x="782" y="85"/>
<operator activated="true" class="retrieve" compatibility="8.1.001" expanded="true" height="68" name="Retrieve MYDATA - Copy (2)" width="90" x="313" y="493">
<parameter key="repository_entry" value="//NewLocalRepository/MYDATA - Copy"/>
</operator>
<operator activated="true" class="filter_examples" compatibility="8.1.001" expanded="true" height="103" name="Filter Examples (2)" width="90" x="447" y="493">
<parameter key="condition_class" value="all"/>
<list key="filters_list">
<parameter key="filters_entry_key" value="Unemployment.is_missing."/>
</list>
</operator>
<operator activated="true" class="normalize" compatibility="8.1.001" expanded="true" height="103" name="Normalize (2)" width="90" x="581" y="493"/>
<operator activated="true" class="set_role" compatibility="8.1.001" expanded="true" height="82" name="Set Role (2)" width="90" x="715" y="493">
<parameter key="attribute_name" value="Unemployment"/>
<parameter key="target_role" value="label"/>
<list key="set_additional_roles"/>
</operator>
<operator activated="true" class="replace_missing_values" compatibility="8.1.001" expanded="true" height="103" name="Replace Missing Values (2)" width="90" x="782" y="595">
<list key="columns"/>
</operator>
<operator activated="true" class="concurrency:cross_validation" compatibility="8.1.001" expanded="true" height="145" name="Cross Validation" width="90" x="916" y="442">
<process expanded="true">
<operator activated="true" class="neural_net" compatibility="8.1.001" expanded="true" height="82" name="Neural Net (2)" width="90" x="112" y="85">
<list key="hidden_layers"/>
</operator>
<connect from_port="training set" to_op="Neural Net (2)" to_port="training set"/>
<connect from_op="Neural Net (2)" from_port="model" to_port="model"/>
<connect from_op="Neural Net (2)" from_port="exampleSet" to_port="through 1"/>
<portSpacing port="source_training set" spacing="0"/>
<portSpacing port="sink_model" spacing="0"/>
<portSpacing port="sink_through 1" spacing="0"/>
<portSpacing port="sink_through 2" spacing="0"/>
</process>
<process expanded="true">
<operator activated="true" class="apply_model" compatibility="8.1.001" expanded="true" height="82" name="Apply Model (3)" width="90" x="45" y="34">
<list key="application_parameters"/>
</operator>
<operator activated="true" class="performance_classification" compatibility="8.1.001" expanded="true" height="82" name="Performance from Cross Validation" width="90" x="246" y="34">
<list key="class_weights"/>
</operator>
<connect from_port="model" to_op="Apply Model (3)" to_port="model"/>
<connect from_port="test set" to_op="Apply Model (3)" to_port="unlabelled data"/>
<connect from_op="Apply Model (3)" from_port="labelled data" to_op="Performance from Cross Validation" to_port="labelled data"/>
<connect from_op="Performance from Cross Validation" from_port="performance" to_port="performance 1"/>
<portSpacing port="source_model" spacing="0"/>
<portSpacing port="source_test set" spacing="0"/>
<portSpacing port="source_through 1" spacing="0"/>
<portSpacing port="source_through 2" spacing="0"/>
<portSpacing port="sink_test set results" spacing="0"/>
<portSpacing port="sink_performance 1" spacing="0"/>
<portSpacing port="sink_performance 2" spacing="0"/>
</process>
</operator>
<connect from_op="Retrieve MYDATA - Copy" from_port="output" to_op="Filter Examples" to_port="example set input"/>
<connect from_op="Filter Examples" from_port="example set output" to_op="Normalize" to_port="example set input"/>
<connect from_op="Normalize" from_port="example set output" to_op="Set Role" to_port="example set input"/>
<connect from_op="Set Role" from_port="example set output" to_op="Replace Missing Values" to_port="example set input"/>
<connect from_op="Replace Missing Values" from_port="example set output" to_op="Split Data" to_port="example set"/>
<connect from_op="Split Data" from_port="partition 1" to_op="Neural Net" to_port="training set"/>
<connect from_op="Split Data" from_port="partition 2" to_op="Apply Model (2)" to_port="unlabelled data"/>
<connect from_op="Neural Net" from_port="model" to_op="Apply Model" to_port="model"/>
<connect from_op="Apply Model" from_port="labelled data" to_op="Performance" to_port="labelled data"/>
<connect from_op="Apply Model" from_port="model" to_op="Apply Model (2)" to_port="model"/>
<connect from_op="Apply Model (2)" from_port="labelled data" to_op="Performance (2)" to_port="labelled data"/>
<connect from_op="Performance (2)" from_port="performance" to_port="result 2"/>
<connect from_op="Performance" from_port="performance" to_port="result 1"/>
<connect from_op="Retrieve MYDATA - Copy (2)" from_port="output" to_op="Filter Examples (2)" to_port="example set input"/>
<connect from_op="Filter Examples (2)" from_port="example set output" to_op="Normalize (2)" to_port="example set input"/>
<connect from_op="Normalize (2)" from_port="example set output" to_op="Set Role (2)" to_port="example set input"/>
<connect from_op="Set Role (2)" from_port="example set output" to_op="Replace Missing Values (2)" to_port="example set input"/>
<connect from_op="Replace Missing Values (2)" from_port="example set output" to_op="Cross Validation" to_port="example set"/>
<connect from_op="Cross Validation" from_port="model" to_port="result 3"/>
<portSpacing port="source_input 1" spacing="0"/>
<portSpacing port="sink_result 1" spacing="0"/>
<portSpacing port="sink_result 2" spacing="0"/>
<portSpacing port="sink_result 3" spacing="0"/>
<portSpacing port="sink_result 4" spacing="0"/>
<description align="center" color="yellow" colored="false" height="135" resized="true" width="387" x="601" y="253">This is the test data</description>
<description align="center" color="yellow" colored="false" height="135" resized="true" width="620" x="368" y="52">This is the training data</description>
</process>
</operator>
</process>Can anyone please help me....
0 -
Okay, great. Your XML now loads, but it seems it's a bit unclear what your goal is for the data.
A couple of points, the data you provided looks a little like a time series, is that correct? Or is it to produce a prediction of the unemployment rate
<?xml version="1.0" encoding="UTF-8"?><process version="8.1.000">
<context>
<input/>
<output/>
<macros/>
</context>
<operator activated="true" class="process" compatibility="8.1.000" expanded="true" name="Process">
<process expanded="true">
<operator activated="true" class="operator_toolbox:create_exampleset_from_doc" compatibility="0.9.000" expanded="true" height="68" name="MyData" width="90" x="45" y="34">
<parameter key="Column Separator" value="	"/>
<parameter key="Input Csv" value="Population	Labor force 	Inflation 	GDP	GNI	GDI	FOREIGN TRADE	INDUSTRY	ELEM	SECOND	HIGHERED	Unemployment 99,880,300	64.6	4.1	12,645,271	15,306,201	20.9	127,499.60	184.8	80.63	80.58	585,288	6.6 98,196,500	63.9	3	11,538,410	14,018,990	19.7	119,108.43	174	74.23	78.2	564,769	7.1 96,510,900	64.2	3.2	10,561,089	12,727,240	18.5	114,228.18	165.1	73.76	78.83	522,570	7.0 94,823,800	64.1	4.6	9,708,332	11,629,304	20.5	108,800.76	154.2	74.23	79.43	496,949	7.0 92,337,852	64.0	3.8	9,003,480	10,852,432	20.5	106,430.43	151	74.38	78.44	481,862	7.3 92,226,600	64.0	4.2	8,026,143	9,738,233	16.6	81,527.33	129.2	75.39	79.73	469,654	7.5 90,457,200	63.6	8.3	7,720,903	9,063,118	19.3	105,823.60	148.7	75.26	79.91	444,815	7.4 88,548,366	64.0	2.9	6,892,721	8,068,166	17.3	105,979.47	142.4	73.43	77.33	444,427	7.3 86,972,000	64.2	6.2	6,271,157	7,386,085	18	99,183.80	256.9	70.02	67.32	421,444	8.0 85,261,000	64.7	7.6	5,677,750	6,731,531	21.6	88,672.87	250.6	71.32	78.09	409,628	7.8 83,558,700	67.5	6	5,120,435	6,033,825	21.6	83,719.73	221.8	71.84	77.71	386,920	11.8 81,877,700	66.7	3.5	4,548,102	5,371,105	23	76,701.72	204	72.44	76.99	405,716	11.4 80,217,200	67.4	3	4,198,345	4,979,157	24.5	74,444.67	188.8	67.13	73.16	383,839	11.4 78,568,000	67.1	6.8	3,888,801	4,593,961	22.1	65,207.36	193.4	67.18	73.05	363,640	11.1 76,506,928	64.3	4.3	3,580,714	4,196,876	29.1	72,569.12	631.4	69.29	71.02	350,807	10.1 76,782,548	65.8	6.7	3,244,197	3,691,995	18.8	65,779.35	500.1	69.75	71.25	334,564	9.4 75,154,743	66.0	9.8	2,952,762	3,378,003	20.3	59,156.24	467.5	68.68	71.4	307,027	9.6 73,526,941	65.5	5.9	2,426,743	2,528,321	23.8	61,161.52	471.2	67.96	73.45	335,257	7.9 71,899,136	65.8	9	2,171,922	2,261,339	23.1	52,969.48	437.9	67.16	72.97	328,120	7.4 68,616,536	65.6	8	1,905,951	1,958,555	22.5	43,984.82	400.9	66.5	75.59	312,667	8.4 66,624,247	64.4	8.3	1,692,932	1,736,382	23.5	34,815.47	342.4	67.5	75.86	319,372	8.4 66,981,614	64.7	7	1,474,457	1,509,507	23.6	28,972.20	301	68.38	71.98	355,469	8.9 65,338,989	65.0	8.6	1,351,559	1,374,838	20.8	24,343.24	256	68.65	73.43	306,719	8.6 63,691,858	64.5	18.5	1,248,011	1,254,562	19.9	20,890.87	241	69.74	76.41	310,554	9.0 "/>
</operator>
<operator activated="true" class="parse_numbers" compatibility="8.1.000" expanded="true" height="82" name="Parse Numbers" width="90" x="179" y="34">
<parameter key="grouped_digits" value="true"/>
</operator>
<operator activated="true" class="set_role" compatibility="8.1.000" expanded="true" height="82" name="Set Role" width="90" x="112" y="136">
<parameter key="attribute_name" value="Unemployment"/>
<parameter key="target_role" value="label"/>
<list key="set_additional_roles"/>
</operator>
<operator activated="true" class="split_data" compatibility="8.1.000" expanded="true" height="103" name="Split Data" width="90" x="246" y="187">
<enumeration key="partitions">
<parameter key="ratio" value="0.9"/>
<parameter key="ratio" value="0.1"/>
</enumeration>
<parameter key="sampling_type" value="linear sampling"/>
</operator>
<operator activated="true" class="concurrency:cross_validation" compatibility="8.1.000" expanded="true" height="145" name="Cross Validation" width="90" x="447" y="85">
<process expanded="true">
<operator activated="true" class="normalize" compatibility="8.1.000" expanded="true" height="103" name="Normalize" width="90" x="45" y="34"/>
<operator activated="true" class="replace_missing_values" compatibility="8.1.000" expanded="true" height="103" name="Replace Missing Values" width="90" x="179" y="85">
<list key="columns"/>
</operator>
<operator activated="true" class="neural_net" compatibility="8.1.000" expanded="true" height="82" name="Neural Net" width="90" x="313" y="136">
<list key="hidden_layers"/>
</operator>
<operator activated="true" class="group_models" compatibility="8.1.000" expanded="true" height="124" name="Group Models" width="90" x="447" y="34"/>
<connect from_port="training set" to_op="Normalize" to_port="example set input"/>
<connect from_op="Normalize" from_port="example set output" to_op="Replace Missing Values" to_port="example set input"/>
<connect from_op="Normalize" from_port="preprocessing model" to_op="Group Models" to_port="models in 1"/>
<connect from_op="Replace Missing Values" from_port="example set output" to_op="Neural Net" to_port="training set"/>
<connect from_op="Replace Missing Values" from_port="preprocessing model" to_op="Group Models" to_port="models in 2"/>
<connect from_op="Neural Net" from_port="model" to_op="Group Models" to_port="models in 3"/>
<connect from_op="Group Models" from_port="model out" to_port="model"/>
<portSpacing port="source_training set" spacing="0"/>
<portSpacing port="sink_model" spacing="0"/>
<portSpacing port="sink_through 1" spacing="0"/>
<description align="center" color="yellow" colored="false" height="85" resized="true" width="518" x="15" y="278">Best practice is to perform preprocessing such as normalize &amp; replace missing values within the model training and reapply the exact same step in model testing. <br/>To do this we use the Group Models operator to save the steps in order.</description>
</process>
<process expanded="true">
<operator activated="true" class="apply_model" compatibility="8.1.000" expanded="true" height="82" name="Apply Model" width="90" x="45" y="34">
<list key="application_parameters"/>
</operator>
<operator activated="true" class="performance_regression" compatibility="8.1.000" expanded="true" height="82" name="Performance Training" width="90" x="179" y="34"/>
<connect from_port="model" to_op="Apply Model" to_port="model"/>
<connect from_port="test set" to_op="Apply Model" to_port="unlabelled data"/>
<connect from_op="Apply Model" from_port="labelled data" to_op="Performance Training" to_port="labelled data"/>
<connect from_op="Performance Training" from_port="performance" to_port="performance 1"/>
<portSpacing port="source_model" spacing="0"/>
<portSpacing port="source_test set" spacing="0"/>
<portSpacing port="source_through 1" spacing="0"/>
<portSpacing port="sink_test set results" spacing="0"/>
<portSpacing port="sink_performance 1" spacing="0"/>
<portSpacing port="sink_performance 2" spacing="0"/>
</process>
</operator>
<operator activated="true" class="apply_model" compatibility="8.1.000" expanded="true" height="82" name="Apply Model (2)" width="90" x="648" y="289">
<list key="application_parameters"/>
</operator>
<operator activated="true" class="performance_regression" compatibility="8.1.000" expanded="true" height="82" name="Performance Testing" width="90" x="849" y="289"/>
<connect from_op="MyData" from_port="output" to_op="Parse Numbers" to_port="example set input"/>
<connect from_op="Parse Numbers" from_port="example set output" to_op="Set Role" to_port="example set input"/>
<connect from_op="Set Role" from_port="example set output" to_op="Split Data" to_port="example set"/>
<connect from_op="Split Data" from_port="partition 1" to_op="Cross Validation" to_port="example set"/>
<connect from_op="Split Data" from_port="partition 2" to_op="Apply Model (2)" to_port="unlabelled data"/>
<connect from_op="Cross Validation" from_port="model" to_op="Apply Model (2)" to_port="model"/>
<connect from_op="Cross Validation" from_port="performance 1" to_port="result 1"/>
<connect from_op="Apply Model (2)" from_port="labelled data" to_op="Performance Testing" to_port="labelled data"/>
<connect from_op="Apply Model (2)" from_port="model" to_port="result 3"/>
<connect from_op="Performance Testing" from_port="performance" to_port="result 2"/>
<connect from_op="Performance Testing" from_port="example set" to_port="result 4"/>
<portSpacing port="source_input 1" spacing="0"/>
<portSpacing port="sink_result 1" spacing="105"/>
<portSpacing port="sink_result 2" spacing="84"/>
<portSpacing port="sink_result 3" spacing="42"/>
<portSpacing port="sink_result 4" spacing="105"/>
<portSpacing port="sink_result 5" spacing="63"/>
<description align="center" color="yellow" colored="false" height="163" resized="true" width="622" x="366" y="253">This is the test data</description>
<description align="center" color="yellow" colored="false" height="186" resized="true" width="617" x="368" y="52">This is the training data</description>
<description align="center" color="purple" colored="true" height="129" resized="true" width="508" x="12" y="386">Please note, the dataset is pretty small and it's unclear currently if the data is a timeseries or just numbers.<br>Try changing the neural network operator to something else to see if the performance improves. Biggest recommendation is increasing the size of the dataset. You have only two records for testing in this setup.</description>
</process>
</operator>
</process>2 -
Hi jEdward
thanks for paying attention on my post
Yes its a timeseries,..at the same time i have to make also predictions of unemployment rates ,..correct me if im wrong with my understading,.
Can you please suggest to me on what am i going to do with this?what about my process?am i doing the right thing?
its my first time using RM,
thanks in advance
regards,
yien
regard
1 -
heres another question,..am i going to include the variable YEAR in my data set?,..my data are from 1991-2014
0 -
thanks for ur suggestion JEdward
I'll read and try the samples given
More power!
1