Search results for: minimal social networks
Commenced in January 2007
Frequency: Monthly
Edition: International
Paper Count: 12218

Search results for: minimal social networks

10538 Optimization of Monitoring Networks for Air Quality Management in Urban Hotspots

Authors: Vethathirri Ramanujam Srinivasan, S. M. Shiva Nagendra

Abstract:

Air quality management in urban areas is a serious concern in both developed and developing countries. In this regard, more number of air quality monitoring stations are planned to mitigate air pollution in urban areas. In India, Central Pollution Control Board has set up 574 air quality monitoring stations across the country and proposed to set up another 500 stations in the next few years. The number of monitoring stations for each city has been decided based on population data. The setting up of ambient air quality monitoring stations and their operation and maintenance are highly expensive. Therefore, there is a need to optimize monitoring networks for air quality management. The present paper discusses the various methods such as Indian Standards (IS) method, US EPA method and European Union (EU) method to arrive at the minimum number of air quality monitoring stations. In addition, optimization of rain-gauge method and Inverse Distance Weighted (IDW) method using Geographical Information System (GIS) are also explored in the present work for the design of air quality network in Chennai city. In summary, additionally 18 stations are required for Chennai city, and the potential monitoring locations with their corresponding land use patterns are ranked and identified from the 1km x 1km sized grids.

Keywords: air quality monitoring network, inverse distance weighted method, population based method, spatial variation

Procedia PDF Downloads 177
10537 The Biopsychosocial Effects of Amputation on Transtibial Amputees in Kwazulu-Natal

Authors: Riyona Chetty, Raisuyah Bhagwan, Nalini Govender

Abstract:

Background: A myriad of physical, psychosocial, and environmental sequelae are associated with limb loss. However, there is a paucity of empirical South African data, which focuses on these sequelae, how they interface with the amputee’s quality of life as well as the challenges they experience following amputation. Objective: This study sought to explore the biopsychosocial effects of amputation and how amputation affected the quality of life of transtibial amputees. Setting: Participants were recruited from a medical facility, under the KwaZulu-Natal Department of Health in South Africa. Methods: A qualitative approach guided this study. Data was collected using one-on-one interviews with 14 unilateral transtibial amputees. Data was analysed thematically. Results: Five broad themes emerged from the inquiry, which captured amputees’ experiences of phantom limb pain, body image disturbances, and their challenges related to adapting to daily activities. Participants also expressed the salience of familial support as well as the importance of psychological interventions to cope. Conclusion: The findings suggested that support networks and professional psychological intervention are imperative in facilitating successful adjustment to the amputation experience. Raising awareness of limb loss in both, rural and urban settings may help reduce the stigma attached to it. Contribution: Quality of life comprises several domains, namely physical, psychological, environmental, and social albeit limited local and international data exists regarding the environmental and social effects. This study brought to the fore the positive and negative effects of amputation in each domain, as well as various strategies that facilitate successful adjustment to amputation.

Keywords: amputation, quality of life, biopsychosocial, phantom limb pain, body image, support

Procedia PDF Downloads 43
10536 Legal Framework of Islamic Social Finance to Support M40 Income Group in Malaysia

Authors: Azlin Suzana Salim

Abstract:

The 12th Malaysian Plan 2021-2025, issued by the Economic Planning Unit in 2021, outlined one of the six important priorities to support M40 towards equitable society. The Financial Sector Blueprint 2022-2026, released by Bank Negara Malaysia in 2022, further outlined the fifth key thrust focusing on Islamic Social Finance. The purpose of this research is to examine the Legal Framework of bridging Islamic Social Finance to support M40 Income Group in Malaysia. This study adopts a doctrinal legal research method to examine the laws and regulations governing Islamic Social Finance in Malaysia and a qualitative method to examine the Islamic Social Finance Instrument to support the M40 income group. The implication of this study is important to propose the legal framework and bridge the Islamic Social Finance instrument to support the M40 income group in Malaysia. The significance of this study is to realign between priorities of the 12th Malaysian Plan 2021-2025 and the Financial Sector Blueprint 2022-2026.

Keywords: legal framework, Islamic social finance, m40 income group, law and regulation

Procedia PDF Downloads 56
10535 Envisioning Process in Medium Enterprises: An Exploratory Study of Cambodian Living Arts

Authors: Alexandre Bédard, Caroline Coulombe, Jonathan Harvey

Abstract:

Envisioning process (EP) in medium enterprises is treated equally in very small enterprises. Building on the concept of social construction, this study aims to explore how envisioning is constructed in a medium enterprise in which stakeholders are involved and how it is influenced. We use a unique case method based on qualitative data collected through 11 interviews representing various members of the organization. Through the discussion of the findings, we were able to confirm the social construction of the EP and to identify three main stakeholders responsible for the construction of the vision, mainly political and social powers, actors of the organization, and financial providers. Moreover, EP is influenced by external factors; in this case, the history of the organization and the value and importance of the art and the culture for Cambodians.

Keywords: envisioning process, social constructivism, medium enterprise, legitimacy

Procedia PDF Downloads 99
10534 Explainable Graph Attention Networks

Authors: David Pham, Yongfeng Zhang

Abstract:

Graphs are an important structure for data storage and computation. Recent years have seen the success of deep learning on graphs such as Graph Neural Networks (GNN) on various data mining and machine learning tasks. However, most of the deep learning models on graphs cannot easily explain their predictions and are thus often labelled as “black boxes.” For example, Graph Attention Network (GAT) is a frequently used GNN architecture, which adopts an attention mechanism to carefully select the neighborhood nodes for message passing and aggregation. However, it is difficult to explain why certain neighbors are selected while others are not and how the selected neighbors contribute to the final classification result. In this paper, we present a graph learning model called Explainable Graph Attention Network (XGAT), which integrates graph attention modeling and explainability. We use a single model to target both the accuracy and explainability of problem spaces and show that in the context of graph attention modeling, we can design a unified neighborhood selection strategy that selects appropriate neighbor nodes for both better accuracy and enhanced explainability. To justify this, we conduct extensive experiments to better understand the behavior of our model under different conditions and show an increase in both accuracy and explainability.

Keywords: explainable AI, graph attention network, graph neural network, node classification

Procedia PDF Downloads 172
10533 Training a Neural Network to Segment, Detect and Recognize Numbers

Authors: Abhisek Dash

Abstract:

This study had three neural networks, one for number segmentation, one for number detection and one for number recognition all of which are coupled to one another. All networks were trained on the MNIST dataset and were convolutional. It was assumed that the images had lighter background and darker foreground. The segmentation network took 28x28 images as input and had sixteen outputs. Segmentation training starts when a dark pixel is encountered. Taking a window(7x7) over that pixel as focus, the eight neighborhood of the focus was checked for further dark pixels. The segmentation network was then trained to move in those directions which had dark pixels. To this end the segmentation network had 16 outputs. They were arranged as “go east”, ”don’t go east ”, “go south east”, “don’t go south east”, “go south”, “don’t go south” and so on w.r.t focus window. The focus window was resized into a 28x28 image and the network was trained to consider those neighborhoods which had dark pixels. The neighborhoods which had dark pixels were pushed into a queue in a particular order. The neighborhoods were then popped one at a time stitched to the existing partial image of the number one at a time and trained on which neighborhoods to consider when the new partial image was presented. The above process was repeated until the image was fully covered by the 7x7 neighborhoods and there were no more uncovered black pixels. During testing the network scans and looks for the first dark pixel. From here on the network predicts which neighborhoods to consider and segments the image. After this step the group of neighborhoods are passed into the detection network. The detection network took 28x28 images as input and had two outputs denoting whether a number was detected or not. Since the ground truth of the bounds of a number was known during training the detection network outputted in favor of number not found until the bounds were not met and vice versa. The recognition network was a standard CNN that also took 28x28 images and had 10 outputs for recognition of numbers from 0 to 9. This network was activated only when the detection network votes in favor of number detected. The above methodology could segment connected and overlapping numbers. Additionally the recognition unit was only invoked when a number was detected which minimized false positives. It also eliminated the need for rules of thumb as segmentation is learned. The strategy can also be extended to other characters as well.

Keywords: convolutional neural networks, OCR, text detection, text segmentation

Procedia PDF Downloads 146
10532 Preschoolers’ Involvement in Indoor and Outdoor Learning Activities as Predictors of Social Learning Skills in Niger State, Nigeria

Authors: Okoh Charity N.

Abstract:

This study investigated the predictive power of preschoolers’ involvement in indoor and outdoor learning activities on their social learning skills in Niger state, Nigeria. Two research questions and two null hypotheses guided the study. Correlational research design was employed in the study. The population of the study consisted of 8,568 Nursery III preschoolers across the 549 preschools in the five Local Education Authorities in Niger State. A sample of 390 preschoolers drawn through multistage sampling procedure. Two instruments; Preschoolers’ Learning Activities Rating Scale (PLARS) and Preschoolers’ Social Learning Skills Rating Scale (PSLSRS) developed by the researcher were used for data collection. The reliability coefficients obtained for the PLARS and PSLSRS were 0.83 and 0.82, respectively. Data collected were analyzed using simple linear regression. Results showed that 37% of preschoolers’ social learning skills are predicted by their involvement in indoor learning activities, which is statistically significant (p < 0.05). It also shows that 11% of preschoolers’ social learning skills are predicted by their involvement in outdoor learning activities, which is statistically significant (p < 0.05). Therefore, it was recommended among others, that government and school administrators should employ qualified teachers who will stand as role models for preschoolers’ social skills development and provide indoor and outdoor activities and materials for preschoolers in schools.

Keywords: preschooler, social learning, indoor activities, outdoor activities

Procedia PDF Downloads 109
10531 The Modern Paradigm Features of Social Management Based on Postindustrial Theory

Authors: Yulia Totskaya

Abstract:

Nowadays, society is in a postindustrial/informational phase of its development. Certain changes have occurred in different parts of society life as a result of the social reality transformations due to the influence of changes in the productive forces. As a result, the personality has received autonomy and independence, as in her or his hands appeared new means of production–information, knowledge, creativity. In such a society, there is a new middle class, which is called meritocratic. It consists of personalities, who are engaged in highly intelligent, creative work; who independently pursue their own well-being and status; who are active in the economic and social spheres. At the forefront there are such qualities as independence, commitment and self-actualization. This modern, intellectual and sovereign personality is no longer in need of care. The role of management has transformed from a paternalistic to the "service", which is aimed at creating the conditions for citizens’ self-realization to meet their needs through the rendering of public services. Such society alterations motivate the need to change the key parameters of social management, which are identified in this article on the basis of the postindustrial society key features.

Keywords: informational society, postindustrial society, postindustrial sociality, public services, social management

Procedia PDF Downloads 269
10530 Identifying Effective Strategies to Promote Vietnamese Fashion Brands in an Internationally Dominated Market

Authors: Lam Hong Lan, Gabor Sarlos

Abstract:

It is hard to search for best practices in promotion for local fashion brands in Vietnam as the industry is still very young. Local fashion start-ups have grown quickly in the last five years, thanks in part to the internet and social media. However, local designer/owners can face a huge challenge when competing with international brands in the Vietnamese market – and few local case studies are available for guidance. In response, this paper studied how local small- to medium-sized enterprises (SMEs) promote to their target customers in order to compete with international brands. Knowledge of both successful and unsuccessful approaches generated by this study is intended to both contribute to the academic literature on local fashion in Vietnam as well as to help local designers to learn from and improve their brand-building strategy. The primary study featured qualitative data collection via semi-structured depth interviews. Transcription and data analysis were conducted manually in order to identify success factors that local brands should consider as part of their promotion strategy. Purposive sampling of SMEs identified five designers in Ho Chi Minh City (the biggest city in Vietnam) and three designers in Hanoi (the second biggest) as interviewees. Participant attributes included: born in the 1980s or 1990s; familiar with internet and social media; designer/owner of a successful local fashion brand in the key middle market and/or mass market segments (which are crucial to the growth of local brands). A secondary study was conducted using social listening software to gather further qualitative data on what were considered to be successful or unsuccessful approaches to local fashion brand promotion on social media. Both the primary and secondary studies indicated that local designers had maximized their promotion budget by using owned media and earned media instead of paid media. Findings from the qualitative interviews indicate that internet and social media have been used as effective promotion platforms by local fashion start-ups. Facebook and Instagram were the most popular social networks used by the SMEs interviewed, and these social platforms were believed to offer a more affordable promotional strategy than traditional media such as TV and/or print advertising. Online stores were considered an important factor in helping the SMEs to reach customers beyond the physical store. Furthermore, a successful online store allowed some SMEs to reduce their business rental costs by maintaining their physical store in a cheaper, less central city area as opposed to a more traditional city center store location. In addition, the small comparative size of the SMEs allowed them to be more attentive to their customers, leading to higher customer satisfaction and rate of return. In conclusion, this study found that these kinds of cost savings helped the SMEs interviewed to focus their scarce resources on producing unique, high-quality collections in order to differentiate themselves from international brands. Facebook and Instagram were the main platforms used for promotion and brand-building. The main challenge to this promotion strategy identified by the SMEs interviewed was to continue to find innovative ways to maximize the impact of a limited marketing budget.

Keywords: Vietnam, SMEs, fashion brands, promotion, marketing, social listening

Procedia PDF Downloads 114
10529 Ordinary Differentiation Equations (ODE) Reconstruction of High-Dimensional Genetic Networks through Game Theory with Application to Dissecting Tree Salt Tolerance

Authors: Libo Jiang, Huan Li, Rongling Wu

Abstract:

Ordinary differentiation equations (ODE) have proven to be powerful for reconstructing precise and informative gene regulatory networks (GRNs) from dynamic gene expression data. However, joint modeling and analysis of all genes, essential for the systematical characterization of genetic interactions, are challenging due to high dimensionality and a complex pattern of genetic regulation including activation, repression, and antitermination. Here, we address these challenges by unifying variable selection and game theory through ODE. Each gene within a GRN is co-expressed with its partner genes in a way like a game of multiple players, each of which tends to choose an optimal strategy to maximize its “fitness” across the whole network. Based on this unifying theory, we designed and conducted a real experiment to infer salt tolerance-related GRNs for Euphrates poplar, a hero tree that can grow in the saline desert. The pattern and magnitude of interactions between several hub genes within these GRNs were found to determine the capacity of Euphrates poplar to resist to saline stress.

Keywords: gene regulatory network, ordinary differential equation, game theory, LASSO, saline resistance

Procedia PDF Downloads 631
10528 Block Mining: Block Chain Enabled Process Mining Database

Authors: James Newman

Abstract:

Process mining is an emerging technology that looks to serialize enterprise data in time series data. It has been used by many companies and has been the subject of a variety of research papers. However, the majority of current efforts have looked at how to best create process mining from standard relational databases. This paper is the first pass at outlining a database custom-built for the minimal viable product of process mining. We present Block Miner, a blockchain protocol to store process mining data across a distributed network. We demonstrate the feasibility of storing process mining data on the blockchain. We present a proof of concept and show how the intersection of these two technologies helps to solve a variety of issues, including but not limited to ransomware attacks, tax documentation, and conflict resolution.

Keywords: blockchain, process mining, memory optimization, protocol

Procedia PDF Downloads 84
10527 A Study on the Application of Machine Learning and Deep Learning Techniques for Skin Cancer Detection

Authors: Hritwik Ghosh, Irfan Sadiq Rahat, Sachi Nandan Mohanty, J. V. R. Ravindra

Abstract:

In the rapidly evolving landscape of medical diagnostics, the early detection and accurate classification of skin cancer remain paramount for effective treatment outcomes. This research delves into the transformative potential of Artificial Intelligence (AI), specifically Deep Learning (DL), as a tool for discerning and categorizing various skin conditions. Utilizing a diverse dataset of 3,000 images representing nine distinct skin conditions, we confront the inherent challenge of class imbalance. This imbalance, where conditions like melanomas are over-represented, is addressed by incorporating class weights during the model training phase, ensuring an equitable representation of all conditions in the learning process. Our pioneering approach introduces a hybrid model, amalgamating the strengths of two renowned Convolutional Neural Networks (CNNs), VGG16 and ResNet50. These networks, pre-trained on the ImageNet dataset, are adept at extracting intricate features from images. By synergizing these models, our research aims to capture a holistic set of features, thereby bolstering classification performance. Preliminary findings underscore the hybrid model's superiority over individual models, showcasing its prowess in feature extraction and classification. Moreover, the research emphasizes the significance of rigorous data pre-processing, including image resizing, color normalization, and segmentation, in ensuring data quality and model reliability. In essence, this study illuminates the promising role of AI and DL in revolutionizing skin cancer diagnostics, offering insights into its potential applications in broader medical domains.

Keywords: artificial intelligence, machine learning, deep learning, skin cancer, dermatology, convolutional neural networks, image classification, computer vision, healthcare technology, cancer detection, medical imaging

Procedia PDF Downloads 68
10526 A Review of Current Trends in Grid Balancing Technologies

Authors: Kulkarni Rohini D.

Abstract:

While emerging as plausible sources of energy generation, new technologies, including photovoltaic (PV) solar panels, home battery energy storage systems, and electric vehicles (EVs), are exacerbating the operations of power distribution networks for distribution network operators (DNOs). Renewable energy production fluctuates, stemming in over- and under-generation energy, further complicating the issue of storing excess power and using it when necessary. Though renewable sources are non-exhausting and reoccurring, power storage of generated energy is almost as paramount as to its production process. Hence, to ensure smooth and efficient power storage at different levels, Grid balancing technologies are consequently the next theme to address in the sustainable space and growth sector. But, since hydrogen batteries were used in the earlier days to achieve this balance in power grids, new, recent advancements are more efficient and capable per unit of storage space while also being distinctive in terms of their underlying operating principles. The underlying technologies of "Flow batteries," "Gravity Solutions," and "Graphene Batteries" already have entered the market and are leading the race for efficient storage device solutions that will improve and stabilize Grid networks, followed by Grid balancing technologies.

Keywords: flow batteries, grid balancing, hydrogen batteries, power storage, solar

Procedia PDF Downloads 55
10525 Innovative Communication for Promoting Tourism in Southern Thailand

Authors: Pitimanus Bunlue

Abstract:

This research aim (1) to determine the content of communication, social capital and cultural capital to promote tourism in the province to create awareness, motivation and desire to tourists visiting Thailand (2) to evaluate the performance of innovation communication social capital and cultural capital to promote tourism southern of Thailand. This research is a qualitative research. A research synthesis projects on social capital and cultural capital by use focus group discussions with media professionals and academics to communicate using a random sample specific. The result show that (1) Innovative communication, social capital and cultural capital and effective communication innovations after everyone wants to travel to Ranong province is the very highest level. (2) Information and experience about Ranong at a high level. (3) The data shows the strengths of each of the attractions at a high level. (4) The data shows a lifestyle that is unique to the province is moderate.

Keywords: innovative communication, promoting tourism, southern of Thailand, social capital

Procedia PDF Downloads 268
10524 Impact of Hashtags in Tweets Regarding COVID-19 on the Psyche of Pakistanis: A Critical Discourse Analytical Study

Authors: Muhammad Hamza

Abstract:

This study attempts to analyze the social media reports regarding Covid-19 that impacted the psyche of Pakistanis. This Study is delimited to hashtags from Tweets on a social media platform. During Covid-19, it has been observed that it affected the psychological conditions of Pakistanis. With the application of the three-dimensional model presented by Fairclough, together with a data analytic software “FireAnt” i.e., social media and data analysis toolkit, which is used to filter, identify, report and export data from social media accurately. A detailed and explicit exploration of the various hashtags by users from different fields was conducted. This study conducted a quantitative as well as qualitative methods of analysis. The study examined the perspectives of the Pakistanis behind the use of various hashtags with the lenses of Critical Discourse Analysis (CDA). While conducting this research, CDA was helpful to reveal the connection between the psyche of the people and the Covid-19 pandemic. It was found that how different Pakistanis used social media and how Covid-19 impacted their psyche. After collecting and analyzing the hashtags from twitter it was concluded that majority of people received negative impact from social media reports, while, some people used their hashtags positively and were found positive during Covid-19, and some people were found neutral.

Keywords: Covid, Covid-19, psyche, Covid Pakistan

Procedia PDF Downloads 49
10523 Performance Enrichment of Deep Feed Forward Neural Network and Deep Belief Neural Networks for Fault Detection of Automobile Gearbox Using Vibration Signal

Authors: T. Praveenkumar, Kulpreet Singh, Divy Bhanpuriya, M. Saimurugan

Abstract:

This study analysed the classification accuracy for gearbox faults using Machine Learning Techniques. Gearboxes are widely used for mechanical power transmission in rotating machines. Its rotating components such as bearings, gears, and shafts tend to wear due to prolonged usage, causing fluctuating vibrations. Increasing the dependability of mechanical components like a gearbox is hampered by their sealed design, which makes visual inspection difficult. One way of detecting impending failure is to detect a change in the vibration signature. The current study proposes various machine learning algorithms, with aid of these vibration signals for obtaining the fault classification accuracy of an automotive 4-Speed synchromesh gearbox. Experimental data in the form of vibration signals were acquired from a 4-Speed synchromesh gearbox using Data Acquisition System (DAQs). Statistical features were extracted from the acquired vibration signal under various operating conditions. Then the extracted features were given as input to the algorithms for fault classification. Supervised Machine Learning algorithms such as Support Vector Machines (SVM) and unsupervised algorithms such as Deep Feed Forward Neural Network (DFFNN), Deep Belief Networks (DBN) algorithms are used for fault classification. The fusion of DBN & DFFNN classifiers were architected to further enhance the classification accuracy and to reduce the computational complexity. The fault classification accuracy for each algorithm was thoroughly studied, tabulated, and graphically analysed for fused and individual algorithms. In conclusion, the fusion of DBN and DFFNN algorithm yielded the better classification accuracy and was selected for fault detection due to its faster computational processing and greater efficiency.

Keywords: deep belief networks, DBN, deep feed forward neural network, DFFNN, fault diagnosis, fusion of algorithm, vibration signal

Procedia PDF Downloads 101
10522 A Long Short-Term Memory Based Deep Learning Model for Corporate Bond Price Predictions

Authors: Vikrant Gupta, Amrit Goswami

Abstract:

The fixed income market forms the basis of the modern financial market. All other assets in financial markets derive their value from the bond market. Owing to its over-the-counter nature, corporate bonds have relatively less data publicly available and thus is researched upon far less compared to Equities. Bond price prediction is a complex financial time series forecasting problem and is considered very crucial in the domain of finance. The bond prices are highly volatile and full of noise which makes it very difficult for traditional statistical time-series models to capture the complexity in series patterns which leads to inefficient forecasts. To overcome the inefficiencies of statistical models, various machine learning techniques were initially used in the literature for more accurate forecasting of time-series. However, simple machine learning methods such as linear regression, support vectors, random forests fail to provide efficient results when tested on highly complex sequences such as stock prices and bond prices. hence to capture these intricate sequence patterns, various deep learning-based methodologies have been discussed in the literature. In this study, a recurrent neural network-based deep learning model using long short term networks for prediction of corporate bond prices has been discussed. Long Short Term networks (LSTM) have been widely used in the literature for various sequence learning tasks in various domains such as machine translation, speech recognition, etc. In recent years, various studies have discussed the effectiveness of LSTMs in forecasting complex time-series sequences and have shown promising results when compared to other methodologies. LSTMs are a special kind of recurrent neural networks which are capable of learning long term dependencies due to its memory function which traditional neural networks fail to capture. In this study, a simple LSTM, Stacked LSTM and a Masked LSTM based model has been discussed with respect to varying input sequences (three days, seven days and 14 days). In order to facilitate faster learning and to gradually decompose the complexity of bond price sequence, an Empirical Mode Decomposition (EMD) has been used, which has resulted in accuracy improvement of the standalone LSTM model. With a variety of Technical Indicators and EMD decomposed time series, Masked LSTM outperformed the other two counterparts in terms of prediction accuracy. To benchmark the proposed model, the results have been compared with traditional time series models (ARIMA), shallow neural networks and above discussed three different LSTM models. In summary, our results show that the use of LSTM models provide more accurate results and should be explored more within the asset management industry.

Keywords: bond prices, long short-term memory, time series forecasting, empirical mode decomposition

Procedia PDF Downloads 126
10521 The Ethical and Social Implications of Using AI in Healthcare: A Literature Review

Authors: Deepak Singh

Abstract:

AI technology is rapidly being integrated into the healthcare system, bringing many ethical and social implications. This literature review examines the various aspects of this phenomenon, focusing on the ethical considerations of using AI in healthcare, such as how it might affect patient autonomy, privacy, and doctor-patient relationships. Furthermore, the review considers the potential social implications of AI in Healthcare, such as the potential for automation to reduce the availability of healthcare jobs and the potential to widen existing health inequalities. The literature suggests potential benefits and drawbacks to using AI in healthcare, and it is essential to consider the ethical and social implications before implementation. It is concluded that more research is needed to understand the full implications of using AI in healthcare and that ethical regulations must be in place to ensure patient safety and the technology's responsible use.

Keywords: AI, healthcare, telemedicine, telehealth, ethics, security, privacy, patient, rights, safety

Procedia PDF Downloads 120
10520 Network Based Molecular Profiling of Intracranial Ependymoma over Spinal Ependymoma

Authors: Hyeon Su Kim, Sungjin Park, Hae Ryung Chang, Hae Rim Jung, Young Zoo Ahn, Yon Hui Kim, Seungyoon Nam

Abstract:

Ependymoma, one of the most common parenchymal spinal cord tumor, represents 3-6% of all CNS tumor. Especially intracranial ependymomas, which are more frequent in childhood, have a more poor prognosis and more malignant than spinal ependymomas. Although there are growing needs to understand pathogenesis, detailed molecular understanding of pathogenesis remains to be explored. A cancer cell is composed of complex signaling pathway networks, and identifying interaction between genes and/or proteins are crucial for understanding these pathways. Therefore, we explored each ependymoma in terms of differential expressed genes and signaling networks. We used Microsoft Excel™ to manipulate microarray data gathered from NCBI’s GEO Database. To analyze and visualize signaling network, we used web-based PATHOME algorithm and Cytoscape. We show HOX family and NEFL are down-regulated but SCL family is up-regulated in cerebrum and posterior fossa cancers over a spinal cancer, and JAK/STAT signaling pathway and Chemokine signaling pathway are significantly different in the both intracranial ependymoma comparing to spinal ependymoma. We are considering there may be an age-dependent mechanism under different histological pathogenesis. We annotated mutation data of each gene subsequently in order to find potential target genes.

Keywords: systems biology, ependymoma, deg, network analysis

Procedia PDF Downloads 291
10519 Social Semantic Web-Based Analytics Approach to Support Lifelong Learning

Authors: Khaled Halimi, Hassina Seridi-Bouchelaghem

Abstract:

The purpose of this paper is to describe how learning analytics approaches based on social semantic web techniques can be applied to enhance the lifelong learning experiences in a connectivist perspective. For this reason, a prototype of a system called SoLearn (Social Learning Environment) that supports this approach. We observed and studied literature related to lifelong learning systems, social semantic web and ontologies, connectivism theory, learning analytics approaches and reviewed implemented systems based on these fields to extract and draw conclusions about necessary features for enhancing the lifelong learning process. The semantic analytics of learning can be used for viewing, studying and analysing the massive data generated by learners, which helps them to understand through recommendations, charts and figures their learning and behaviour, and to detect where they have weaknesses or limitations. This paper emphasises that implementing a learning analytics approach based on social semantic web representations can enhance the learning process. From one hand, the analysis process leverages the meaning expressed by semantics presented in the ontology (relationships between concepts). From the other hand, the analysis process exploits the discovery of new knowledge by means of inferring mechanism of the semantic web.

Keywords: connectivism, learning analytics, lifelong learning, social semantic web

Procedia PDF Downloads 201
10518 Neighbour Cell List Reduction in Multi-Tier Heterogeneous Networks

Authors: Mohanad Alhabo, Naveed Nawaz

Abstract:

The ongoing call or data session must be maintained to ensure a good quality of service. This can be accomplished by performing the handover procedure while the user is on the move. However, the dense deployment of small cells in 5G networks is a challenging issue due to the extensive number of handovers. In this paper, a neighbour cell list method is proposed to reduce the number of target small cells and hence minimizing the number of handovers. The neighbour cell list is built by omitting cells that could cause an unnecessary handover and handover failure because of short time of stay of the user in these cells. A multi-attribute decision making technique, simple additive weighting, is then applied to the optimized neighbour cell list. Multi-tier small cells network is considered in this work. The performance of the proposed method is analysed and compared with that of the existing methods. Results disclose that our method has decreased the candidate small cell list, unnecessary handovers, handover failure, and short time of stay cells compared to the competitive method.

Keywords: handover, HetNets, multi-attribute decision making, small cells

Procedia PDF Downloads 109
10517 Infusing Social Business Skills into the Curriculum of Higher Learning Institutions with Special Reference to Albukhari International University

Authors: Abdi Omar Shuriye

Abstract:

A social business is a business designed to address socio-economic problems to enhance the welfare of the communities involved. Lately, social business, with its focus on innovative ideas, is capturing the interest of educational institutions, governments, and non-governmental organizations. Social business uses a business model to achieve a social goal, and in the last few decades, the idea of imbuing social business into the education system of higher learning institutions has spurred much excitement. This is due to the belief that it will lead to job creation and increased social resilience. One of the higher learning institutions which have invested immensely in the idea is Albukhari International University; it is a private education institution, on a state-of-the-art campus, providing an advantageous learning ecosystem. The niche area of this institution is social business, and it graduates job creators, not job seekers; this Malaysian institution is unique and one of its kind. The objective of this paper is to develop a work plan, direction, and milestone as well as the focus area for the infusion of social business into higher learning institutions with special reference to Al-Bukhari International University. The purpose is to develop a prototype and model full-scale to enable higher learning education institutions to construct the desired curriculum fermented with social business. With this model, major predicaments faced by these institutions could be overcome. The paper sets forth an educational plan and will spell out the basic tenets of social business, focusing on the nature and implementational aspects of the curriculum. It will also evaluate the mechanisms applied by these educational institutions. Currently, since research in this area remains scarce, institutions adopt the process of experimenting with various methods to find the best way to reach the desired result on the matter. The author is of the opinion that social business in education is the main tool to educate holistic future leaders; hence educational institutions should inspire students in the classroom to start up their own businesses by adopting creative and proactive teaching methods. This proposed model is a contribution in that direction.

Keywords: social business, curriculum, skills, university

Procedia PDF Downloads 79
10516 Analysis of Social Factors for Achieving Social Resilience in Communities of Indonesia Special Economic Zone as a Strategy for Developing Program Management Frameworks

Authors: Inda Annisa Fauzani, Rahayu Setyawati Arifin

Abstract:

The development of Special Economic Zones in Indonesia cannot be separated from the development of the communities in them. In accordance with the SEZ's objectives as a driver of economic growth, the focus of SEZ development does not only prioritize investment receipts and infrastructure development. The community as one of the stakeholders must also be considered. This becomes a challenge when the development of an SEZ has the potential to have an impact on the community in it. These impacts occur due to changes in the development of the area in the form of changes in the main regional industries and changes in the main livelihoods of the community. As a result, people can feel threats and disturbances. The community as the object of development is required to be able to have resilience in order to achieve a synergy between regional development and community development. A lack of resilience in the community can eliminate the ability to recover from disturbances and difficulty to adapt to changes that occur in their area. Social resilience is the ability of the community to be able to recover from disturbances and changes that occur. The achievement of social resilience occurs when the community gradually has the capacity in the form of coping capacity, adaptive capacity, and transformative capacity. It is hoped that when social resilience is achieved, the community will be able to develop linearly with regional development so that the benefits of this development can have a positive impact on these communities. This study aims to identify and analyze social factors that influence the achievement of social resilience in the community in Special Economic Zones in Indonesia and develop a program framework for achieving social resilience capacity in the community so that it can be used as a strategy to support the successful development of Special Economic Zones in Indonesia that provide benefits to the local community. This study uses a quantitative research method approach. Questionnaires are used as research instruments which are distributed to predetermined respondents. Respondents in this study were determined by using purposive sampling of the people living in areas that were developed into Special Economic Zones. Respondents were given a questionnaire containing questions about the influence of social factors on the achievement of social resilience. As x variables, 42 social factors are provided, while social resilience is used as y variables. The data collected from the respondents is analyzed in SPSS using Spearman Correlation to determine the relation between x and y variables. The correlated factors are then used as the basis for the preparation of programs to increase social resilience capacity in the community.

Keywords: community development, program management, social factor, social resilience

Procedia PDF Downloads 95
10515 Corporate Social Responsibility: A Comparative Study of Two Largest Banks in India

Authors: Navdeep Kaur

Abstract:

Corporate Social Responsibility is the process through which the organizations execute their philanthropic visions for social welfare. This paper considers the data of one Public Sector Bank–State Bank of India (SBI) and one Private Sector Bank-Industrial Credit and Investment Corporation of India (ICICI) from the year 2008 to 2016. The study is based on descriptive research design, and secondary data collected from the annual report of respective bank from website and different literature are reviewed. Least Square Method is used for estimating CSR spending for the financial year 2017-18. The analysis shows that these banks are making efforts for the implementation of CSR, but are not spending their 2% share of profits on CSR. There is a need for better CSR activities by the banks, which is possible by concentrating more on the prevailing social issues. The finding reveals that the percentage of profit after tax spends for CSR by SBI is more compare to ICICI. The estimated Spending for CSR for 2017-18 is also more in SBI as compared to ICICI.

Keywords: banking sector, corporate social responsibility in India, financial institution, public sector banks, SBI, ICICI

Procedia PDF Downloads 181
10514 A New DIDS Design Based on a Combination Feature Selection Approach

Authors: Adel Sabry Eesa, Adnan Mohsin Abdulazeez Brifcani, Zeynep Orman

Abstract:

Feature selection has been used in many fields such as classification, data mining and object recognition and proven to be effective for removing irrelevant and redundant features from the original data set. In this paper, a new design of distributed intrusion detection system using a combination feature selection model based on bees and decision tree. Bees algorithm is used as the search strategy to find the optimal subset of features, whereas decision tree is used as a judgment for the selected features. Both the produced features and the generated rules are used by Decision Making Mobile Agent to decide whether there is an attack or not in the networks. Decision Making Mobile Agent will migrate through the networks, moving from node to another, if it found that there is an attack on one of the nodes, it then alerts the user through User Interface Agent or takes some action through Action Mobile Agent. The KDD Cup 99 data set is used to test the effectiveness of the proposed system. The results show that even if only four features are used, the proposed system gives a better performance when it is compared with the obtained results using all 41 features.

Keywords: distributed intrusion detection system, mobile agent, feature selection, bees algorithm, decision tree

Procedia PDF Downloads 396
10513 MITOS-RCNN: Mitotic Figure Detection in Breast Cancer Histopathology Images Using Region Based Convolutional Neural Networks

Authors: Siddhant Rao

Abstract:

Studies estimate that there will be 266,120 new cases of invasive breast cancer and 40,920 breast cancer induced deaths in the year of 2018 alone. Despite the pervasiveness of this affliction, the current process to obtain an accurate breast cancer prognosis is tedious and time consuming. It usually requires a trained pathologist to manually examine histopathological images and identify the features that characterize various cancer severity levels. We propose MITOS-RCNN: a region based convolutional neural network (RCNN) geared for small object detection to accurately grade one of the three factors that characterize tumor belligerence described by the Nottingham Grading System: mitotic count. Other computational approaches to mitotic figure counting and detection do not demonstrate ample recall or precision to be clinically viable. Our models outperformed all previous participants in the ICPR 2012 challenge, the AMIDA 2013 challenge and the MITOS-ATYPIA-14 challenge along with recently published works. Our model achieved an F- measure score of 0.955, a 6.11% improvement in accuracy from the most accurate of the previously proposed models.

Keywords: breast cancer, mitotic count, machine learning, convolutional neural networks

Procedia PDF Downloads 209
10512 Exploring a Cross-Sectional Analysis Defining Social Work Leadership Competencies in Social Work Education and Practice

Authors: Trevor Stephen, Joshua D. Aceves, David Guyer, Jona Jacobson

Abstract:

As a profession, social work has much to offer individuals, groups, and organizations. A multidisciplinary approach to understanding and solving complex challenges and a commitment to developing and training ethical practitioners outlines characteristics of a profession embedded with leadership skills. This presentation will take an overview of the historical context of social work leadership, examine social work as a unique leadership model composed of its qualities and theories that inform effective leadership capability as it relates to our code of ethics. Reflect critically on leadership theories and their foundational comparison. Finally, a look at recommendations and implementation to social work education and practice. Similar to defining leadership, there is no universally accepted definition of social work leadership. However, some distinct traits and characteristics are essential. Recent studies help set the stage for this research proposal because they measure views on effective social work leadership among social work and non-social leaders and followers. However, this research is interested in working backward from that approach and examining social workers' leadership preparedness perspectives based solely on social work training, competencies, values, and ethics. Social workers understand how to change complex structures and challenge resistance to change to improve the well-being of organizations and those they serve. Furthermore, previous studies align with the idea of practitioners assessing their skill and capacity to engage in leadership but not to lead. In addition, this research is significant because it explores aspiring social work leaders' competence to translate social work practice into direct leadership skills. The research question seeks to answer whether social work training and competencies are sufficient to determine whether social workers believe they possess the capacity and skill to engage in leadership practice. Aim 1: Assess whether social workers have the capacity and skills to assume leadership roles. Aim 2: Evaluate how the development of social workers is sufficient in defining leadership. This research intends to reframe the misconception that social workers do not possess the capacity and skills to be effective leaders. On the contrary, social work encompasses a framework dedicated to lifelong development and growth. Social workers must be skilled, competent, ethical, supportive, and empathic. These are all qualities and traits of effective leadership, whereas leaders are in relation with others and embody partnership and collaboration with followers and stakeholders. The proposed study is a cross-sectional quasi-experimental survey design that will include the distribution of a multi-level social work leadership model and assessment tool. The assessment tool aims to help define leadership in social work using a Likert scale model. A cross-sectional research design is appropriate for answering the research questions because the measurement survey will help gather data using a structured tool. Other than the proposed social work leadership measurement tool, there is no other mechanism based on social work theory and designed to measure the capacity and skill of social work leadership.

Keywords: leadership competencies, leadership education, multi-level social work leadership model, social work core values, social work leadership, social work leadership education, social work leadership measurement tool

Procedia PDF Downloads 162
10511 Early Talent Identification and Its Impact on Children’s Growth and Development: An Examination of “The Social Learning Theory, by Albert Bandura"

Authors: Michael Subbey, Kwame Takyi Danquah

Abstract:

Finding a child's exceptional skills and abilities at a young age and nurturing them is a challenging process. The Social Learning Theory (SLT) of Albert Bandura is used to analyze the effects of early talent identification on children's growth and development. The study examines both the advantages and disadvantages of early talent identification and stresses the significance of a moral strategy that puts the welfare of the child first. The paper emphasizes the value of a balanced approach to early talent identification that takes into account individual differences, cultural considerations, and the child's social environment.

Keywords: early talent development, social learning theory, child development, child welfare

Procedia PDF Downloads 87
10510 Unlocking Retention: Nurturing Ownership and Shared Values to Overcome Work-Family Conflict Among Chinese Social Workers

Authors: Zurong Liang

Abstract:

Chinese social work has experienced a sharp rise in staff turnover. Work-family conflict is a key risk factor for employees’ turnover intention. While the relationship between work-family conflict and turnover intention has been widely documented, little is known about its mediating and moderating mechanisms, especially among social workers in China. This study explored the mediating role of job-based and collective psychological ownership and the moderating role of person-organization value congruence. The study drew on data from the China Social Work Longitudinal Study 2019, a nationally representative sample of 1,421 Chinese social workers (79.73% female; mean age = 28.9 years old). We performed a moderated mediation analysis combining a simple slope test and the Johnson-Neyman technique. Both job-based psychological ownership and collective psychological ownership were found to mediate the association between work-family conflict and turnover intention. Person-organization value congruence moderated the indirect relationship between work-family conflict and turnover intention via collective psychological ownership. This study enhances understanding of the impact of the psychological mechanisms of work-family conflict on Chinese social workers’ turnover intention. Specific strategies should be adopted to establish a work environment that supports psychological ownership, enhances social workers’ identification with and attachment to their organizations, and thus reduces their turnover intention.

Keywords: turnover, work-family conflict, ownership, social worker, China

Procedia PDF Downloads 44
10509 The Public Relations Activities on Social Networking Sites for Communication to the Customer: Case Study the Company in Thailand

Authors: Phakit Treesukol

Abstract:

The purpose of this investigation is to ascertain Internet users’ behaviours towards companies’ public relations activities on social networking sites. In order to conduct a study of Internet users’ behaviour, data was collected using the quota sampling method from a total of 100 Internet users who are members of SNS and used the Internet during the period 10 December 2009 to 9 January 2010. An online self-administrated questionnaire was distributed through Facebook, Hi5 and Twitter to Internet users by using snowball sampling technique. Results of the study showed that the majority of the respondents were using social networking sites with the main purpose to contact their friends. Presently, most of the respondents were not regularly receiving companies’ public relations activities on social networking sites. The highest frequency of survey responses by the respondents was for hiding or deleting information introducing new products or services from companies on SNS also as well.

Keywords: media uses and gratification, online activities, public relations activities, social networking sites

Procedia PDF Downloads 239