Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Fractalis
fractalis
Commits
8b43142c
Commit
8b43142c
authored
Oct 16, 2017
by
Sascha Herzinger
Browse files
Fixed some dependency issues
parent
7425cce8
Pipeline
#2434
failed with stage
in 2 minutes and 40 seconds
Changes
6
Pipelines
1
Expand all
Hide whitespace changes
Inline
Side-by-side
fractalis/analytics/task.py
View file @
8b43142c
...
...
@@ -8,7 +8,7 @@ from typing import List, Tuple
from
pandas
import
read_csv
,
DataFrame
from
celery
import
Task
from
Crypto.Cipher
import
AES
from
Crypto
dome
.Cipher
import
AES
from
fractalis
import
redis
,
app
from
fractalis.utils
import
get_cache_encrypt_key
...
...
fractalis/data/etl.py
View file @
8b43142c
...
...
@@ -5,7 +5,7 @@ import json
import
logging
import
os
from
Crypto.Cipher
import
AES
from
Crypto
dome
.Cipher
import
AES
from
celery
import
Task
from
pandas
import
DataFrame
...
...
fractalis/data/etls/transmart/etl_highdim.py
View file @
8b43142c
...
...
@@ -6,7 +6,6 @@ import requests
from
pandas
import
DataFrame
from
fractalis.data.etl
import
ETL
from
fractalis.data.etls.transmart
import
observations_pb2
logger
=
logging
.
getLogger
(
__name__
)
...
...
fractalis/data/etls/transmart/observations_pb2.py
deleted
100644 → 0
View file @
7425cce8
This diff is collapsed.
Click to expand it.
fractalis/data/integrity/numerical_array.py
View file @
8b43142c
...
...
@@ -39,7 +39,7 @@ class NumericalArrayIntegrityCheck(IntegrityCheck):
error
=
"'value' column must be of type 'np.int' or 'np.float'."
logger
.
error
(
error
)
raise
ValueError
(
error
)
if
len
(
pd
.
unique
(
data
[[
'id'
,
'feature'
]].
values
))
!=
data
.
shape
[
0
]:
if
data
.
groupby
([
'id'
,
'feature'
]).
count
().
shape
[
0
]
!=
data
.
shape
[
0
]:
error
=
"Every combination of 'id' and 'feature' must be unique."
logger
.
error
(
error
)
raise
ValueError
(
error
)
\ No newline at end of file
setup.py
View file @
8b43142c
...
...
@@ -22,7 +22,6 @@ setup(
'sklearn'
,
'requests'
,
'PyYAML'
,
'pycrypto'
,
'pycryptodomex'
,
'rpy2'
],
...
...
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