-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathloss_function.f90
50 lines (44 loc) · 1.29 KB
/
loss_function.f90
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
module loss_function
implicit none
contains
function meam_squared_error(Y,T)
implicit none
integer::T(:,:)
real::Y(:,:)
real::meam_squared_error,error_calc
integer i,j,N
integer,allocatable::Yshape(:)
Yshape=shape(Y)
N=Yshape(2)
meam_squared_error=0
do i=1,N
error_calc=0
do j=1,Yshape(1)
error_calc=error_calc+(Y(j,i)-real(T(j,i)))**2
end do
error_calc=0.5*error_calc
meam_squared_error=meam_squared_error+error_calc
end do
meam_squared_error=meam_squared_error/real(N)
end function
function cross_entropy_error(Y,T)
implicit none
integer::T(:,:)
real::Y(:,:)
real::cross_entropy_error,error_calc,delta
integer i,j,N
integer,allocatable::Yshape(:)
Yshape=shape(Y)
N=Yshape(2)
cross_entropy_error=0
delta=1e-7
do i=1,N
error_calc=0
do j=1,Yshape(1)
error_calc=error_calc-real(T(j,i))*log(Y(j,i)+delta)
end do
cross_entropy_error=cross_entropy_error+error_calc
end do
cross_entropy_error=cross_entropy_error/real(N)
end function
end module loss_function