Michael
Michael
+1 In my opinion, there is a overlap between the training data and the validation data. I'm trying to research & fix this problem, because the 2D NumPy Array doesn't...
will be fixed in #201
will be fixed in https://github.com/FountainJS/generator-fountain-webapp/issues/201
@billlipeng Thanks! https://oj.leetcode.com/problems/reverse-integer/ ``` c++ #include class Solution { public: int reverse(int x) { signed long long int result = 0; for (; x; x/=10) { result = result *...
可以提供 libormpp.a 来 static link 吗? 现在需要分离编译发现报错: ``` /usr/bin/ld: CMakeFiles/bot.dir/src/main.cpp.o: in function `ormpp::get_sql_conditions(std::__cxx11::basic_string&)': /usr/include/boost/system/error_code.hpp:401: multiple definition of `ormpp::get_sql_conditions(std::__cxx11::basic_string&)'; ```
是要user来侵入修改library? 对每个用到的函数都要加 inline 吗?
那就对了。。 关联 issue https://github.com/qicosmos/ormpp/issues/17