Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion entity-resolution/python/entity-resolution.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from pslpython.rule import Rule

MODEL_NAME = 'entity-resolution'
DATA_DIR = os.path.join('..', 'data', MODEL_NAME)
DATA_DIR = os.path.join('..', 'data', MODEL_NAME, '0')

ADDITIONAL_PSL_OPTIONS = {
'log4j.threshold': 'INFO'
Expand Down
2 changes: 1 addition & 1 deletion friendship/python/friendship.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from pslpython.rule import Rule

MODEL_NAME = 'friendship'
DATA_DIR = os.path.join('..', 'data', MODEL_NAME)
DATA_DIR = os.path.join('..', 'data', MODEL_NAME, '0/eval')

ADDITIONAL_PSL_OPTIONS = {
'log4j.threshold': 'INFO'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from pslpython.rule import Rule

MODEL_NAME = 'knowledge-graph-identification'
DATA_DIR = os.path.join('..', 'data', 'kgi')
DATA_DIR = os.path.join('..', 'data/kgi/0')

ADDITIONAL_PSL_OPTIONS = {
'log4j.threshold': 'INFO'
Expand Down
2 changes: 1 addition & 1 deletion simple-acquaintances/python/simple-acquaintances.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from pslpython.rule import Rule

MODEL_NAME = 'simple-acquaintances'
DATA_DIR = os.path.join('..', 'data')
DATA_DIR = os.path.join('..', 'data', MODEL_NAME, '0/eval')

ADDITIONAL_PSL_OPTIONS = {
'log4j.threshold': 'INFO'
Expand Down
2 changes: 1 addition & 1 deletion social-network-analysis/python/social-network-analysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from pslpython.rule import Rule

MODEL_NAME = 'social-network-analysis'
DATA_DIR = os.path.join('..', 'data', MODEL_NAME)
DATA_DIR = os.path.join('..', 'data', MODEL_NAME, '0/eval')

ADDITIONAL_PSL_OPTIONS = {
'log4j.threshold': 'INFO'
Expand Down
2 changes: 1 addition & 1 deletion trust-prediction/python/trust-prediction.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from pslpython.rule import Rule

MODEL_NAME = 'trust-prediction'
DATA_DIR = os.path.join('..', 'data', MODEL_NAME)
DATA_DIR = os.path.join('..', 'data', MODEL_NAME, '0')

ADDITIONAL_PSL_OPTIONS = {
'log4j.threshold': 'INFO'
Expand Down
2 changes: 1 addition & 1 deletion user-modeling/python/user-modeling.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from pslpython.rule import Rule

MODEL_NAME = 'user-modeling'
DATA_DIR = os.path.join('..', 'data', MODEL_NAME)
DATA_DIR = os.path.join('..', 'data', MODEL_NAME, '0/eval')

ADDITIONAL_PSL_OPTIONS = {
'log4j.threshold': 'INFO'
Expand Down