louisbrulenaudet commited on
Commit
c02ecf8
1 Parent(s): 7d72bd0

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +85 -32
README.md CHANGED
@@ -1,32 +1,85 @@
1
- ---
2
- license: apache-2.0
3
- dataset_info:
4
- features:
5
- - name: model
6
- dtype: string
7
- - name: query_prefix
8
- dtype: string
9
- - name: passage_prefix
10
- dtype: string
11
- - name: embedding_size
12
- dtype: int64
13
- - name: revision
14
- dtype: string
15
- - name: model_type
16
- dtype: string
17
- - name: torch_dtype
18
- dtype: string
19
- - name: max_length
20
- dtype: int64
21
- splits:
22
- - name: train
23
- num_bytes: 475
24
- num_examples: 5
25
- download_size: 4533
26
- dataset_size: 475
27
- configs:
28
- - config_name: default
29
- data_files:
30
- - split: train
31
- path: data/train-*
32
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ dataset_info:
4
+ features:
5
+ - name: model
6
+ dtype: string
7
+ - name: query_prefix
8
+ dtype: string
9
+ - name: passage_prefix
10
+ dtype: string
11
+ - name: embedding_size
12
+ dtype: int64
13
+ - name: revision
14
+ dtype: string
15
+ - name: model_type
16
+ dtype: string
17
+ - name: torch_dtype
18
+ dtype: string
19
+ - name: max_length
20
+ dtype: int64
21
+ splits:
22
+ - name: train
23
+ num_bytes: 475
24
+ num_examples: 5
25
+ download_size: 4533
26
+ dataset_size: 475
27
+ configs:
28
+ - config_name: default
29
+ data_files:
30
+ - split: train
31
+ path: data/train-*
32
+ task_categories:
33
+ - tabular-to-text
34
+ - tabular-classification
35
+ - sentence-similarity
36
+ - question-answering
37
+ language:
38
+ - en
39
+ tags:
40
+ - legal
41
+ - reference
42
+ - automation
43
+ - HFforLegal
44
+ pretty_name: Reference models for integration into HF for Legal
45
+ size_categories:
46
+ - n<1K
47
+ ---
48
+ ## Dataset Description
49
+ - **Repository:** https://huggingface.co/datasets/HFforLegal/embedding-models
50
+ - **Leaderboard:** N/A
51
+ - **Point of Contact:** [Louis Brulé Naudet](mailto:louisbrulenaudet@icloud.com)
52
+ -
53
+ # Reference models for integration into HF for Legal 🤗
54
+
55
+ This dataset comprises a collection of models aimed at streamlining and partially automating the embedding process. Each model entry within this dataset includes essential information such as model identifiers, embedding configurations, and specific parameters, ensuring that users can seamlessly integrate these models into their workflows with minimal setup and maximum efficiency.
56
+
57
+ ## Dataset Structure
58
+
59
+ | Field | Type | Description |
60
+ |-----------------|--------|-----------------------------------------------------------------------------|
61
+ | `model` | str | The identifier of the model, typically formatted as `organization/model-name`.|
62
+ | `query_prefix` | str | A prefix string added to query inputs to delineate them. |
63
+ | `passage_prefix`| str | A prefix string added to passage inputs to delineate them. |
64
+ | `embedding_size`| int | The dimensional size of the embedding vectors produced by the model. |
65
+ | `revision` | str | The specific revision identifier of the model to ensure consistency. |
66
+ | `model_type` | str | The architectural type of the model, such as `xlm-roberta` or `qwen2`. |
67
+ | `torch_dtype` | str | The data type utilized in PyTorch operations, such as `float32`. |
68
+ | `max_length` | int | The maximum input length the model can process, specified in tokens. |
69
+
70
+ ## Citing & Authors
71
+
72
+ If you use this dataset in your research, please use the following BibTeX entry.
73
+
74
+ ```BibTeX
75
+ @misc{HFforLegal2024,
76
+ author = {Louis Brulé Naudet},
77
+ title = {Reference models for integration into HF for Legal},
78
+ year = {2024}
79
+ howpublished = {\url{https://huggingface.co/datasets/HFforLegal/embedding-models}},
80
+ }
81
+ ```
82
+
83
+ ## Feedback
84
+
85
+ If you have any feedback, please reach out at [louisbrulenaudet@icloud.com](mailto:louisbrulenaudet@icloud.com).