modelcards 0.1.4

A fast modelcard generator with built-in templates
Documentation
1
2
3
4
5
6
7
8
9
use std::include_str;

pub fn get_md() -> &'static str {
    include_str!("google.modelcard.md.jinja")
}

pub fn get_html() -> &'static str {
    include_str!("google.modelcard.html.jinja")
}