Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
N
NLP in diagnostic texts from nephropathology
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Maximilian Legnar
NLP in diagnostic texts from nephropathology
Commits
895d0dec
Commit
895d0dec
authored
Jul 13, 2022
by
Maximilian Legnar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added some empty folders for plots, tables and metrics
parent
fde99bb7
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
20 additions
and
13 deletions
+20
-13
.gitignore
TextClustering/cluster_metrics/.gitignore
+4
-0
clustering_pipeline.py
TextClustering/clustering_pipeline.py
+0
-13
.gitignore
TextClustering/plots/PCA/.gitignore
+4
-0
.gitignore
TextClustering/plots/UMAP/.gitignore
+4
-0
.gitignore
TextClustering/plots/histograms/.gitignore
+4
-0
.gitignore
TextClustering/tables/.gitignore
+4
-0
No files found.
TextClustering/cluster_metrics/.gitignore
0 → 100644
View file @
895d0dec
# Ignore everything in this directory
*
# Except this file
!.gitignore
\ No newline at end of file
TextClustering/clustering_pipeline.py
View file @
895d0dec
...
...
@@ -11,19 +11,6 @@ if not workdir[-len('nlp-in-diagnostic-texts-from-nephropathology'):] == 'nlp-in
print
(
"please make shure to run this script with working directory '.../path/to/nlp-in-diagnostic-texts-from-nephropathology'."
)
exit
(
1
)
# add some folders for metrics, plot, tables etc:
if
not
os
.
path
.
isdir
(
'TextClustering/cluster_metrics'
):
os
.
makedirs
(
'TextClustering/cluster_metrics'
)
if
not
os
.
path
.
isdir
(
'TextClustering/tables'
):
os
.
makedirs
(
'TextClustering/tables'
)
if
not
os
.
path
.
isdir
(
'TextClustering/plots'
):
os
.
makedirs
(
'TextClustering/plots'
)
if
not
os
.
path
.
isdir
(
'TextClustering/plots/histograms'
):
os
.
makedirs
(
'TextClustering/plots/histograms'
)
if
not
os
.
path
.
isdir
(
'TextClustering/plots/UMAP'
):
os
.
makedirs
(
'TextClustering/plots/UMAP'
)
if
not
os
.
path
.
isdir
(
'TextClustering/plots/PCA'
):
os
.
makedirs
(
'TextClustering/plots/PCA'
)
# Construct clustering pipeline. This is a suggestion how to use all the scripts.
# I also recommend to run each clustering script one by on to fintune the clusterings (with argument --find_k_value)
...
...
TextClustering/plots/PCA/.gitignore
0 → 100644
View file @
895d0dec
# Ignore everything in this directory
*
# Except this file
!.gitignore
\ No newline at end of file
TextClustering/plots/UMAP/.gitignore
0 → 100644
View file @
895d0dec
# Ignore everything in this directory
*
# Except this file
!.gitignore
\ No newline at end of file
TextClustering/plots/histograms/.gitignore
0 → 100644
View file @
895d0dec
# Ignore everything in this directory
*
# Except this file
!.gitignore
\ No newline at end of file
TextClustering/tables/.gitignore
0 → 100644
View file @
895d0dec
# Ignore everything in this directory
*
# Except this file
!.gitignore
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment