I think I'm confused with instantiating objects.. well.. not properly object because new statements make a compile error. My background is in Python and Java and I'm stuck in front of C++ way of creating objects that aren't classes.

I'm translating an algorithm from C# and for machine learning and it uses an array of multidimensional arrays.

C# code:

public double Learn(int[][] observations, int symbols, int states, ...

    // ...

    double[][, ,] epsilon = new double[N][, ,]; // also referred as ksi or psi
    double[][,] gamma = new double[N][,];

    for (int i = 0; i < N; i++)
    {
        int T = observations[i].Length;
        epsilon[i] = new double[T, States, States];
        gamma[i] = new double[T, States];
    }

I've decided to use the Boost library for the multidimensional array, and I have:

typedef boost::multi_array<double, 2> matrix2D;
typedef boost::multi_array<double, 3> matrix3D;

vector<matrix3D> epsilon;
vector<matrix2D> gamma;

cout << "HMM::learn >> before" << endl;
for (int i = 0; i < N; i++)
{
    int T = observations[i].size();
    epsilon[i] = matrix3D(boost::extents[T][states][symbols]);
    gamma[i] = matrix2D(boost::extents[T][states]);
}

and I get this runtime error:

HMM::learn >> before
std::bad_alloc' what(): std::bad_alloc

link|improve this question

69% accept rate
1  
What is observations? states? symbols? SSCCE. In any case, you're writing into epsilon and gamma without sizing the vectors initially, so that's one obvious bug at least, but likely not the one causing the exception you're seeing. – ildjarn Jan 26 at 18:36
btw, i've edited – nkint Jan 27 at 18:12
feedback

1 Answer

up vote 1 down vote accepted

The vectors have no space allocated (well it may be reserved already but you can't reference it with the array indexers). Change the lines:

epsilon[i] = matrix3D(boost::extents[T][states][symbols]);
gamma[i] = matrix2D(boost::extents[T][states]);

To:

epsilon.push_back(matrix3D(boost::extents[T][states][symbols]);
gamma.push_back(matrix2D(boost::extents[T][states]);

that should solve it. In your case since you know the array size you should reserve that much space in the vectors so that it reduces the reallocations needed:

epsilon.reserve(N);
gamma.reserve(N);
link|improve this answer
He was getting a std::bad_alloc exception -- writing out of bounds into a std::vector<> would not throw that exception, so I don't think this is the answer. – ildjarn Jan 26 at 19:48
you're right. I was thinking you would get that with the indexers, but that's a subscript out of range error. Well, this answer fixes another problem he has :) – pstrjds Jan 26 at 20:21
yeah the problem was that i haven't initialized symbols. but this is what i was asking for : ) – nkint Jan 26 at 21:22
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.