Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
a6e21d0
adding a tsfm revision
DhavalRepo18 Jun 21, 2026
7b6aac2
adding model store and feature store
DhavalRepo18 Jun 22, 2026
d561030
revised code
DhavalRepo18 Jun 22, 2026
99239d5
revised code
DhavalRepo18 Jun 22, 2026
94b4eda
revised code and models
DhavalRepo18 Jun 23, 2026
8438d89
revised pointer
DhavalRepo18 Jun 23, 2026
f0209c0
adding tsfm server
DhavalRepo18 Jun 23, 2026
49364d1
revised code
DhavalRepo18 Jun 23, 2026
f0ea2d0
revised tools
DhavalRepo18 Jun 23, 2026
51f6c16
Merge branch 'main' into TSFM_revision
DhavalRepo18 Jun 30, 2026
3dd7a9c
Merge branch 'main' into TSFM_revision
DhavalRepo18 Jul 1, 2026
3ea22fc
added PyOD adjustmeent
DhavalRepo18 Jul 9, 2026
51f85ff
revised code
DhavalRepo18 Jul 9, 2026
f45188d
revised code
DhavalRepo18 Jul 9, 2026
e52de16
formatting of composition
DhavalRepo18 Jul 9, 2026
8d023fc
i removed them
DhavalRepo18 Jul 9, 2026
d9beda4
adding auto-arima, chronos, and etc
DhavalRepo18 Jul 9, 2026
7f0fa16
revised code
DhavalRepo18 Jul 9, 2026
badcda2
Merge branch 'main' into TSFM_revision
DhavalRepo18 Jul 9, 2026
b0fb7c8
formatting the file
DhavalRepo18 Jul 10, 2026
bc4a34e
revised code
DhavalRepo18 Jul 10, 2026
512b908
revised code
DhavalRepo18 Jul 10, 2026
b52c8d0
revised code
DhavalRepo18 Jul 10, 2026
805ab92
adding feature
DhavalRepo18 Jul 10, 2026
2b2ad34
added feature extraction
DhavalRepo18 Jul 11, 2026
2eaa484
revised code
DhavalRepo18 Jul 11, 2026
9ef33c3
revised tool and all
DhavalRepo18 Jul 11, 2026
5201394
revised feature extraction
DhavalRepo18 Jul 11, 2026
aa2519a
revisded code
DhavalRepo18 Jul 11, 2026
043ca35
revised catalog
DhavalRepo18 Jul 11, 2026
c44c038
revised code
DhavalRepo18 Jul 11, 2026
6222db4
revised score
DhavalRepo18 Jul 11, 2026
ec477e6
revised code
DhavalRepo18 Jul 11, 2026
71449bc
added
DhavalRepo18 Jul 11, 2026
a9bab4d
revised doc string
DhavalRepo18 Jul 11, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ dependencies = [
"scipy>=1.10.0",
"sktime>=1.0.1",
"granite-tsfm>=0.3.5",
"statsmodels",
"pywavelets",
]

[project.scripts]
Expand Down
2 changes: 2 additions & 0 deletions src/couchdb/.allowed_datafiles
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,6 @@ src/couchdb/scenarios_data/shared/iot/hydraulic_pump_1.json
src/couchdb/scenarios_data/shared/iot/metro_pump_1.json
src/couchdb/scenarios_data/shared/iot/motor_01.json
src/couchdb/scenarios_data/shared/work_order/workorders.csv
src/couchdb/scenarios_data/shared/tsfm/feature_catalog.json
src/couchdb/scenarios_data/shared/tsfm/model_catalog.json
src/couchdb/scenarios_data/shared/iot/asset_profile_sample.json
39 changes: 39 additions & 0 deletions src/couchdb/collections.json
Original file line number Diff line number Diff line change
Expand Up @@ -143,5 +143,44 @@
],
"id_prefix": "fc",
"indexes": []
},
"model_catalog": {
"format": "json",
"primary_key": [
"model_id"
],
"id_prefix": "model",
"indexes": [
[
"task_ids"
],
[
"status"
],
[
"model_family"
],
[
"domain"
]
]
},
"feature_catalog": {
"format": "json",
"primary_key": [
"feature_id"
],
"id_prefix": "feature",
"indexes": [
[
"scenario_categories"
],
[
"kind"
],
[
"status"
]
]
}
}
2 changes: 2 additions & 0 deletions src/couchdb/scenarios_data/default/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@
],
"asset": "shared/iot/asset_profile_sample.json",
"vibration": "shared/iot/motor_01.json",
"model_catalog": "shared/tsfm/model_catalog.json",
"feature_catalog": "shared/tsfm/feature_catalog.json",
"catalog": [
"shared/catalog/assets.csv",
"shared/catalog/failure_modes.csv",
Expand Down
Loading