<EshaanAgarwal[m]>
<EshaanAgarwal[m]> "jonpsy: zoq fieryblade https://..." <- can we reschedule this to tomorrow at same time 10:00 PM IST ? Meanwhile, i will take another look at HER with gdb. I also intend to update the progress repository so that we also get started with wrapping up the documentation and report.
<jonpsy[m]>
not sure i can make it monday
<jonpsy[m]>
Eshaan Agarwal: have you written this code entirely from scratch or have taken help from a resource?
<EshaanAgarwal[m]>
<jonpsy[m]> "not sure i can make it monday" <- When can we do it then ?
<EshaanAgarwal[m]>
<jonpsy[m]> "Eshaan Agarwal: have you..." <- I have used the psuedocode in paper and implementation done in Intel Coach Labs as reference. I have mentioned that in PR. But since the mlpack library had a different structure, I implemented in accordance it.
<EshaanAgarwal[m]>
flipped the bit in n length binary vector ! here agent will provide index as the action ! that index will be filpped and then produced vector will be next state
<EshaanAgarwal[m]>
> What exactly are we trying to achieve here.
<EshaanAgarwal[m]>
EshaanAgarwal[m]: that will give 1 for 0 at that index and 0 when its 1 at that index
<EshaanAgarwal[m]>
jonpsy[m]: Modified state is a col vec right ?
<EshaanAgarwal[m]>
In which we stored our present state
<jonpsy[m]>
is it?
<jonpsy[m]>
<EshaanAgarwal[m]> "> <@jonpsy:matrix.org> `..." <- If `modifiedState(action.action)` is 0, what happens? It becomes -1?
<EshaanAgarwal[m]>
jonpsy[m]: it will become 1 right ? 1-0 is 1 which will get stored at that place
<jonpsy[m]>
assuming the above code is correct, we could've just done `nextState.Data() = 1 - state.Data()` ? Why create unnecessary copies
<jonpsy[m]>
* - state.Data()(action.action)` ?
<EshaanAgarwal[m]>
jonpsy[m]: we have to flip that index right ? nextState is empty as of now
<akhunti1[m]>
Hi Team , any suggestion what should i use to deploy Mlpack C++ based model ? like flask and Django use for python based Machine learning model .
<EshaanAgarwal[m]>
EshaanAgarwal[m]: i think what you mean to say is this `nextState.Data()= state.Data(); nextState.Data()(action.action) = 1 - state.Data()(action.action);`
<EshaanAgarwal[m]>
`
<jonpsy[m]>
or you could just `std::move` the last part
<jonpsy[m]>
but yes, avoid copies
<EshaanAgarwal[m]>
jonpsy[m]: sure i will make that change.