Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
ilp_keyboard_layout_optimization
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Issue analytics
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
Björn Ludwig
ilp_keyboard_layout_optimization
Merge requests
!1
Introduce Chars
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Introduce Chars
introduce_chars
into
main
Overview
0
Commits
22
Pipelines
0
Changes
4
Merged
Björn Ludwig
requested to merge
introduce_chars
into
main
3 years ago
Overview
0
Commits
22
Pipelines
0
Changes
4
Expand
This improves the implementation by introducing a class to manage the characters
0
0
Merge request reports
Viewing commit
96ac13b9
Prev
Next
Show latest version
4 files
+
61
−
44
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
4
Search (e.g. *.vue) (Ctrl+P)
Unverified
96ac13b9
refactor(type_aliases): rename some type aliases, the module itself and include all in __all__
· 96ac13b9
Björn Ludwig
authored
3 years ago
src/ilp_keyboard_layout_optimization/data_aquisition/chars.py
+
4
−
2
Options
@@ -2,9 +2,11 @@
__all__
=
[
"
Chars
"
]
from
typing
import
Optional
,
Union
import
string
from
itertools
import
product
from
typing
import
Optional
,
Tuple
,
Union
from
src.ilp_keyboard_layout_optimization
.type_aliases
import
CharTuple
from
.
.type_aliases
import
Bigram
,
CharTuple
class
Chars
:
Loading