diff --git a/app.py b/app.py index 45838da38951f9f96b7b2f5f7bea860eb0a2d003..f49b10d4a915c48a9d3e4b58b612480e6a0f0e6d 100644 --- a/app.py +++ b/app.py @@ -387,7 +387,7 @@ Furthermore the server-client-model is the established communication paradigms f db.session.add(method3) method3 = Method(id=19, name="dependency parsing", - description="Create syntactic trees from input text using mostly unsupervised learning on manually annotated treebanks (<<Ignatow_etal2017>>,61).", + description="Create corresponding syntactic, semantic or morphologic trees from input text.", parent=method2) db.session.add(method3) method4 = Method(id=20, @@ -401,7 +401,7 @@ Furthermore the server-client-model is the established communication paradigms f parent=method2) db.session.add(method3) method2 = Method(id=22, name="information extraction", - description="Finding factual information(e.g. places in free text", + description="Extract factual information(e.g. people, places or situations) in free text.", parent=method1) db.session.add(method3) method3 = Method(id=23, @@ -411,96 +411,116 @@ Furthermore the server-client-model is the established communication paradigms f db.session.add(method3) method3 = Method(id=24, name="relation extraction", - description="", + description="Extract relationships between entities.", parent=method3) db.session.add(method3) method2 = Method(id=25,name="information retrieval", description="", parent=method1) db.session.add(method2) - method2 = Method(id=26,name="statistical analysis", + method2 = Method(id=26,name="indexing", + description="", + parent=method1) + db.session.add(method2) + method2 = Method(id=27,name="searching", description="", parent=method1) db.session.add(method2) - method3 = Method(id=27,name="frequency analysis", + method2 = Method(id=28,name="statistical analysis", + description="", + parent=method1) + db.session.add(method2) + method3 = Method(id=29,name="frequency analysis", description="Descriptiv statistical analysis by using text fragments", parent=method2) db.session.add(method3) - method3 = Method(id=28,name="classification/machine learning", + method3 = Method(id=30,name="classification/machine learning", description="", parent=method2) db.session.add(method3) - method4 = Method(id=29,name="supervised classification", + method4 = Method(id=31,name="supervised classification", description="", parent=method3) db.session.add(method4) - method4 = Method(id=30,name="topic models", + method4 = Method(id=32,name="topic modelling", description="", parent=method3) db.session.add(method4) - method4 = Method(id=31,name="sentiment analysis", + method4 = Method(id=33,name="latent dirichlet allocation", + description="", + parent=method3) + db.session.add(method4) + method4 = Method(id=34,name="structural topic modelling", + description="", + parent=method3) + db.session.add(method4) + method4 = Method(id=35,name="latent semantic analysis", + description="", + parent=method3) + db.session.add(method4) + method4 = Method(id=36,name="sentiment analysis", description="'Subjectivity and sentiment analysis focuses on the automatic identification of private states, such as opinions, emotions, sentiments, evaluations, beliefs, and speculations in natural language. While subjectivity classification labels text as either subjective or objective, sentiment classification adds an additional level of granularity, by further classifying subjective text as either positive, negative, or neutral.' (<<Ignatow_etal2017>> pp. 148)", parent=method3) db.session.add(method4) - method4 = Method(id=32,name="automated narrative, argumentative structures, irony, metaphor detection/extraction", + method4 = Method(id=37,name="automated narrative, argumentative structures, irony, metaphor detection/extraction", description="", parent=method3) db.session.add(method4) - method3 = Method(id=33,name="network analysis", + method3 = Method(id=38,name="network analysis", description="", parent=method2) db.session.add(method3) - method4 = Method(id=34, name="knowledge graph construction", + method4 = Method(id=39, name="knowledge graph construction", description="finding factual information in free text", parent=method3) db.session.add(method4) - method2 = Method(id=35,name="data visualization", + method2 = Method(id=40,name="data visualization", description="", parent=method1) db.session.add(method2) - method3 = Method(id=36,name="dynamic visualizations", + method3 = Method(id=41,name="dynamic visualizations", description="", parent=method2) db.session.add(method3) - method1 = Method(id=37,name="science practice", + method1 = Method(id=42,name="science practice", description="", parent=method) db.session.add(method1) - method2 = Method(id=38,name="digital research design", + method2 = Method(id=43,name="digital research design", description="", parent=method1) db.session.add(method2) - method2 = Method(id=39,name="collaborative work", + method2 = Method(id=44,name="collaborative work", description="", parent=method1) db.session.add(method2) - method2 = Method(id=40,name="digital communication", + method2 = Method(id=45,name="digital communication", description="", parent=method1) db.session.add(method2) - method1 = Method(id=41,name="statistical modeling", + method1 = Method(id=46,name="statistical modeling", description="", parent=method) db.session.add(method1) - method2 = Method(id=42,name="regression analysis", + method2 = Method(id=47,name="regression analysis", description="", parent=method1) db.session.add(method2) - method2 = Method(id=43,name="time-series analysis", + method2 = Method(id=48,name="time-series analysis", description="", parent=method1) db.session.add(method2) - method2 = Method(id=44,name="agent-based modeling", + method2 = Method(id=49,name="agent-based modeling", description="", parent=method1) db.session.add(method2) - method2 = Method(id=45,name="digital communication", + method2 = Method(id=50,name="digital communication", description="", parent=method1) db.session.add(method2) - method1 = Method(id=46,name="social complexity modeling/ social simulation", + method1 = Method(id=51,name="social complexity modeling/ social simulation", description="", parent=method) db.session.add(method1) diff --git a/sample_db.sqlite b/sample_db.sqlite index 1f327e1a1de8264c04b8213dac76cadc1cc3f59d..5d3af6d1c13fadaf563d0433f45e9ec3486501ad 100644 Binary files a/sample_db.sqlite and b/sample_db.sqlite differ