mirror of
https://github.com/Relintai/MLPP.git
synced 2024-11-12 10:15:01 +01:00
so
This commit is contained in:
parent
c93400840a
commit
32bcc472aa
@ -5,6 +5,7 @@
|
||||
//
|
||||
|
||||
#include <iostream>
|
||||
#include <cmath>
|
||||
#include "Cost.hpp"
|
||||
#include "LinAlg/LinAlg.hpp"
|
||||
#include "Regularization/Reg.hpp"
|
||||
|
@ -10,6 +10,7 @@
|
||||
#include "Stat/Stat.hpp"
|
||||
#include "SoftmaxNet/SoftmaxNet.hpp"
|
||||
#include <iostream>
|
||||
#include <cmath>
|
||||
#include <fstream>
|
||||
#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>> 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);
|
||||
|
||||
@ -132,7 +132,7 @@ namespace MLPP{
|
||||
|
||||
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);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user