JeffYang52415 commited on
Commit
752aaa2
·
unverified ·
1 Parent(s): 2a9fa9a

feat: to huggingface space

Browse files
Files changed (2) hide show
  1. Dockerfile +2 -1
  2. README.md +11 -0
Dockerfile CHANGED
@@ -65,4 +65,5 @@ COPY --chown=app:app . .
65
  EXPOSE 7860
66
 
67
  # Run the application
68
- CMD ["python", "app.py"]
 
 
65
  EXPOSE 7860
66
 
67
  # Run the application
68
+ ENTRYPOINT ["python"]
69
+ CMD ["app.py"]
README.md CHANGED
@@ -1,3 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
1
  # LLMDataParser
2
 
3
  **LLMDataParser** is a Python library that provides parsers for benchmark datasets used in evaluating Large Language Models (LLMs). It offers a unified interface for loading and parsing datasets like **MMLU**, **GSM8k**, and others, streamlining dataset preparation for LLM evaluation. The library aims to simplify the process of working with common LLM benchmark datasets through a consistent API.
 
1
+ ---
2
+ title: LLMEval Dataset Parser
3
+ emoji: ⚡
4
+ colorFrom: green
5
+ colorTo: gray
6
+ sdk: docker
7
+ pinned: false
8
+ license: mit
9
+ short_description: A collection of parsers for LLM benchmark datasets
10
+ ---
11
+
12
  # LLMDataParser
13
 
14
  **LLMDataParser** is a Python library that provides parsers for benchmark datasets used in evaluating Large Language Models (LLMs). It offers a unified interface for loading and parsing datasets like **MMLU**, **GSM8k**, and others, streamlining dataset preparation for LLM evaluation. The library aims to simplify the process of working with common LLM benchmark datasets through a consistent API.