Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
Data Mining Project
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Desiree Wyrzykala
Data Mining Project
Merge requests
!15
merge with main delete prints
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
merge with main delete prints
dev_desi/ploy
into
main
Overview
0
Commits
1
Pipelines
0
Changes
2
Merged
Desiree Wyrzykala
requested to merge
dev_desi/ploy
into
main
2 months ago
Overview
0
Commits
1
Pipelines
0
Changes
2
Expand
0
0
Merge request reports
Compare
main
main (base)
and
latest version
latest version
3d61f41a
1 commit,
2 months ago
2 files
+
11
−
8
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
src/models/desi/call_poly.py
+
5
−
2
Options
@@ -8,7 +8,7 @@ from src.run_model_wrapper import main
#optimal hyperparameters from autors: 'POLY': {'periodicity': 1, 'power': 4}
params
=
{
'
periodicity
'
:
[
1
,
2
,
3
],
'
power
'
:
[
1
,
2
,
3
,
4
,
5
,
7
]
'
power
'
:
[
1
,
2
,
3
,
4
,
5
]
}
def
run_POLY
(
data
,
periodicity
=
1
,
power
=
3
,
n_jobs
=
1
):
@@ -22,4 +22,7 @@ model = 'POLY'
output_path
=
'
../../../docs/evaluation/
'
#writes results in .csv
main
(
run_POLY
,
params
,
model
,
data_folders
=
'
../../../data/
'
,
model_type
=
'
unsupervised
'
,
output_dir
=
output_path
)
\ No newline at end of file
main
(
run_POLY
,
params
,
model
,
data_folders
=
'
../../../data/
'
,
model_type
=
'
unsupervised
'
,
output_dir
=
output_path
)
#pip3 install -r requirements.txt
# python src/models/desi/call_poly.py
\ No newline at end of file
Loading