Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
cleaning-portalmec
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Harbor Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Richard Fernando Heise Ferreira
cleaning-portalmec
Commits
847c7d33
Commit
847c7d33
authored
7 years ago
by
bfs15
Browse files
Options
Downloads
Patches
Plain Diff
sort order fix, started wdf fun
parent
c2ea6f32
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
lib/tasks/tag_clustering.rake
+18
-2
18 additions, 2 deletions
lib/tasks/tag_clustering.rake
with
18 additions
and
2 deletions
lib/tasks/tag_clustering.rake
+
18
−
2
View file @
847c7d33
...
...
@@ -135,6 +135,22 @@ namespace :tag do
private
def
tagWdfSorted
()
tagWdf
=
[]
Tag
.
all
.
each_with_index
do
|
t
,
i
|
tagWdf
<<
[
t
.
id
,
wdfSearch
(
t
.
name
)]
end
tagWdf
=
tagWdf
.
sort_by
{
|
t
|
t
[
1
]
}
return
tagWdf
end
def
wdfSearch
(
tname
)
end
def
merge
(
search_los
,
relevant_los
)
merged_los
=
[]
...
...
@@ -172,8 +188,8 @@ namespace :tag do
end
merged_los
.
push
(
*
relevant_los
)
merged_los
=
merged_los
.
sort_by
{
|
lo
|
lo
[
1
]
}
return
merged_los
.
reverse
.
first
(
50
)
merged_los
=
merged_los
.
sort_by
{
|
lo
|
lo
[
1
]
*-
1
}
return
merged_los
.
first
(
50
)
end
# hash[id1][id2] will equal how many times tags with id1 and id2 appear together on a LO
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment