Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
preprocess-data
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
CI / CD Analytics
Repository Analytics
Value Stream Analytics
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
dasharatha.vamshi
preprocess-data
Commits
ea0e9b5b
Commit
ea0e9b5b
authored
Feb 23, 2021
by
dasharatha.vamshi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
pickle-file
parent
5ed08153
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
11 additions
and
1 deletion
+11
-1
logs/PreProccessComponent.log
logs/PreProccessComponent.log
+10
-0
scripts/common/StandardScaler.pkl
scripts/common/StandardScaler.pkl
+0
-0
scripts/common/__pycache__/config_parser.cpython-37.pyc
scripts/common/__pycache__/config_parser.cpython-37.pyc
+0
-0
scripts/common/config_parser.py
scripts/common/config_parser.py
+1
-1
No files found.
logs/PreProccessComponent.log
View file @
ea0e9b5b
...
...
@@ -39,3 +39,13 @@
2021-02-23 18:14:52,645 INFO PreProccessComponent Parsing the pickle file
2021-02-23 18:14:52,650 INFO PreProccessComponent Got the data writing it to pickle file (preprocessed_X.pkl)
2021-02-23 18:14:52,650 INFO PreProccessComponent Component executed Successfully
2021-02-23 19:02:28,341 INFO PreProccessComponent Reading Json file
2021-02-23 19:02:28,351 INFO PreProccessComponent Parsing the pickle file
2021-02-23 19:02:29,640 INFO PreProccessComponent Got the data writing it to pickle file (preprocessed_X.pkl)
2021-02-23 19:02:29,641 INFO PreProccessComponent Component executed Successfully
2021-02-23 19:03:02,447 INFO PreProccessComponent Reading Json file
2021-02-23 19:03:02,457 INFO PreProccessComponent Parsing the pickle file
2021-02-23 19:03:14,509 INFO PreProccessComponent Reading Json file
2021-02-23 19:03:14,519 INFO PreProccessComponent Parsing the pickle file
2021-02-23 19:03:15,704 INFO PreProccessComponent Got the data writing it to pickle file (preprocessed_X.pkl)
2021-02-23 19:03:15,705 INFO PreProccessComponent Component executed Successfully
scripts/common/StandardScaler.pkl
0 → 100644
View file @
ea0e9b5b
File added
scripts/common/__pycache__/config_parser.cpython-37.pyc
View file @
ea0e9b5b
No preview for this file type
scripts/common/config_parser.py
View file @
ea0e9b5b
...
...
@@ -35,7 +35,7 @@ config = {
"shared_volume"
:
os
.
environ
.
get
(
"shared_volume"
),
"json_path"
:
os
.
environ
.
get
(
"json_path"
),
"fillna_method"
:
os
.
environ
.
get
(
"fillna_method"
,
default
=
"ffill"
),
"standard_scalar_path"
:
os
.
environ
.
get
(
"standard_scalar_path"
),
"standard_scalar_path"
:
os
.
environ
.
get
(
"standard_scalar_path"
,
default
=
r"scripts\common\StandardScaler.pkl"
),
}
if
not
os
.
path
.
exists
(
config
[
'shared_volume'
]):
sys
.
stderr
.
write
(
"Shared path does not exist!"
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment