mirror of
https://github.com/Relintai/MLPP.git
synced 2024-11-14 10:17:18 +01:00
so
This commit is contained in:
parent
c93400840a
commit
32bcc472aa
@ -5,6 +5,7 @@
|
|||||||
//
|
//
|
||||||
|
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
|
#include <cmath>
|
||||||
#include "Cost.hpp"
|
#include "Cost.hpp"
|
||||||
#include "LinAlg/LinAlg.hpp"
|
#include "LinAlg/LinAlg.hpp"
|
||||||
#include "Regularization/Reg.hpp"
|
#include "Regularization/Reg.hpp"
|
||||||
|
@ -10,6 +10,7 @@
|
|||||||
#include "Stat/Stat.hpp"
|
#include "Stat/Stat.hpp"
|
||||||
#include "SoftmaxNet/SoftmaxNet.hpp"
|
#include "SoftmaxNet/SoftmaxNet.hpp"
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
|
#include <cmath>
|
||||||
#include <fstream>
|
#include <fstream>
|
||||||
#include <sstream>
|
#include <sstream>
|
||||||
|
|
||||||
|
@ -34,7 +34,7 @@ namespace MLPP{
|
|||||||
|
|
||||||
std::vector<std::vector<double>> scalarAdd(double scalar, std::vector<std::vector<double>> A);
|
std::vector<std::vector<double>> scalarAdd(double scalar, std::vector<std::vector<double>> A);
|
||||||
|
|
||||||
std::vector<std::vector<double>> std::log(std::vector<std::vector<double>> A);
|
std::vector<std::vector<double>> log(std::vector<std::vector<double>> A);
|
||||||
|
|
||||||
std::vector<std::vector<double>> log10(std::vector<std::vector<double>> A);
|
std::vector<std::vector<double>> log10(std::vector<std::vector<double>> A);
|
||||||
|
|
||||||
@ -132,7 +132,7 @@ namespace MLPP{
|
|||||||
|
|
||||||
std::vector<double> subtractMatrixRows(std::vector<double> a, std::vector<std::vector<double>> B);
|
std::vector<double> subtractMatrixRows(std::vector<double> a, std::vector<std::vector<double>> B);
|
||||||
|
|
||||||
std::vector<double> std::log(std::vector<double> a);
|
std::vector<double> log(std::vector<double> a);
|
||||||
|
|
||||||
std::vector<double> log10(std::vector<double> a);
|
std::vector<double> log10(std::vector<double> a);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user