MononitoGoswami commited on
Commit
ca58581
·
verified ·
1 Parent(s): 0cdac06

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +4 -4
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 moment import MOMENTPipeline
49
 
50
  model = MOMENTPipeline.from_pretrained(
51
  "AutonLab/MOMENT-1-large",
@@ -59,7 +59,7 @@ model.init()
59
 
60
  **Classification**
61
  ```python
62
- from moment import MOMENTPipeline
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 moment import MOMENTPipeline
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 moment import MOMENTPipeline
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",