Upload README.md with huggingface_hub
Browse files
README.md
ADDED
@@ -0,0 +1,39 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: mit
|
3 |
+
tags:
|
4 |
+
- regression
|
5 |
+
- synthetic-data
|
6 |
+
- example-model
|
7 |
+
datasets:
|
8 |
+
- synthetic-dataset
|
9 |
+
---
|
10 |
+
|
11 |
+
# My Linear Regression Model
|
12 |
+
|
13 |
+
This model is a simple linear regression model trained on synthetic data.
|
14 |
+
|
15 |
+
## Model Details
|
16 |
+
|
17 |
+
- **Architecture**: Linear(10 -> 1)
|
18 |
+
- **Framework**: PyTorch
|
19 |
+
- **Task**: Regression
|
20 |
+
- **Datasets**: synthetic-dataset
|
21 |
+
|
22 |
+
## Metrics
|
23 |
+
|
24 |
+
| Metric | Value |
|
25 |
+
|--------|-------|
|
26 |
+
| MSE | 0.03 |
|
27 |
+
|
28 |
+
## Usage
|
29 |
+
|
30 |
+
To use this model, load it from the Hugging Face Hub:
|
31 |
+
|
32 |
+
```python
|
33 |
+
from transformers import AutoModel
|
34 |
+
model = AutoModel.from_pretrained("username/my_model_repo")
|
35 |
+
```
|
36 |
+
|
37 |
+
## Licensing
|
38 |
+
|
39 |
+
This model is shared under the mit license.
|