Skip to content

Commit

Permalink
Added autor
Browse files Browse the repository at this point in the history
  • Loading branch information
stonescenter committed Feb 7, 2020
1 parent 607dd2a commit 207f05e
Show file tree
Hide file tree
Showing 12 changed files with 70 additions and 3 deletions.
4 changes: 4 additions & 0 deletions core/data/data_loader.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
__author__ = "Steve Ataucuri"
__copyright__ = "Sprace.org.br"
__version__ = "1.0.0"

import numpy as np
import pandas as pd

Expand Down
4 changes: 4 additions & 0 deletions core/data/lib_data_manipulation.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
__author__ = "unknow"
__copyright__ = "Sprace.org.br"
__version__ = "1.0.0"

import pandas as pd
import sys

Expand Down
4 changes: 3 additions & 1 deletion core/models/base.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@

__author__ = "Steve Ataucuri"
__copyright__ = "Sprace.org.br"
__version__ = "1.0.0"

import os
import math
Expand Down
4 changes: 4 additions & 0 deletions core/models/cnn.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
__author__ = "Steve Ataucuri"
__copyright__ = "Sprace.org.br"
__version__ = "1.0.0"

from keras.layers import Input, Dense, Activation, Dropout, LSTM
from keras.layers import concatenate, CuDNNLSTM
from keras.models import Model
Expand Down
6 changes: 5 additions & 1 deletion core/models/lstm.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
__author__ = "Steve Ataucuri"
__copyright__ = "Sprace.org.br"
__version__ = "1.0.0"

from keras.layers import Input, Dense, Activation, Dropout, LSTM
from keras.layers import TimeDistributed, RepeatVector
from keras.layers import concatenate, CuDNNLSTM
Expand Down Expand Up @@ -112,7 +116,7 @@ def build_model(self):
# this model is not sequencial
self.model = None
configs = self.c

for layer in configs['model']['layers']:

neurons = layer['neurons'] if 'neurons' in layer else None
Expand Down
4 changes: 4 additions & 0 deletions core/models/timer.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
__author__ = "Steve Ataucuri"
__copyright__ = "Sprace.org.br"
__version__ = "1.0.0"

import datetime as dt

class Timer():
Expand Down
4 changes: 4 additions & 0 deletions core/utils/metrics.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
__author__ = "Steve Ataucuri"
__copyright__ = "Sprace.org.br"
__version__ = "1.0.0"

import os
import numpy as np
from math import sqrt
Expand Down
3 changes: 3 additions & 0 deletions core/utils/transformation.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
__author__ = "unknow"
__copyright__ = "Sprace.org.br"
__version__ = "1.0.0"
import numpy as np


Expand Down
4 changes: 4 additions & 0 deletions core/utils/utils.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
__author__ = "Steve Ataucuri"
__copyright__ = "Sprace.org.br"
__version__ = "1.0.0"

import numpy as np
import pandas as pd
import datetime as dt
Expand Down
1 change: 0 additions & 1 deletion main-paralel.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
__author__ = "Steve Ataucuri"
__copyright__ = "Sprace.org.br"
__version__ = "1.0.0"
__license__ = "MIT"

import sys
import os
Expand Down
4 changes: 4 additions & 0 deletions main.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
__author__ = "Steve Ataucuri"
__copyright__ = "Sprace.org.br"
__version__ = "1.0.0"

import sys
import os
import argparse
Expand Down
31 changes: 31 additions & 0 deletions track.html

Large diffs are not rendered by default.

0 comments on commit 207f05e

Please sign in to comment.