Update README.md
Browse files
README.md
CHANGED
@@ -45,7 +45,7 @@ To load the pre-trained model for one of the tasks, use one of the following cod
|
|
45 |
|
46 |
**Forecasting**
|
47 |
```python
|
48 |
-
from
|
49 |
|
50 |
model = MOMENTPipeline.from_pretrained(
|
51 |
"AutonLab/MOMENT-1-large",
|
@@ -59,7 +59,7 @@ model.init()
|
|
59 |
|
60 |
**Classification**
|
61 |
```python
|
62 |
-
from
|
63 |
|
64 |
model = MOMENTPipeline.from_pretrained(
|
65 |
"AutonLab/MOMENT-1-large",
|
@@ -74,7 +74,7 @@ model.init()
|
|
74 |
|
75 |
**Anomaly Detection, Imputation, and Pre-training**
|
76 |
```python
|
77 |
-
from
|
78 |
|
79 |
model = MOMENTPipeline.from_pretrained(
|
80 |
"AutonLab/MOMENT-1-large",
|
@@ -85,7 +85,7 @@ mode.init()
|
|
85 |
|
86 |
**Representation Learning**
|
87 |
```python
|
88 |
-
from
|
89 |
|
90 |
model = MOMENTPipeline.from_pretrained(
|
91 |
"AutonLab/MOMENT-1-large",
|
|
|
45 |
|
46 |
**Forecasting**
|
47 |
```python
|
48 |
+
from momentfm import MOMENTPipeline
|
49 |
|
50 |
model = MOMENTPipeline.from_pretrained(
|
51 |
"AutonLab/MOMENT-1-large",
|
|
|
59 |
|
60 |
**Classification**
|
61 |
```python
|
62 |
+
from momentfm import MOMENTPipeline
|
63 |
|
64 |
model = MOMENTPipeline.from_pretrained(
|
65 |
"AutonLab/MOMENT-1-large",
|
|
|
74 |
|
75 |
**Anomaly Detection, Imputation, and Pre-training**
|
76 |
```python
|
77 |
+
from momentfm import MOMENTPipeline
|
78 |
|
79 |
model = MOMENTPipeline.from_pretrained(
|
80 |
"AutonLab/MOMENT-1-large",
|
|
|
85 |
|
86 |
**Representation Learning**
|
87 |
```python
|
88 |
+
from momentfm import MOMENTPipeline
|
89 |
|
90 |
model = MOMENTPipeline.from_pretrained(
|
91 |
"AutonLab/MOMENT-1-large",
|