<SuvarshaChennare>
My name is Suvarsha Chennareddy and I’ve been contributing to mlpack for a while now. I would love to take part in GSOC 2023 and learn a great deal more from the mentors. I have looked at the project ideas and I am interested in taking up [Enhance CMA-ES] (https://github.com/mlpack/mlpack/wiki/SummerOfCodeIdeas#enhance-cma-es). I have a related PR ([An attempt to fix the current CMAES
<SuvarshaChennare>
inconsistencies](https://github.com/mlpack/ensmallen/pull/351)) open which is currently under review. If there aren’t any objections with my choice, I’ll start working on a proposal right away. Thank you.
<SuvarshaChennare>
zoq andrcurtin, I hope I’m not wasting your time (I apologize if I am), but I would like your input in this.
<SuvarshaChennare>
* Hello everyone, My name is Suvarsha Chennareddy and I’ve been contributing to mlpack for a while now. I would love to take part in GSOC 2023 and learn a great deal more from the mentors. I have looked at the project ideas and I am interested in taking up [Enhance CMA-ES] (https://github.com/mlpack/mlpack/wiki/SummerOfCodeIdeas). I have a related PR (An attempt to fix the current CMAES inconsistencies) open which is currently
<SuvarshaChennare>
under review. If there aren’t any objections with my choice, I’ll start working on a proposal right away. Thank you.
<SuvarshaChennare>
zoq andrcurtin, I hope I’m not wasting your time (I apologize if I am), but I would like your input in this.
<SuvarshaChennare>
* Hello everyone, My name is Suvarsha Chennareddy and I’ve been contributing to mlpack for a while now. I would love to take part in GSOC 2023 and learn a great deal more from the mentors. I have looked at the project ideas and I am interested in taking up [Enhance CMA-ES] (https://github.com/mlpack/mlpack/wiki/SummerOfCodeIdeas#enhance-cma-es). I have a related PR ([An attempt to fix the current CMAES inconsistencies]
<SuvarshaChennare>
(https://github.com/mlpack/ensmallen/pull/351) ) open which is currently under review. If there aren’t any objections with my choice, I’ll start working on a proposal right away. Thank you. zoq andrcurtin, I hope I’m not wasting your time (I apologize if I am), but I would like your input in this.
<SuvarshaChennare>
* Hello everyone, My name is Suvarsha Chennareddy and I’ve been contributing to mlpack for a while now. I would love to take part in GSOC 2023 and learn a great deal more from the mentors. I have looked at the project ideas and I am interested in taking up [Enhance CMA-ES](https://github.com/mlpack/mlpack/wiki/SummerOfCodeIdeas#enhance-cma-es). I have a related PR ([An attempt to fix the current CMAES
<SuvarshaChennare>
inconsistencies](https://github.com/mlpack/ensmallen/pull/351) ) open which is currently under review. If there aren’t any objections with my choice, I’ll start working on a proposal right away. Thank you. zoq andrcurtin, I hope I’m not wasting your time (I apologize if I am), but I would like your input in this.
Manish[m] has quit [Quit: You have been kicked for being idle]
raghav323[m] has quit [Quit: You have been kicked for being idle]
<akhunti1[m]>
based on your suggestion I tried to print the data matrix line number 77.
<akhunti1[m]>
I gave the input from curl like this [ curl --http0.9 -X POST -H 'Content-Type: application/json' -d'{"data": { "ndarray": [4,5,10,20,45,55]}}' http://localhost:9000/api/v1.0/predictions ]
<akhunti1[m]>
if you compare between input and out put first value from input ie is 4 is missing in out put .
<akhunti1[m]>
so , May i know what changes i need to do to get the exact out put .
<akhunti1[m]>
* Hi vaibhavp rcurtin
<rcurtin[m]>
probably the Armadillo parser is seeing the first token [4 and parsing it incorrectly... you probably need to get the string into the right format required by Armadillo, as specified in the documentation I linked to yesterday 👍️
_slack_mlpack_34 has quit [Quit: You have been kicked for being idle]
_slack_mlpack_34 has joined #mlpack
<akhunti1[m]>
Hi rcurtin i tried but not able to fix it .
<akhunti1[m]>
I tried std::cout.setf(std::ios::fixed); line but same it is removing first element from the list , when printing out put .
<akhunti1[m]>
And gave input curl --http0.9 -X POST -H 'Content-Type: application/json' -d'{"data": { "ndarray": [4,5,10,20,45,55]}}' http://localhost:9000/api/v1.0/predictions like this