Alexander Seifert commited on
Commit
0211266
1 Parent(s): c8d36ae
Files changed (2) hide show
  1. Makefile +1 -0
  2. html/index.md +1 -1
Makefile CHANGED
@@ -3,6 +3,7 @@ doc:
3
 
4
  vis2: doc
5
  pandoc html/index.md -s -o html/index.html
 
6
 
7
  run:
8
  python -m streamlit run src/app.py
 
3
 
4
  vis2: doc
5
  pandoc html/index.md -s -o html/index.html
6
+ zip -r vis2.zip doc html src Makefile presentation.pdf requirements.txt
7
 
8
  run:
9
  python -m streamlit run src/app.py
html/index.md CHANGED
@@ -5,7 +5,7 @@ subtitle: "Error Analysis for NER models & datasets"
5
 
6
  Error Analysis is an important but often overlooked part of the data science project lifecycle, for which there is still very little tooling available. Practitioners tend to write throwaway code or, worse, skip this crucial step of understanding their models' errors altogether. This project tries to provide an extensive toolkit to probe any NER model/dataset combination, find labeling errors and understand the models' and datasets' limitations, leading the user on her way to further improvements.
7
 
8
- [Documentation](../doc/index.html) | [Slides](../presentation.pdf)
9
 
10
  ## Getting started
11
 
 
5
 
6
  Error Analysis is an important but often overlooked part of the data science project lifecycle, for which there is still very little tooling available. Practitioners tend to write throwaway code or, worse, skip this crucial step of understanding their models' errors altogether. This project tries to provide an extensive toolkit to probe any NER model/dataset combination, find labeling errors and understand the models' and datasets' limitations, leading the user on her way to further improvements.
7
 
8
+ [Documentation](../doc/index.html) | [Slides](../presentation.pdf) | [Github](https://github.com/aseifert/ExplaiNER)
9
 
10
  ## Getting started
11