forked from YiVal/YiVal
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
744 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
default: true | ||
|
||
# MD007/ul-indent - Unordered list indentation | ||
MD007: | ||
# Spaces for indent | ||
indent: 4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# Change Log | ||
|
||
## 0.1.0 | ||
|
||
**Qian** (The Creative, Heaven) 🌤️ (乾): | ||
|
||
- [x] Setup the framework for wrappers that can be used directly | ||
in the production code. | ||
- [x] Set up the BaseWrapper | ||
- [x] Set up the StringWrapper | ||
- [x] Setup the config framework | ||
- [ ] Setup the experiment main function | ||
- [ ] Setup the evaluator framework to do evaluations | ||
- [ ] One auto-evaluator | ||
- [ ] Ground truth matching | ||
- [ ] Human evaluator | ||
- [ ] Interactive evaluator | ||
- [ ] Reader framework that be able to process different data | ||
- [ ] One reader from csv | ||
- [ ] Output formatter | ||
- [ ] Output to csv | ||
- [ ] Basic Textual UI | ||
- [x] Output parser - Capture detailed information | ||
- [ ] Documents | ||
- [ ] Git setup | ||
- [ ] Cotribution guid | ||
- [ ] End2End Examples | ||
- [ ] Release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
<!-- markdownlint-disable MD041 --> | ||
--8<-- "CHANGELOG.md" |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
<!-- markdownlint-disable MD041 --> | ||
--8<-- "README.md" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
--- | ||
site_name: YiVal | ||
nav: | ||
- Index: index.md | ||
- Contributing Guide: contributing.md | ||
- Change Log: changelog.md | ||
|
||
theme: | ||
name: material | ||
palette: | ||
cheme: slate | ||
primary: lightgreen | ||
accent: purple | ||
logo: fontawesome/brands/github | ||
favicon: fontawesome/brands/github | ||
icon: | ||
repo: fontawesome/brands/github | ||
features: | ||
- navigation.top | ||
- header.autohide | ||
font: false | ||
repo_url: https://github.com/YiVal/YiVal | ||
repo_name: YiVal/YiVal | ||
extra: | ||
homepage: https://yival.io | ||
|
||
markdown_extensions: | ||
- abbr | ||
- admonition | ||
- attr_list | ||
- extra | ||
- toc: | ||
permalink: true | ||
- pymdownx.arithmatex: | ||
generic: true | ||
- pymdownx.caret | ||
- pymdownx.keys | ||
- pymdownx.magiclink | ||
- pymdownx.mark | ||
- pymdownx.snippets | ||
- pymdownx.superfences: | ||
custom_fences: | ||
- name: mermaid | ||
class: mermaid | ||
format: !!python/name:pymdownx.superfences.fence_code_format | ||
- pymdownx.tabbed: | ||
alternate_style: true | ||
- pymdownx.tasklist: | ||
custom_checkbox: true | ||
- pymdownx.tilde | ||
|
||
plugins: | ||
- search: | ||
lang: | ||
- en | ||
- ja | ||
# - mkdocstrings: | ||
# watch: | ||
# - src | ||
# handlers: | ||
# python: | ||
# paths: [src] | ||
# import: | ||
# - https://docs.python.org/3/objects.inv | ||
- macros | ||
- git-revision-date-localized: | ||
type: timeago | ||
fallback_to_build_date: true |
Oops, something went wrong.