- update poet

git-svn-id: http://moon:8086/svn/software/trunk/projects/Rbm@842 b431acfa-c32f-4a4a-93f1-934dc6c82436
This commit is contained in:
2022-01-19 11:21:08 +00:00
parent 7232870123
commit da1139356a
2 changed files with 135 additions and 3 deletions
+3 -3
View File
@@ -36,7 +36,7 @@ class RbmListener : public Rbm::IListener
#define CREATE_TRAINING 0
#define DO_TRAINING 1
#define DO_TRAINING 0
#define DO_FORWARD 1
int main()
@@ -91,7 +91,7 @@ int main()
arma::mat next;
std::string curr_str;
std::string next_str;
for (int i=0; i < t_vc.n_rows; i++)
for (int i=0; i < t_vc.n_rows-50; i++)
{
curr = stack->to_curr(t_vc.row(i));
curr_str.append(1,RnnTextHelper::idx2ch(curr.index_max()));
@@ -102,7 +102,7 @@ int main()
cout << "Curr: " << curr_str << std::endl;
cout << "Next: " << next_str << std::endl;
for (int i=0; i < 430; i++)
for (int i=0; i < 120; i++)
{
curr = next;
curr_str.append(1,RnnTextHelper::idx2ch(curr.index_max()));