Skip to content

Commit

Permalink
Disable warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
phamquiluan committed Aug 14, 2024
1 parent dd98303 commit 12b82e5
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion RCAEval/e2e/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ def wrapper(*args, **kwargs):
try:
from .causalai import causalai
except Exception as e:
print(e)
pass
# print(e)
from .circa import circa
from .cloudranger import cloudranger
from .fci_pagerank import fci_pagerank
Expand Down
3 changes: 2 additions & 1 deletion RCAEval/e2e/ges_pagerank.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
try:
from RCAEval.graph_construction.fges import fges
except:
print("fges not available")
pass
# print("fges not available")


def ges_pagerank(data, inject_time=None, dataset=None, **kwargs):
Expand Down
3 changes: 2 additions & 1 deletion rq2.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,8 @@
os.environ["CUDA_VISIBLE_DEVICES"] = "-1"
from RCAEval.e2e.causalrca import causalrca
except ImportError:
print("causalrca not available")
pass
# print("causalrca not available")



Expand Down

0 comments on commit 12b82e5

Please sign in to comment.