Skip to content

Commit

Permalink
First pass at refactoring jinja template (#567)
Browse files Browse the repository at this point in the history
  • Loading branch information
amrit110 authored Feb 28, 2024
1 parent d4be90a commit 9936852
Show file tree
Hide file tree
Showing 6 changed files with 1,407 additions and 1,389 deletions.
6 changes: 3 additions & 3 deletions cyclops/report/report.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Cyclops report module."""
"""Cyclops model report module."""

import base64
import glob
Expand Down Expand Up @@ -62,8 +62,8 @@
)


_TEMPLATE_DIR = os.path.join(os.path.dirname(__file__), "templates")
_DEFAULT_TEMPLATE_FILENAME = "cyclops_generic_template.jinja"
_TEMPLATE_DIR = os.path.join(os.path.dirname(__file__), "templates", "model_report")
_DEFAULT_TEMPLATE_FILENAME = "model_report.jinja"


class ModelCardReport:
Expand Down
Loading

0 comments on commit 9936852

Please sign in to comment.