├── comparer
├── src
│ ├── react-app-env.d.ts
│ ├── App.tsx
│ ├── setupTests.ts
│ ├── App.test.tsx
│ ├── FileComparer.css
│ ├── Comparer.css
│ ├── index.css
│ ├── reportWebVitals.ts
│ ├── index.tsx
│ ├── components
│ │ ├── Prompt.css
│ │ └── Prompt.tsx
│ ├── FileLoaderTextArea.css
│ ├── Comparer.tsx
│ ├── useHooks.ts
│ ├── logo.svg
│ ├── FileComparer.tsx
│ └── FileLoaderTextArea.tsx
├── public
│ ├── robots.txt
│ ├── favicon.ico
│ ├── EG_fevicon.png
│ ├── logo_expgrad.png
│ ├── manifest.json
│ └── index.html
├── README.md
├── .gitignore
├── tsconfig.json
└── package.json
├── funtuner
├── custom_datasets
│ ├── __init__.py
│ ├── utils.py
│ └── sftdataset.py
├── config
│ ├── datasets.yaml
│ ├── trainer
│ │ └── default.yaml
│ ├── config.yaml
│ ├── zero2.json
│ ├── zero3.json
│ └── templates.json
├── sampling.py
├── utils.py
├── inference.py
└── trainer.py
├── evals
├── config
│ └── generation.yaml
├── sampler.py
└── results
│ └── results-open-llama-3B-orcastyle.json
├── run_gpu.sh
├── infer.sh
├── hf_upload.py
├── README.md
├── .gitignore
└── LICENSE
/comparer/src/react-app-env.d.ts:
--------------------------------------------------------------------------------
1 | ///
| {result.file.model_name} | 30 |{result.results.map((result, result_index) => (
31 |
32 | {(showSamplingMethod || showSamplingConfig) &&
41 | ))}
33 | {showSamplingMethod && }
36 | {outputIndex === -1 ?
37 | result.outputs.map((output, index) => Sampling config: {result.sampling_config} }
34 | {showSamplingConfig && Object.keys(result.sampling_params).map(param => {param}: {result.sampling_params[param].toString()} )}
35 | |
42 |
85 | {children}
86 |
87 | )
88 | }
89 | }}
90 | /> :