GNNRecom/rank/apps.py

16 lines
415 B
Python
Raw Permalink Normal View History

2021-11-16 07:04:52 +00:00
from django.apps import AppConfig
from django.conf import settings
from gnnrec.kgrec import recall, rank
class RankConfig(AppConfig):
default_auto_field = 'django.db.models.BigAutoField'
name = 'rank'
def ready(self):
if not settings.TESTING:
from . import views
views.recall_ctx = recall.get_context()
views.rank_ctx = rank.get_context(views.recall_ctx)