Upload fine-tuned TSDAE model
Browse files- README.md +156 -144
- model.safetensors +1 -1
README.md
CHANGED
|
@@ -5,132 +5,140 @@ tags:
|
|
| 5 |
- feature-extraction
|
| 6 |
- dense
|
| 7 |
- generated_from_trainer
|
| 8 |
-
- dataset_size:
|
| 9 |
- loss:DenoisingAutoEncoderLoss
|
| 10 |
base_model: BAAI/bge-base-en-v1.5
|
| 11 |
widget:
|
| 12 |
-
- source_sentence:
|
| 13 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 14 |
sentences:
|
| 15 |
-
- '[SUBSECTION
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
in
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
the
|
| 22 |
-
|
| 23 |
-
|
| 24 |
-
|
| 25 |
-
|
| 26 |
-
|
| 27 |
-
|
| 28 |
-
|
| 29 |
-
|
| 30 |
-
|
| 31 |
-
|
| 32 |
-
|
| 33 |
-
|
| 34 |
-
|
| 35 |
-
|
| 36 |
-
|
| 37 |
-
|
| 38 |
-
|
| 39 |
-
|
| 40 |
-
revoke a home infusion therapy enrollment of the: [i supplier accreditation described
|
| 41 |
-
paragraph) 3) section . ITEM ii does not comply all of the provisions of—'
|
| 42 |
sentences:
|
| 43 |
-
- '[SUBSECTION
|
| 44 |
-
|
| 45 |
-
|
| 46 |
-
|
| 47 |
-
|
| 48 |
-
|
| 49 |
-
the
|
| 50 |
-
|
| 51 |
-
|
| 52 |
-
|
| 53 |
-
|
| 54 |
-
|
| 55 |
-
|
| 56 |
-
|
| 57 |
-
|
| 58 |
-
|
| 59 |
-
|
| 60 |
-
|
| 61 |
-
|
| 62 |
-
|
| 63 |
-
|
| 64 |
-
|
| 65 |
-
|
|
|
|
|
|
|
| 66 |
sentences:
|
| 67 |
-
- '[SUBSECTION
|
| 68 |
-
|
| 69 |
-
|
| 70 |
-
|
| 71 |
-
|
| 72 |
-
|
| 73 |
-
|
| 74 |
-
|
| 75 |
-
|
| 76 |
-
|
| 77 |
-
|
| 78 |
-
|
| 79 |
-
|
| 80 |
-
|
| 81 |
-
|
| 82 |
-
|
| 83 |
-
|
| 84 |
-
|
| 85 |
-
|
| 86 |
-
|
| 87 |
-
the
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 88 |
sentences:
|
| 89 |
-
-
|
| 90 |
-
|
| 91 |
-
|
| 92 |
-
|
| 93 |
-
|
| 94 |
-
|
| 95 |
-
|
| 96 |
-
|
| 97 |
-
|
| 98 |
-
|
| 99 |
-
|
| 100 |
-
|
| 101 |
-
|
| 102 |
-
|
| 103 |
-
|
| 104 |
-
|
| 105 |
-
|
| 106 |
-
|
| 107 |
-
|
| 108 |
-
|
| 109 |
-
|
| 110 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 111 |
sentences:
|
| 112 |
-
- '[
|
| 113 |
-
|
| 114 |
-
|
| 115 |
-
|
| 116 |
-
|
| 117 |
-
|
| 118 |
-
|
| 119 |
-
|
| 120 |
-
|
| 121 |
-
|
| 122 |
-
|
| 123 |
-
|
| 124 |
-
percent of the following: [CLAUSE 1] The actual charge for the service provided
|
| 125 |
-
that payment for such item is not included in the payment amount for other CORF
|
| 126 |
-
services paid under paragraphs (a) or (c); or [ENUM drug] (2) The amount determined
|
| 127 |
-
using the same methodology for drugs (as defined in § 414.704 of this chapter)
|
| 128 |
-
described in section 1842(o)(1) of the Act provided that payment for such is not
|
| 129 |
-
included in the payment amount for other CORF services paid under paragraphs (a)
|
| 130 |
-
or (c).'
|
| 131 |
-
- '[SUBSECTION a] Basis and purpose.. This section implements section 1902(a)(24)
|
| 132 |
-
of the Act, which requires that the State plan provide for consultative services
|
| 133 |
-
by State agencies to certain institutions furnishing Medicaid services.'
|
| 134 |
pipeline_tag: sentence-similarity
|
| 135 |
library_name: sentence-transformers
|
| 136 |
---
|
|
@@ -184,9 +192,9 @@ from sentence_transformers import SentenceTransformer
|
|
| 184 |
model = SentenceTransformer("sentence_transformers_model_id")
|
| 185 |
# Run inference
|
| 186 |
sentences = [
|
| 187 |
-
'[]
|
| 188 |
-
|
| 189 |
-
'[SUBSECTION a]
|
| 190 |
]
|
| 191 |
embeddings = model.encode(sentences)
|
| 192 |
print(embeddings.shape)
|
|
@@ -195,9 +203,9 @@ print(embeddings.shape)
|
|
| 195 |
# Get the similarity scores for the embeddings
|
| 196 |
similarities = model.similarity(embeddings, embeddings)
|
| 197 |
print(similarities)
|
| 198 |
-
# tensor([[1.0000,
|
| 199 |
-
# [
|
| 200 |
-
# [0.
|
| 201 |
```
|
| 202 |
|
| 203 |
<!--
|
|
@@ -242,27 +250,26 @@ You can finetune this model on your own dataset.
|
|
| 242 |
|
| 243 |
#### Unnamed Dataset
|
| 244 |
|
| 245 |
-
* Size: 24,
|
| 246 |
* Columns: <code>sentence_0</code> and <code>sentence_1</code>
|
| 247 |
* Approximate statistics based on the first 1000 samples:
|
| 248 |
-
| | sentence_0
|
| 249 |
-
|:--------|:------------------------------------------------------------------------------------|:------------------------------------------------------------------------------------|
|
| 250 |
-
| type | string
|
| 251 |
-
| details | <ul><li>min:
|
| 252 |
* Samples:
|
| 253 |
-
| sentence_0
|
| 254 |
-
|:----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
| 255 |
-
| <code>
|
| 256 |
-
| <code>(
|
| 257 |
-
| <code>
|
| 258 |
* Loss: [<code>DenoisingAutoEncoderLoss</code>](https://sbert.net/docs/package_reference/sentence_transformer/losses.html#denoisingautoencoderloss)
|
| 259 |
|
| 260 |
### Training Hyperparameters
|
| 261 |
#### Non-Default Hyperparameters
|
| 262 |
|
| 263 |
-
- `per_device_train_batch_size`:
|
| 264 |
-
- `per_device_eval_batch_size`:
|
| 265 |
-
- `num_train_epochs`: 2
|
| 266 |
- `multi_dataset_batch_sampler`: round_robin
|
| 267 |
|
| 268 |
#### All Hyperparameters
|
|
@@ -272,8 +279,8 @@ You can finetune this model on your own dataset.
|
|
| 272 |
- `do_predict`: False
|
| 273 |
- `eval_strategy`: no
|
| 274 |
- `prediction_loss_only`: True
|
| 275 |
-
- `per_device_train_batch_size`:
|
| 276 |
-
- `per_device_eval_batch_size`:
|
| 277 |
- `per_gpu_train_batch_size`: None
|
| 278 |
- `per_gpu_eval_batch_size`: None
|
| 279 |
- `gradient_accumulation_steps`: 1
|
|
@@ -285,7 +292,7 @@ You can finetune this model on your own dataset.
|
|
| 285 |
- `adam_beta2`: 0.999
|
| 286 |
- `adam_epsilon`: 1e-08
|
| 287 |
- `max_grad_norm`: 1
|
| 288 |
-
- `num_train_epochs`:
|
| 289 |
- `max_steps`: -1
|
| 290 |
- `lr_scheduler_type`: linear
|
| 291 |
- `lr_scheduler_kwargs`: {}
|
|
@@ -392,10 +399,15 @@ You can finetune this model on your own dataset.
|
|
| 392 |
### Training Logs
|
| 393 |
| Epoch | Step | Training Loss |
|
| 394 |
|:------:|:----:|:-------------:|
|
| 395 |
-
| 0.
|
| 396 |
-
| 0.
|
| 397 |
-
|
|
| 398 |
-
| 1.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 399 |
|
| 400 |
|
| 401 |
### Framework Versions
|
|
|
|
| 5 |
- feature-extraction
|
| 6 |
- dense
|
| 7 |
- generated_from_trainer
|
| 8 |
+
- dataset_size:24880
|
| 9 |
- loss:DenoisingAutoEncoderLoss
|
| 10 |
base_model: BAAI/bge-base-en-v1.5
|
| 11 |
widget:
|
| 12 |
+
- source_sentence: '[MASK] blood and blood components from previous donations in inventory.
|
| 13 |
+
[ITEM i] If the blood collecting establishment notifies the hospital that the
|
| 14 |
+
result of the supplemental (additional, more specific) test or other follow-up
|
| 15 |
+
testing required by FDA is negative, absent other informative test results, the
|
| 16 |
+
hospital may release the blood and blood components from quarantine. [ITEM ii]
|
| 17 |
+
If the blood collecting establishment notifies the hospital that the result of
|
| 18 |
+
the supplemental, (additional, more specific) test or other follow-up testing
|
| 19 |
+
required by FDA is positive, the hospital must—'
|
| 20 |
sentences:
|
| 21 |
+
- '[SUBSECTION b] Space rental.. As used in section 1128B of the Act, “remuneration”
|
| 22 |
+
does not include any payment made by a lessee to a lessor for the use of premises,
|
| 23 |
+
as long as all of the following six standards are met— [CLAUSE 1] The lease agreement
|
| 24 |
+
is set out in writing and signed by the parties. [CLAUSE 2] The lease covers all
|
| 25 |
+
of the premises leased between the parties for the term of the lease and specifies
|
| 26 |
+
the premises covered by the lease. [CLAUSE 3] If the lease is intended to provide
|
| 27 |
+
the lessee with access to the premises for periodic intervals of time, rather
|
| 28 |
+
than on a full-time basis for the term of the lease, the lease specifies exactly
|
| 29 |
+
the schedule of such intervals, their precise length, and the exact rent for such
|
| 30 |
+
intervals.'
|
| 31 |
+
- of the blood or blood product and quarantine all blood and blood components from
|
| 32 |
+
previous donations in inventory. [ITEM i] If the blood collecting establishment
|
| 33 |
+
notifies the hospital that the result of the supplemental (additional, more specific)
|
| 34 |
+
test or other follow-up testing required by FDA is negative, absent other informative
|
| 35 |
+
test results, the hospital may release the blood and blood components from quarantine.
|
| 36 |
+
[ITEM ii] If the blood collecting establishment notifies the hospital that the
|
| 37 |
+
result of the supplemental, (additional, more specific) test or other follow-up
|
| 38 |
+
testing required by FDA is positive, the hospital must—
|
| 39 |
+
- '[SUBSECTION d] Each application shall contain a statement that the respirator
|
| 40 |
+
has been pretested by the applicant as prescribed in § 84.64, and shall include
|
| 41 |
+
the results of such tests.'
|
| 42 |
+
- source_sentence: '[SUBSECTION b] Security.. A school must require security or endorsement
|
| 43 |
+
if the borrower is a [MASK] the applicable State law, the note signed by him or
|
| 44 |
+
her would not create a binding obligation. The school may not require security
|
| 45 |
+
or endorsement in any other circumstances.'
|
|
|
|
|
|
|
| 46 |
sentences:
|
| 47 |
+
- '[SUBSECTION b] Security.. A school must require security or endorsement if the
|
| 48 |
+
borrower is a minor and if, under the applicable State law, the note signed by
|
| 49 |
+
him or her would not create a binding obligation. The school may not require security
|
| 50 |
+
or endorsement in any other circumstances.'
|
| 51 |
+
- '[SUBSECTION b] The minimum flow of air required to maintain a positive pressure
|
| 52 |
+
in the respiratory-inlet covering throughout the entire breathing cycle will be
|
| 53 |
+
supplied to the wearer, provided however, that airflow shall not be less than
|
| 54 |
+
115 liters per minute for tight-fitting and not less than 170 liters per minute
|
| 55 |
+
for loose-fitting respiratory inlet-coverings.'
|
| 56 |
+
- '[SUBSECTION a] The following intermediate sanctions may be imposed and will continue
|
| 57 |
+
in effect until CMS is satisfied that the deficiencies that are the basis for
|
| 58 |
+
the sanction determination have been corrected and are not likely to recur: [CLAUSE
|
| 59 |
+
2] Suspension of payment to the MA organization for Medicare beneficiaries enrolled
|
| 60 |
+
after the date CMS notifies the organization of the intermediate sanction. [CLAUSE
|
| 61 |
+
3] Suspension of communication activities to Medicare beneficiaries by an MA organization,
|
| 62 |
+
as defined by CMS.'
|
| 63 |
+
- source_sentence: '[SUBSECTION c] Procedures the State uses to accomplish coordination
|
| 64 |
+
of CHIP with other public and private health insurance programs, sources of health
|
| 65 |
+
benefits coverage for children, and relevant child health programs, such as title
|
| 66 |
+
V, that provide health care services for low-income children. Such procedures
|
| 67 |
+
include those designed to— [CLAUSE 2] Assist in the enrollment in CHIP of children
|
| 68 |
+
determined ineligible for Medicaid; and [CLAUSE 3] Ensure coordination with other
|
| 69 |
+
insurance affordability programs in the [MASK] eligible individuals are enrolled
|
| 70 |
+
in the appropriate program, including through use of the procedures described
|
| 71 |
+
in § § 457.305, 457.348 and 457.350 of this part. [CITATIONS]'
|
| 72 |
sentences:
|
| 73 |
+
- '[SUBSECTION d] Changes in hospitals'' status.. For purposes of exclusion from
|
| 74 |
+
the prospective payment systems under this subpart, the status of each currently
|
| 75 |
+
participating hospital (excluded or not excluded) is determined at the beginning
|
| 76 |
+
of each cost reporting period and is effective for the entire cost reporting period.
|
| 77 |
+
Any changes in the status of the hospital are made only at the start of a cost
|
| 78 |
+
reporting period.'
|
| 79 |
+
- '[SUBSECTION c] Procedures the State uses to accomplish coordination of CHIP with
|
| 80 |
+
other public and private health insurance programs, sources of health benefits
|
| 81 |
+
coverage for children, and relevant child health programs, such as title V, that
|
| 82 |
+
provide health care services for low-income children. Such procedures include
|
| 83 |
+
those designed to— [CLAUSE 2] Assist in the enrollment in CHIP of children determined
|
| 84 |
+
ineligible for Medicaid; and [CLAUSE 3] Ensure coordination with other insurance
|
| 85 |
+
affordability programs in the determination of eligibility and enrollment in coverage
|
| 86 |
+
to ensure that all eligible individuals are enrolled in the appropriate program,
|
| 87 |
+
including through use of the procedures described in § § 457.305, 457.348 and
|
| 88 |
+
457.350 of this part. [CITATIONS]'
|
| 89 |
+
- '[SECTION HEADING] § 71.41 General provisions. Carriers arriving at a U.S. port
|
| 90 |
+
from a foreign area shall be subject to a sanitary inspection to determine whether
|
| 91 |
+
there exists rodent, insect, or other vermin infestation, contaminated food or
|
| 92 |
+
water, or other insanitary conditions requiring measures for the prevention of
|
| 93 |
+
the introduction, transmission, or spread of communicable disease.'
|
| 94 |
+
- source_sentence: '[SUBSECTION c] Adjustment for cost reporting period.. (1) If a
|
| 95 |
+
facility has a cost reporting [MASK] the contractor increases the labor-related
|
| 96 |
+
and nonlabor-related portions of the prospective payment rate that would otherwise
|
| 97 |
+
apply to the SNF by an adjustment factor. Each factor represents the projected
|
| 98 |
+
increase in the market basket index for a specific 12-month period. The factors
|
| 99 |
+
are used to account for inflation in costs for cost reporting periods beginning
|
| 100 |
+
after October 1. Adjustment factors are published in the annual notice of prospectively
|
| 101 |
+
determined payment rates described in § 413.320.'
|
| 102 |
sentences:
|
| 103 |
+
- '[SUBSECTION c] Adjustment for cost reporting period.. (1) If a facility has a
|
| 104 |
+
cost reporting period beginning after the beginning of the Federal fiscal year,
|
| 105 |
+
the contractor increases the labor-related and nonlabor-related portions of the
|
| 106 |
+
prospective payment rate that would otherwise apply to the SNF by an adjustment
|
| 107 |
+
factor. Each factor represents the projected increase in the market basket index
|
| 108 |
+
for a specific 12-month period. The factors are used to account for inflation
|
| 109 |
+
in costs for cost reporting periods beginning after October 1. Adjustment factors
|
| 110 |
+
are published in the annual notice of prospectively determined payment rates described
|
| 111 |
+
in § 413.320.'
|
| 112 |
+
- '[SUBSECTION B] QCDR measure considerations for approval include, but are not
|
| 113 |
+
limited to: [CLAUSE 1] () Measures that are outcome-based rather than clinical
|
| 114 |
+
process measures. [CLAUSE 3] () Measures that identify appropriate use of diagnosis
|
| 115 |
+
and therapeutics. [CLAUSE 5] () Measures that address the domain for patient and
|
| 116 |
+
caregiver experience. [CLAUSE 7] () Beginning with the CY 2021 performance period/2023
|
| 117 |
+
MIPS payment year - [ITEM i] () That QCDRs link their QCDR measures as feasible
|
| 118 |
+
to at least one cost measure, improvement activity, or an MVP at the time of self-nomination.
|
| 119 |
+
[ITEM ii] () In cases where a QCDR measure does not have a clear link to a cost
|
| 120 |
+
measure, improvement activity, or an MVP, CMS would consider exceptions if the
|
| 121 |
+
potential QCDR measure otherwise meets the QCDR measure requirements and considerations.'
|
| 122 |
+
- this section may be considered evidence that the MPPP supplier standards have
|
| 123 |
+
not been met. This information must be kept at each administrative location and
|
| 124 |
+
made available to CMS or its contractors upon request.
|
| 125 |
+
- source_sentence: '[SECTION HEADING] § 24.6 Performance appraisal system. The members
|
| 126 |
+
of the Service shall be subject to a performance appraisal system that is designed
|
| 127 |
+
to encourage excellence in performance and shall provide for periodic and systematic
|
| 128 |
+
assessment of the performance of members.'
|
| 129 |
sentences:
|
| 130 |
+
- '[SECTION HEADING] § 24.6 Performance appraisal system. The members of the Service
|
| 131 |
+
shall be subject to a performance appraisal system that is designed to encourage
|
| 132 |
+
excellence in performance and shall provide for periodic and systematic assessment
|
| 133 |
+
of the performance of members.'
|
| 134 |
+
- '[SUBSECTION g] Under the terms of the contract, the approved CAP vendor must
|
| 135 |
+
provide assistance to beneficiaries experiencing financial difficulty in paying
|
| 136 |
+
their cost-sharing amounts through any one or all of the following:'
|
| 137 |
+
- '[SUBSECTION a] General rules.. (1) An HMO or CMP that has an APCRP (as determined
|
| 138 |
+
under § 417.590) greater than its ACR (as determined under § 417.594) must elect
|
| 139 |
+
one of the options specified in paragraph (b) of this section. [CLAUSE 2] The
|
| 140 |
+
dollar value of the elected option must, over the course of a contract period,
|
| 141 |
+
be at least equal to the difference between the APCRP and the proposed ACR.'
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 142 |
pipeline_tag: sentence-similarity
|
| 143 |
library_name: sentence-transformers
|
| 144 |
---
|
|
|
|
| 192 |
model = SentenceTransformer("sentence_transformers_model_id")
|
| 193 |
# Run inference
|
| 194 |
sentences = [
|
| 195 |
+
'[SECTION HEADING] § 24.6 Performance appraisal system. The members of the Service shall be subject to a performance appraisal system that is designed to encourage excellence in performance and shall provide for periodic and systematic assessment of the performance of members.',
|
| 196 |
+
'[SECTION HEADING] § 24.6 Performance appraisal system. The members of the Service shall be subject to a performance appraisal system that is designed to encourage excellence in performance and shall provide for periodic and systematic assessment of the performance of members.',
|
| 197 |
+
'[SUBSECTION a] General rules.. (1) An HMO or CMP that has an APCRP (as determined under § 417.590) greater than its ACR (as determined under § 417.594) must elect one of the options specified in paragraph (b) of this section. [CLAUSE 2] The dollar value of the elected option must, over the course of a contract period, be at least equal to the difference between the APCRP and the proposed ACR.',
|
| 198 |
]
|
| 199 |
embeddings = model.encode(sentences)
|
| 200 |
print(embeddings.shape)
|
|
|
|
| 203 |
# Get the similarity scores for the embeddings
|
| 204 |
similarities = model.similarity(embeddings, embeddings)
|
| 205 |
print(similarities)
|
| 206 |
+
# tensor([[1.0000, 1.0000, 0.6782],
|
| 207 |
+
# [1.0000, 1.0000, 0.6782],
|
| 208 |
+
# [0.6782, 0.6782, 1.0000]])
|
| 209 |
```
|
| 210 |
|
| 211 |
<!--
|
|
|
|
| 250 |
|
| 251 |
#### Unnamed Dataset
|
| 252 |
|
| 253 |
+
* Size: 24,880 training samples
|
| 254 |
* Columns: <code>sentence_0</code> and <code>sentence_1</code>
|
| 255 |
* Approximate statistics based on the first 1000 samples:
|
| 256 |
+
| | sentence_0 | sentence_1 |
|
| 257 |
+
|:--------|:-------------------------------------------------------------------------------------|:-------------------------------------------------------------------------------------|
|
| 258 |
+
| type | string | string |
|
| 259 |
+
| details | <ul><li>min: 35 tokens</li><li>mean: 105.52 tokens</li><li>max: 335 tokens</li></ul> | <ul><li>min: 37 tokens</li><li>mean: 112.72 tokens</li><li>max: 335 tokens</li></ul> |
|
| 260 |
* Samples:
|
| 261 |
+
| sentence_0 | sentence_1 |
|
| 262 |
+
|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
| 263 |
+
| <code>[ITEM i] The name and TIN of the CJR collaborator and the name, TIN, and NPI of the collaboration agent. [ITEM ii] The start date and, if applicable, end date, for the distribution arrangement between the CJR collaborator and the collaboration agent. [ENUM Downstream collaboration agents.] (3) For each physician, nonphysician practitioner, or therapist who is a downstream collaboration agent during the period of the CJR performance year specified by CMS— [ITEM i] The name and TIN of the CJR collaborator and the [MASK] TIN, and NPI of the downstream collaboration</code> | <code>[ITEM i] The name and TIN of the CJR collaborator and the name, TIN, and NPI of the collaboration agent. [ITEM ii] The start date and, if applicable, end date, for the distribution arrangement between the CJR collaborator and the collaboration agent. [ENUM Downstream collaboration agents.] (3) For each physician, nonphysician practitioner, or therapist who is a downstream collaboration agent during the period of the CJR performance year specified by CMS— [ITEM i] The name and TIN of the CJR collaborator and the name and TIN of the collaboration agent and the name, TIN, and NPI of the downstream collaboration</code> |
|
| 264 |
+
| <code>[SUBSECTION a] Termination of agreements.. (1) CMS may terminate any approved agreement if it finds, after the procedures described in this paragraph are followed that the State system does not satisfactorily meet the requirements of section 1886(c) of the Act or the regulations in this subpart. A termination must be effective on the last day of a calendar quarter. [CLAUSE 2] CMS will give the State reasonable notice of the proposed termination of an agreement [MASK] days before the effective date of the termination. [CLAUSE 3] CMS will give the State the opportunity to present evidence to refute the finding.</code> | <code>[SUBSECTION a] Termination of agreements.. (1) CMS may terminate any approved agreement if it finds, after the procedures described in this paragraph are followed that the State system does not satisfactorily meet the requirements of section 1886(c) of the Act or the regulations in this subpart. A termination must be effective on the last day of a calendar quarter. [CLAUSE 2] CMS will give the State reasonable notice of the proposed termination of an agreement and of the reasons for the termination at least 90 days before the effective date of the termination. [CLAUSE 3] CMS will give the State the opportunity to present evidence to refute the finding.</code> |
|
| 265 |
+
| <code>[CLAUSE 4] The amount of the post-TDAPA add-on payment adjustment is equal to 65 percent of the amount calculated in paragraph (g)(2) of this section, multiplied by the reduction factor specified in paragraph (g)(3) of this section, and multiplied by the latest available forecast of annual growth in the ESRD bundled market basket composite price proxy for pharmaceuticals. [CLAUSE 5] The post-TDAPA [MASK] ESRD PPS claim is adjsuted by any applicable patient-level case-mix adjustments under § 413.235. [CITATIONS]</code> | <code>[CLAUSE 4] The amount of the post-TDAPA add-on payment adjustment is equal to 65 percent of the amount calculated in paragraph (g)(2) of this section, multiplied by the reduction factor specified in paragraph (g)(3) of this section, and multiplied by the latest available forecast of annual growth in the ESRD bundled market basket composite price proxy for pharmaceuticals. [CLAUSE 5] The post-TDAPA add-on payment adjustment that is applied to an ESRD PPS claim is adjsuted by any applicable patient-level case-mix adjustments under § 413.235. [CITATIONS]</code> |
|
| 266 |
* Loss: [<code>DenoisingAutoEncoderLoss</code>](https://sbert.net/docs/package_reference/sentence_transformer/losses.html#denoisingautoencoderloss)
|
| 267 |
|
| 268 |
### Training Hyperparameters
|
| 269 |
#### Non-Default Hyperparameters
|
| 270 |
|
| 271 |
+
- `per_device_train_batch_size`: 16
|
| 272 |
+
- `per_device_eval_batch_size`: 16
|
|
|
|
| 273 |
- `multi_dataset_batch_sampler`: round_robin
|
| 274 |
|
| 275 |
#### All Hyperparameters
|
|
|
|
| 279 |
- `do_predict`: False
|
| 280 |
- `eval_strategy`: no
|
| 281 |
- `prediction_loss_only`: True
|
| 282 |
+
- `per_device_train_batch_size`: 16
|
| 283 |
+
- `per_device_eval_batch_size`: 16
|
| 284 |
- `per_gpu_train_batch_size`: None
|
| 285 |
- `per_gpu_eval_batch_size`: None
|
| 286 |
- `gradient_accumulation_steps`: 1
|
|
|
|
| 292 |
- `adam_beta2`: 0.999
|
| 293 |
- `adam_epsilon`: 1e-08
|
| 294 |
- `max_grad_norm`: 1
|
| 295 |
+
- `num_train_epochs`: 3
|
| 296 |
- `max_steps`: -1
|
| 297 |
- `lr_scheduler_type`: linear
|
| 298 |
- `lr_scheduler_kwargs`: {}
|
|
|
|
| 399 |
### Training Logs
|
| 400 |
| Epoch | Step | Training Loss |
|
| 401 |
|:------:|:----:|:-------------:|
|
| 402 |
+
| 0.3215 | 500 | 5.7169 |
|
| 403 |
+
| 0.6431 | 1000 | 4.3196 |
|
| 404 |
+
| 0.9646 | 1500 | 3.8613 |
|
| 405 |
+
| 1.2862 | 2000 | 3.5443 |
|
| 406 |
+
| 1.6077 | 2500 | 3.357 |
|
| 407 |
+
| 1.9293 | 3000 | 3.2075 |
|
| 408 |
+
| 2.2508 | 3500 | 3.0466 |
|
| 409 |
+
| 2.5723 | 4000 | 2.9261 |
|
| 410 |
+
| 2.8939 | 4500 | 2.8525 |
|
| 411 |
|
| 412 |
|
| 413 |
### Framework Versions
|
model.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 437951328
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f6ec979ed0a5f997c093a4486ae7cb95684d851792e427c26d525954b520a966
|
| 3 |
size 437951328
|