nwhamed commited on
Commit
d9c5254
1 Parent(s): b089a68

Upload folder using huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +18 -8
README.md CHANGED
@@ -16,11 +16,21 @@ Merged_Model is a merge of the following models using [mergekit](https://github.
16
 
17
  ## 🧩 Configuration
18
 
19
- ```yaml
20
- models:
21
- - model: google/gemma-7b
22
- parameters:
23
- ...
24
- - model: CohereForAI/c4ai-command-r-v01
25
- parameters:
26
- ...
 
 
 
 
 
 
 
 
 
 
 
16
 
17
  ## 🧩 Configuration
18
 
19
+ ```json{
20
+ "models": [
21
+ {
22
+ "model": "google/gemma-7b",
23
+ "parameters": {
24
+ "param1": "value1",
25
+ "param2": "value2"
26
+ }
27
+ },
28
+ {
29
+ "model": "CohereForAI/c4ai-command-r-v01",
30
+ "parameters": {
31
+ "param1": "value1",
32
+ "param2": "value2"
33
+ }
34
+ }
35
+ ]
36
+ }