Search results for: natural finishing agent
Commenced in January 2007
Frequency: Monthly
Edition: International
Paper Count: 7063

Search results for: natural finishing agent

6643 Dyeing with Natural Dye from Pterocarpus indicus Extract Using Eco-Friendly Mordants

Authors: Ploysai Ohama, Nuttawadee Hanchengchai, Thiva Saksri

Abstract:

Natural dye extracted from Pterocarpus indicus was applied to a cotton fabric and silk yarn by dyeing processing different eco-friendly mordants. Analytical studies such as UV–VIS spectrophotometry and gravimetric analysis were performed on the extracts. The color of each dyed material was investigated in terms of the CIELAB (L*, a* and b*) and K/S values. Cotton fabric dyed without mordants had a shade of greenish-brown, while those post-mordanted with selected eco-friendly mordants such as alum, lemon juice and limewater result in a variety of brown and darker color shade of fabric.

Keywords: natural dyes, plant materials, dyeing, mordant

Procedia PDF Downloads 394
6642 Learning to Translate by Learning to Communicate to an Entailment Classifier

Authors: Szymon Rutkowski, Tomasz Korbak

Abstract:

We present a reinforcement-learning-based method of training neural machine translation models without parallel corpora. The standard encoder-decoder approach to machine translation suffers from two problems we aim to address. First, it needs parallel corpora, which are scarce, especially for low-resource languages. Second, it lacks psychological plausibility of learning procedure: learning a foreign language is about learning to communicate useful information, not merely learning to transduce from one language’s 'encoding' to another. We instead pose the problem of learning to translate as learning a policy in a communication game between two agents: the translator and the classifier. The classifier is trained beforehand on a natural language inference task (determining the entailment relation between a premise and a hypothesis) in the target language. The translator produces a sequence of actions that correspond to generating translations of both the hypothesis and premise, which are then passed to the classifier. The translator is rewarded for classifier’s performance on determining entailment between sentences translated by the translator to disciple’s native language. Translator’s performance thus reflects its ability to communicate useful information to the classifier. In effect, we train a machine translation model without the need for parallel corpora altogether. While similar reinforcement learning formulations for zero-shot translation were proposed before, there is a number of improvements we introduce. While prior research aimed at grounding the translation task in the physical world by evaluating agents on an image captioning task, we found that using a linguistic task is more sample-efficient. Natural language inference (also known as recognizing textual entailment) captures semantic properties of sentence pairs that are poorly correlated with semantic similarity, thus enforcing basic understanding of the role played by compositionality. It has been shown that models trained recognizing textual entailment produce high-quality general-purpose sentence embeddings transferrable to other tasks. We use stanford natural language inference (SNLI) dataset as well as its analogous datasets for French (XNLI) and Polish (CDSCorpus). Textual entailment corpora can be obtained relatively easily for any language, which makes our approach more extensible to low-resource languages than traditional approaches based on parallel corpora. We evaluated a number of reinforcement learning algorithms (including policy gradients and actor-critic) to solve the problem of translator’s policy optimization and found that our attempts yield some promising improvements over previous approaches to reinforcement-learning based zero-shot machine translation.

Keywords: agent-based language learning, low-resource translation, natural language inference, neural machine translation, reinforcement learning

Procedia PDF Downloads 114
6641 Building an Opinion Dynamics Model from Experimental Data

Authors: Dino Carpentras, Paul J. Maher, Caoimhe O'Reilly, Michael Quayle

Abstract:

Opinion dynamics is a sub-field of agent-based modeling that focuses on people’s opinions and their evolutions over time. Despite the rapid increase in the number of publications in this field, it is still not clear how to apply these models to real-world scenarios. Indeed, there is no agreement on how people update their opinion while interacting. Furthermore, it is not clear if different topics will show the same dynamics (e.g., more polarized topics may behave differently). These problems are mostly due to the lack of experimental validation of the models. Some previous studies started bridging this gap in the literature by directly measuring people’s opinions before and after the interaction. However, these experiments force people to express their opinion as a number instead of using natural language (and then, eventually, encoding it as numbers). This is not the way people normally interact, and it may strongly alter the measured dynamics. Another limitation of these studies is that they usually average all the topics together, without checking if different topics may show different dynamics. In our work, we collected data from 200 participants on 5 unpolarized topics. Participants expressed their opinions in natural language (“agree” or “disagree”). We also measured the certainty of their answer, expressed as a number between 1 and 10. However, this value was not shown to other participants to keep the interaction based on natural language. We then showed the opinion (and not the certainty) of another participant and, after a distraction task, we repeated the measurement. To make the data compatible with opinion dynamics models, we multiplied opinion and certainty to obtain a new parameter (here called “continuous opinion”) ranging from -10 to +10 (using agree=1 and disagree=-1). We firstly checked the 5 topics individually, finding that all of them behaved in a similar way despite having different initial opinions distributions. This suggested that the same model could be applied for different unpolarized topics. We also observed that people tend to maintain similar levels of certainty, even when they changed their opinion. This is a strong violation of what is suggested from common models, where people starting at, for example, +8, will first move towards 0 instead of directly jumping to -8. We also observed social influence, meaning that people exposed with “agree” were more likely to move to higher levels of continuous opinion, while people exposed with “disagree” were more likely to move to lower levels. However, we also observed that the effect of influence was smaller than the effect of random fluctuations. Also, this configuration is different from standard models, where noise, when present, is usually much smaller than the effect of social influence. Starting from this, we built an opinion dynamics model that explains more than 80% of data variance. This model was also able to show the natural conversion of polarization from unpolarized states. This experimental approach offers a new way to build models grounded on experimental data. Furthermore, the model offers new insight into the fundamental terms of opinion dynamics models.

Keywords: experimental validation, micro-dynamics rule, opinion dynamics, update rule

Procedia PDF Downloads 96
6640 Comparative Analysis of Reinforcement Learning Algorithms for Autonomous Driving

Authors: Migena Mana, Ahmed Khalid Syed, Abdul Malik, Nikhil Cherian

Abstract:

In recent years, advancements in deep learning enabled researchers to tackle the problem of self-driving cars. Car companies use huge datasets to train their deep learning models to make autonomous cars a reality. However, this approach has certain drawbacks in that the state space of possible actions for a car is so huge that there cannot be a dataset for every possible road scenario. To overcome this problem, the concept of reinforcement learning (RL) is being investigated in this research. Since the problem of autonomous driving can be modeled in a simulation, it lends itself naturally to the domain of reinforcement learning. The advantage of this approach is that we can model different and complex road scenarios in a simulation without having to deploy in the real world. The autonomous agent can learn to drive by finding the optimal policy. This learned model can then be easily deployed in a real-world setting. In this project, we focus on three RL algorithms: Q-learning, Deep Deterministic Policy Gradient (DDPG), and Proximal Policy Optimization (PPO). To model the environment, we have used TORCS (The Open Racing Car Simulator), which provides us with a strong foundation to test our model. The inputs to the algorithms are the sensor data provided by the simulator such as velocity, distance from side pavement, etc. The outcome of this research project is a comparative analysis of these algorithms. Based on the comparison, the PPO algorithm gives the best results. When using PPO algorithm, the reward is greater, and the acceleration, steering angle and braking are more stable compared to the other algorithms, which means that the agent learns to drive in a better and more efficient way in this case. Additionally, we have come up with a dataset taken from the training of the agent with DDPG and PPO algorithms. It contains all the steps of the agent during one full training in the form: (all input values, acceleration, steering angle, break, loss, reward). This study can serve as a base for further complex road scenarios. Furthermore, it can be enlarged in the field of computer vision, using the images to find the best policy.

Keywords: autonomous driving, DDPG (deep deterministic policy gradient), PPO (proximal policy optimization), reinforcement learning

Procedia PDF Downloads 127
6639 Synthesis and Characterization of Some Nano-Structured Metal Hexacyanoferrates Using Sapindus mukorossi, a Natural Surfactant

Authors: Uma Shanker, Vidhisha Jassal

Abstract:

A novel green route was used to synthesize few metal hexacyanoferrates (FeHCF, NiHCF, CoHCF and CuHCF) nanoparticles using Sapindus mukorossias a natural surfactant and water as a solvent. The synthesized nanoparticles were characterized by Powder X-ray diffraction (PXRD), Scanning electron microscopy (SEM), Transmission electron microscopy (TEM), Fourier Transform Infrared Spectroscopy (FTIR) and Thermo gravimetric techniques. Trasmission electron microscopic images showed that synthesized MHCF nanoparticles exhibited cubic and spherical shapes with exceptionally small sizes ranging from 3nm - 186 nm.

Keywords: metal hexacyanoferrates, natural surfactant, Sapindus mukorossias, nanoparticles

Procedia PDF Downloads 510
6638 Inhibition of Pipelines Corrosion Using Natural Extracts

Authors: Eman Alzahrani, Hala M. Abo-Dief, Ashraf T. Mohamed

Abstract:

The present work is aimed at examining carbon steel oil pipelines corrosion using three natural extracts (Eruca Sativa, Rosell and Mango peels) that are used as inhibitors of different concentrations ranging from 0.05-0.1wt. %. Two sulphur compounds are used as corrosion mediums. Weight loss method was used for measuring the corrosion rate of the carbon steel specimens immersed in technical white oil at 100ºC at various time intervals in absence and presence of the two sulphur compounds. The corroded specimens are examined using the chemical wear test, scratch test and hardness test. The scratch test is carried out using scratch loads from 0.5 Kg to 2.0 Kg. The scratch width is obtained at various scratch load and test conditions. The Brinell hardness test is carried out and investigated for both corroded and inhibited specimens. The results showed that three natural extracts can be used as environmentally friendly corrosion inhibitors.

Keywords: inhibition, natural extract, oil pipelines corrosion, sulphur compounds

Procedia PDF Downloads 488
6637 The Role of Flowering Pesticidal Plants for Sustainable Pest Management

Authors: Baltazar Ndakidemi

Abstract:

The resource-constrained farmers, especially those in sub-Saharan Africa, encounter significant challenges related to agriculture, notably diseases and pests. The sustainable means of pest management are not well known to farmers. As a result, some farmers use synthetic pesticides whose environmental impacts, ill health, and other negative impacts of synthetic pesticides on natural enemies have posed a great need for more sustainable means of pest management. Pesticidal plant resources can replace synthetic pesticides because their secondary metabolites can exhibit insecticidal activities such as deterrence, repellence, and pests' mortality. Additionally, the volatiles from these plants can have positive effects of attracting populations of natural enemies. Pesticidal plants can be grown as field margin plants or in strips for supporting natural enemies' populations. However, this is practically undetermined. Hence, there is a need to investigate the roles played by pesticidal plants in supporting natural enemies of pests and their applications in different cropping systems such as legumes. This study investigates different pesticidal plants with a high potential for pest control in agricultural fields. The information sheds light on potential plants that can be used for different crop pests.

Keywords: natural enemies, biological control, synthetic pesticides, pesticidal plants, predators, parasitoids

Procedia PDF Downloads 49
6636 Potentials of Henna Leaves as Dye and Its Fastness Properties on Fabric

Authors: Nkem Angela Udeani

Abstract:

Despite the widespread use of synthetic dyes, natural dyes are still exploited and used to enhance its inherent aesthetic qualities as a major material for the beautification of the body. Centuries before the discovery of synthetic dye, natural dyes were the only source of dye open to mankind. Dyes are extracted from plant - leaves, roots, and barks, insect secretions, and minerals. However, research findings have made it clear that of all, plant- leaves, roots, barks or flowers are the most explored and exploited. Henna (Lawsonia innermis) is one of those plants. The experiment has also shown that henna is used in body painting in conjunction with an alkaline (Ammonium Sulphate) as a fixing agent. This of course gives a clue that if colour derived from henna is properly investigated, it may not only be used as body decoration but possibly, may have affinity to fibre substrate. This paper investigates the dyeing potentials - dyeing ability and fastness qualities of henna dye extract on cotton and linen fibres using mordants like ammonium sulphate and other alkalies (hydrosulphate and caustic soda, potash, common salt and alum). Hot and cold water and ethanol solvent were used in the extraction of the dye to investigate the most effective method of extraction, dyeing ability and fastness qualities of these extracts under room temperature. The results of the experiment show that cotton have a high rate of dye intake than linen fibre. On a similar note, the colours obtained depend most on the solvent and or the mordant used. In conclusion, hot water extraction appear more effective. While the colours obtained from ethanol and both cold and hot method of extraction range from light to dark yellow, light green to army green, there are to some extent shades of brown hues.

Keywords: dye, fabrics, henna leaves, potential

Procedia PDF Downloads 454
6635 Antioxidant and Cytotoxic Effects of Different Extracts of Fruit Peels Against Three Cancer Cell Lines

Authors: Emad A. Shalaby

Abstract:

Cancer is a disease that causes abnormal cell proliferation and invades nearby tissues. Lung cancer is the second most frequent cancer worldwide. Natural anti-cancer drugs have been developed with low side effects and toxicity. Citrus peels and extracts have been demonstrated to have significant pharmacological and physiological effects as a result of the high concentration of phenolic compounds found in citrus fruits, particularly peels. Tangerine peels can serve as an effective source of bioactive substances such as phenolics, flavonoids, and catechins, which have antioxidant, antibacterial, anticancer, and anti-inflammatory properties. Consequently, this work aims to determine the anticancer activity of ethanol extract of Tangerine peels against the A549 cell line and identify the phenolic compound profile (19 compounds) by using HPLC. Anticancer and antioxidant potentials of the extract were evaluated by MTT assay and TLC- TLC-bioautography sprayed with DPPH reagent, respectively. The obtained results revealed that tangerine peel extract showed significant activity against the A549 cell line with IC50 of 97.66 μg/mL. HPLC analysis proved that the highest concentration is naringenin 464.05 mg/g. More studies indicate that naringenin has significant anticancer potential on A549 cancer cells. The results showed that naringenin binds t0 EGFR protein in A549 with high binding affinity and thus may reduce lung cancer cell migration and enhance the apoptosis of cancer cells. From the obtained results it could be concluded that tangerine peel extract is an effective anti-cancer agent that may potentially serve as a natural therapeutic option for lung cancer treatment.

Keywords: tangerine peel, A549 cell line, anticancer, naringenin, HPLC analysis, naringenin, TLC bioautography

Procedia PDF Downloads 42
6634 Calcium Silicate Bricks – Ultrasonic Pulse Method: Effects of Natural Frequency of Transducers on Measurement Results

Authors: Jiri Brozovsky

Abstract:

Modulus of elasticity is one of the important parameters of construction materials, which considerably influence their deformation properties and which can also be determined by means of non-destructive test methods like ultrasonic pulse method. However, measurement results of ultrasonic pulse methods are influenced by various factors, one of which is the natural frequency of the transducers. The paper states knowledge about influence of natural frequency of the transducers (54; 82 and 150kHz) on ultrasonic pulse velocity and dynamic modulus of elasticity (Young's Dynamic modulus of elasticity). Differences between ultrasonic pulse velocity and dynamic modulus of elasticity were found with the same smallest dimension of test specimen in the direction of sounding and density their value decreases as the natural frequency of transducers grew.

Keywords: calcium silicate brick, ultrasonic pulse method, ultrasonic pulse velocity, dynamic modulus of elasticity

Procedia PDF Downloads 402
6633 Natural Fibre Composite Structural Sections for Residential Stud Wall Applications

Authors: Mike R. Bambach

Abstract:

Increasing awareness of environmental concerns is leading a drive towards more sustainable structural products for the built environment. Natural fibres such as flax, jute and hemp have recently been considered for fibre-resin composites, with a major motivation for their implementation being their notable sustainability attributes. While recent decades have seen substantial interest in the use of such natural fibres in composite materials, much of this research has focused on the materials aspects, including fibre processing techniques, composite fabrication methodologies, matrix materials and their effects on the mechanical properties. The present study experimentally investigates the compression strength of structural channel sections of flax, jute and hemp, with a particular focus on their suitability for residential stud wall applications. The section geometry is optimised for maximum strength via the introduction of complex stiffeners in the webs and flanges. Experimental results on both natural fibre composite channel sections and typical steel and timber residential wall studs are compared. The geometrically optimised natural fibre composite channels are shown to have compression capacities suitable for residential wall stud applications, identifying them as a potentially viable alternative to traditional building materials in such application, and potentially other light structural applications.

Keywords: channel sections, natural fibre composites, residential stud walls, structural composites

Procedia PDF Downloads 301
6632 The Experiment and Simulation Analysis of the Effect of CO₂ and Steam Addition on Syngas Composition of Natural Gas Non-Catalyst Partial Oxidation

Authors: Zhenghua Dai, Jianliang Xu, Fuchen Wang

Abstract:

Non-catalyst partial oxidation technology has been widely used to produce syngas by reforming of hydrocarbon, including gas (natural gas, shale gas, refinery gas, coalbed gas, coke oven gas, pyrolysis gas, etc.) and liquid (residual oil, asphalt, deoiled asphalt, biomass oil, etc.). For natural gas non-catalyst partial oxidation, the H₂/CO(v/v) of syngas is about 1.8, which is agreed well with the request of FT synthesis. But for other process, such as carbonylation and glycol, the H₂/CO(v/v) should be close to 1 and 2 respectively. So the syngas composition of non-catalyst partial oxidation should be adjusted to satisfy the request of different chemical synthesis. That means a multi-reforming method by CO₂ and H₂O addition. The natural gas non-catalytic partial oxidation hot model was established. The effects of O₂/CH4 ratio, steam, and CO₂ on the syngas composition were studied. The results of the experiment indicate that the addition of CO₂ and steam into the reformer can be applied to change the syngas H₂/CO ratio. The reactor network model (RN model) was established according to the flow partition of industrial reformer and GRI-Mech 3.0. The RN model results agree well with the industrial data. The effects of steam, CO₂ on the syngas compositions were studied with the RN model.

Keywords: non-catalyst partial oxidation, natural gas, H₂/CO, CO₂ and H₂O addition, multi-reforming method

Procedia PDF Downloads 193
6631 The Impact of Natural Resources on Financial Development: The Global Perspective

Authors: Remy Jonkam Oben

Abstract:

Using a time series approach, this study investigates how natural resources impact financial development from a global perspective over the 1980-2019 period. Some important determinants of financial development (economic growth, trade openness, population growth, and investment) have been added to the model as control variables. Unit root tests have revealed that all the variables are integrated into order one. Johansen's cointegration test has shown that the variables are in a long-run equilibrium relationship. The vector error correction model (VECM) has estimated the coefficient of the error correction term (ECT), which suggests that the short-run values of natural resources, economic growth, trade openness, population growth, and investment contribute to financial development converging to its long-run equilibrium level by a 23.63% annual speed of adjustment. The estimated coefficients suggest that global natural resource rent has a statistically-significant negative impact on global financial development in the long-run (thereby validating the financial resource curse) but not in the short-run. Causality test results imply that neither global natural resource rent nor global financial development Granger-causes each other.

Keywords: financial development, natural resources, resource curse hypothesis, time series analysis, Granger causality, global perspective

Procedia PDF Downloads 141
6630 Cloudburst-Triggered Natural Hazards in Uttarakhand Himalaya: Mechanism, Prevention, and Mitigation

Authors: Vishwambhar Prasad Sati

Abstract:

This article examines cloudburst-triggered natural hazards mainly flashfloods and landslides in the Uttarakhand Himalaya. It further describes mechanism and implications of natural hazards and illustrates the preventive and mitigation measures. We conducted this study through collection of archival data, case study of cloudburst hit areas, and rapid field visit of the affected regions. In the second week of August 2017, about 50 people died and huge losses to property were noticed due to cloudburst-triggered flashfloods. Our study shows that although cloudburst triggered hazards in the Uttarakhand Himalaya are natural phenomena and unavoidable yet, disasters can be minimized if preventive measures are taken up appropriately. We suggested that construction of human settlements, institutions and infrastructural facilities along the seasonal streams and the perennial rivers should be avoided to prevent disasters. Further, large-scale tree plantation on the degraded land will reduce the magnitude of hazards.

Keywords: cloudburst, flash floods, landslides, fragile landscape

Procedia PDF Downloads 181
6629 Resume Ranking Using Custom Word2vec and Rule-Based Natural Language Processing Techniques

Authors: Subodh Chandra Shakya, Rajendra Sapkota, Aakash Tamang, Shushant Pudasaini, Sujan Adhikari, Sajjan Adhikari

Abstract:

Lots of efforts have been made in order to measure the semantic similarity between the text corpora in the documents. Techniques have been evolved to measure the similarity of two documents. One such state-of-art technique in the field of Natural Language Processing (NLP) is word to vector models, which converts the words into their word-embedding and measures the similarity between the vectors. We found this to be quite useful for the task of resume ranking. So, this research paper is the implementation of the word2vec model along with other Natural Language Processing techniques in order to rank the resumes for the particular job description so as to automate the process of hiring. The research paper proposes the system and the findings that were made during the process of building the system.

Keywords: chunking, document similarity, information extraction, natural language processing, word2vec, word embedding

Procedia PDF Downloads 137
6628 A Review and Classification of Maritime Disasters: The Case of Saudi Arabia's Coastline

Authors: Arif Almutairi, Monjur Mourshed

Abstract:

Due to varying geographical and tectonic factors, the region of Saudi Arabia has been subjected to numerous natural and man-made maritime disasters during the last two decades. Natural maritime disasters, such as cyclones and tsunamis, have been recorded in coastal areas of the Indian Ocean (including the Arabian Sea and the Gulf of Aden). Therefore, the Indian Ocean is widely recognised as the potential source of future destructive natural disasters that could affect Saudi Arabia’s coastline. Meanwhile, man-made maritime disasters, such as those arising from piracy and oil pollution, are located in the Red Sea and the Arabian Gulf, which are key locations for oil export and transportation between Asia and Europe. This paper provides a brief overview of maritime disasters surrounding Saudi Arabia’s coastline in order to classify them by frequency of occurrence and location, and discuss their future impact the region. Results show that the Arabian Gulf will be more vulnerable to natural maritime disasters because of its location, whereas the Red Sea is more vulnerable to man-made maritime disasters, as it is the key location for transportation between Asia and Europe. The results also show that with the aid of proper classification, effective disaster management can reduce the consequences of maritime disasters.

Keywords: disaster classification, maritime disaster, natural disasters, man-made disasters

Procedia PDF Downloads 177
6627 Unsteady and Steady State in Natural Convection

Authors: Syukri Himran, Erwin Eka Putra, Nanang Roni

Abstract:

This study explains the natural convection of viscous fluid flowing on semi-infinite vertical plate. A set of the governing equations describing the continuity, momentum and energy, have been reduced to dimensionless forms by introducing the references variables. To solve the problems, the equations are formulated by explicit finite-difference in time dependent form and computations are performed by Fortran program. The results describe velocity, temperature profiles both in transient and steady state conditions. An approximate value of heat transfer coefficient and the effects of Pr on convection flow are also presented.

Keywords: natural convection, vertical plate, velocity and temperature profiles, steady and unsteady

Procedia PDF Downloads 474
6626 Interaction between Space Syntax and Agent-Based Approaches for Vehicle Volume Modelling

Authors: Chuan Yang, Jing Bie, Panagiotis Psimoulis, Zhong Wang

Abstract:

Modelling and understanding vehicle volume distribution over the urban network are essential for urban design and transport planning. The space syntax approach was widely applied as the main conceptual and methodological framework for contemporary vehicle volume models with the help of the statistical method of multiple regression analysis (MRA). However, the MRA model with space syntax variables shows a limitation in vehicle volume predicting in accounting for the crossed effect of the urban configurational characters and socio-economic factors. The aim of this paper is to construct models by interacting with the combined impact of the street network structure and socio-economic factors. In this paper, we present a multilevel linear (ML) and an agent-based (AB) vehicle volume model at an urban scale interacting with space syntax theoretical framework. The ML model allowed random effects of urban configurational characteristics in different urban contexts. And the AB model was developed with the incorporation of transformed space syntax components of the MRA models into the agents’ spatial behaviour. Three models were implemented in the same urban environment. The ML model exhibit superiority over the original MRA model in identifying the relative impacts of the configurational characters and macro-scale socio-economic factors that shape vehicle movement distribution over the city. Compared with the ML model, the suggested AB model represented the ability to estimate vehicle volume in the urban network considering the combined effects of configurational characters and land-use patterns at the street segment level.

Keywords: space syntax, vehicle volume modeling, multilevel model, agent-based model

Procedia PDF Downloads 123
6625 Economic Neoliberalism: Property Right and Redistribution Policy

Authors: Aleksandar Savanović

Abstract:

In this paper we will analyze the relationship between the neo-liberal concept of property rights and redistribution policy. This issue is back in the focus of interest due to the crisis 2008. The crisis has reaffirmed the influence of the state on the free-market processes. The interference of the state with property relations re-opened a classical question: is it legitimate to redistribute resources of a man in favor of another man with taxes? The dominant view is that the neoliberal philosophy of natural rights is incompatible with redistributive measures. In principle, this view can be accepted. However, when we look into the details of the theory of natural rights proposed by some coryphaei of neoliberal philosophy, such as Hayek, Nozick, Buchanan and Rothbard, we can see that it is not such an unequivocal view.

Keywords: economic neoliberalism, natural law, property, redistribution

Procedia PDF Downloads 359
6624 Potential Use of Thymus mastichina L. Extract as a Natural Agent against Cheese Spoilage Microorganisms

Authors: Susana P. Dias, Andrea Gomes, Fernanda M. Ferreira, Marta F. Henriques

Abstract:

Thymus mastichina L. is an endogenous medicinal and aromatic plant of the Mediterranean flora. It has been used empirically over the years as a natural preservative in food. Nowadays, the antimicrobial activity of its bioactive compounds, such as essential oils and extracts, has been well recognized. The main purpose of this study was to evaluate the antimicrobial effect of Thymus mastichina ethanolic and aqueous extracts on pathogens and spoilage microorganisms present in cheese during ripening. The effect that the extract type and its concentration has on the development of Staphylococcus aureus, Escherichia coli, and Yarrowia lipolytica populations during 24 hours, was studied 'in vitro' using appropriate culture media. The results achieved evidenced the antimicrobial activity of T. mastichina extracts against the studied strains, and the concentration of 2 mg/mL (w/v) was selected and used directly on the cheese surface during ripening. In addition to the microbiological evaluation in terms of total aerobic bacteria, Enterobacteriaceae, yeasts (particularly Y. lipolytica) and molds, the treated cheeses physicochemical evaluation (humidity, aw, pH, colour, and texture) was also performed. The results were compared with cheeses with natamicyn (positive control) and without any treatment (negative control). The physicochemical evaluation showed that the cheeses treated with ethanolic extract of Thymus mastichina, except the fact that they lead to a faster water loss during ripening, did not present considerable differences when compared to controls. The study revealed an evident antimicrobial power of the extracts, although less effective than the one shown by the use of natamycin. For this reason, the improvement of the extraction methods and the adjustment of the extract concentrations will contribute to the use of T. mastichina as a healthier and eco-friendly alternative to natamycin, that is also more attractive from an economic point of view.

Keywords: antimicrobial activity, cheese, ethanolic extract, Thymus mastichina

Procedia PDF Downloads 163
6623 Buffer Allocation and Traffic Shaping Policies Implemented in Routers Based on a New Adaptive Intelligent Multi Agent Approach

Authors: M. Taheri Tehrani, H. Ajorloo

Abstract:

In this paper, an intelligent multi-agent framework is developed for each router in which agents have two vital functionalities, traffic shaping and buffer allocation and are positioned in the ports of the routers. With traffic shaping functionality agents shape the traffic forward by dynamic and real time allocation of the rate of generation of tokens in a Token Bucket algorithm and with buffer allocation functionality agents share their buffer capacity between each other based on their need and the conditions of the network. This dynamic and intelligent framework gives this opportunity to some ports to work better under burst and more busy conditions. These agents work intelligently based on Reinforcement Learning (RL) algorithm and will consider effective parameters in their decision process. As RL have limitation considering much parameter in its decision process due to the volume of calculations, we utilize our novel method which invokes Principle Component Analysis (PCA) on the RL and gives a high dimensional ability to this algorithm to consider as much as needed parameters in its decision process. This implementation when is compared to our previous work where traffic shaping was done without any sharing and dynamic allocation of buffer size for each port, the lower packet drop in the whole network specifically in the source routers can be seen. These methods are implemented in our previous proposed intelligent simulation environment to be able to compare better the performance metrics. The results obtained from this simulation environment show an efficient and dynamic utilization of resources in terms of bandwidth and buffer capacities pre allocated to each port.

Keywords: principal component analysis, reinforcement learning, buffer allocation, multi- agent systems

Procedia PDF Downloads 498
6622 Semantic Platform for Adaptive and Collaborative e-Learning

Authors: Massra M. Sabeima, Myriam lamolle, Mohamedade Farouk Nanne

Abstract:

Adapting the learning resources of an e-learning system to the characteristics of the learners is an important aspect to consider when designing an adaptive e-learning system. However, this adaptation is not a simple process; it requires the extraction, analysis, and modeling of user information. This implies a good representation of the user's profile, which is the backbone of the adaptation process. Moreover, during the e-learning process, collaboration with similar users (same geographic province or knowledge context) is important. Productive collaboration motivates users to continue or not abandon the course and increases the assimilation of learning objects. The contribution of this work is the following: we propose an adaptive e-learning semantic platform to recommend learning resources to learners, using ontology to model the user profile and the course content, furthermore an implementation of a multi-agent system able to progressively generate the learning graph (taking into account the user's progress, and the changes that occur) for each user during the learning process, and to synchronize the users who collaborate on a learning object.

Keywords: adaptative learning, collaboration, multi-agent, ontology

Procedia PDF Downloads 157
6621 An Agent-Based Model of Innovation Diffusion Using Heterogeneous Social Interaction and Preference

Authors: Jang kyun Cho, Jeong-dong Lee

Abstract:

The advent of the Internet, mobile communications, and social network services has stimulated social interactions among consumers, allowing people to affect one another’s innovation adoptions by exchanging information more frequently and more quickly. Previous diffusion models, such as the Bass model, however, face limitations in reflecting such recent phenomena in society. These models are weak in their ability to model interactions between agents; they model aggregated-level behaviors only. The agent based model, which is an alternative to the aggregate model, is good for individual modeling, but it is still not based on an economic perspective of social interactions so far. This study assumes the presence of social utility from other consumers in the adoption of innovation and investigates the effect of individual interactions on innovation diffusion by developing a new model called the interaction-based diffusion model. By comparing this model with previous diffusion models, the study also examines how the proposed model explains innovation diffusion from the perspective of economics. In addition, the study recommends the use of a small-world network topology instead of cellular automata to describe innovation diffusion. This study develops a model based on individual preference and heterogeneous social interactions using utility specification, which is expandable and, thus, able to encompass various issues in diffusion research, such as reservation price. Furthermore, the study proposes a new framework to forecast aggregated-level market demand from individual level modeling. The model also exhibits a good fit to real market data. It is expected that the study will contribute to our understanding of the innovation diffusion process through its microeconomic theoretical approach.

Keywords: innovation diffusion, agent based model, small-world network, demand forecasting

Procedia PDF Downloads 323
6620 Voting Representation in Social Networks Using Rough Set Techniques

Authors: Yasser F. Hassan

Abstract:

Social networking involves use of an online platform or website that enables people to communicate, usually for a social purpose, through a variety of services, most of which are web-based and offer opportunities for people to interact over the internet, e.g. via e-mail and ‘instant messaging’, by analyzing the voting behavior and ratings of judges in a popular comments in social networks. While most of the party literature omits the electorate, this paper presents a model where elites and parties are emergent consequences of the behavior and preferences of voters. The research in artificial intelligence and psychology has provided powerful illustrations of the way in which the emergence of intelligent behavior depends on the development of representational structure. As opposed to the classical voting system (one person – one decision – one vote) a new voting system is designed where agents with opposed preferences are endowed with a given number of votes to freely distribute them among some issues. The paper uses ideas from machine learning, artificial intelligence and soft computing to provide a model of the development of voting system response in a simulated agent. The modeled development process involves (simulated) processes of evolution, learning and representation development. The main value of the model is that it provides an illustration of how simple learning processes may lead to the formation of structure. We employ agent-based computer simulation to demonstrate the formation and interaction of coalitions that arise from individual voter preferences. We are interested in coordinating the local behavior of individual agents to provide an appropriate system-level behavior.

Keywords: voting system, rough sets, multi-agent, social networks, emergence, power indices

Procedia PDF Downloads 381
6619 Catalytic Study of Natural Gas Based Solid Oxide Fuel Cell

Authors: Nasir Iqbal, Khurram Siraj, Rizwan Raza

Abstract:

Solid oxide fuel cell (SOFC) is the promising technology now days. SOFC can be operated with different types of fuels available. In this work catalytic anode is prepared with metal oxides i.e. Li, Ni, Zn and Sn and tested for catalytic activity with natural gas as a fuel. The operating temperature range is 170-750°C as observed with the help of TGA. Electrical conductivity and fuel cell performance has been observed for four different samples with varying composition of Sn and Zn. It is concluded that the sample having greater concentration of Zn shows better conductivity and power density results. All the results are promising and verified with different characterizations.

Keywords: catalytic activity, solid oxide fuel cell, energy material, natural gas

Procedia PDF Downloads 56
6618 Entomopathogenic Bacteria as Biological Control Agents: Review Paper

Authors: Tadesse Kebede Dabsu

Abstract:

Insect pest is one the major limiting factor for sustainable food production. To overtake insect pest problem, since Second World War, producers have used excessive insecticide for insect pest management. However, in the era of 21st Century, the excessive use of insecticide caused insect resistant, insecticide bioaccumulation, insecticide hazard to environment, human health problem, and the like. Due to these problems, research efforts have been focused on the development of environmental free sustainable insect pest management method. To minimize all above mentioned risk utilizing of biological control such as entomopathogenicmicroorganism include bacteria, virus, fungus, and their productsare the best option for suppress insect population below certain density level. The objective of this review was to review the updated available studies and recent developments on the entomopathogenic bacteria (EPB) as biological control of insect pest and challenge of using them for control of insect pest. EPB’s mechanisms of insecticidal activities, type, taxonomy, and history are included in this paper body. EPB has been successfully used for the suppression of populations of insect pests. Controlling of harmful insect by entomopathogenic bacteria is an effective, low bioaccumulation in environment and food, very specific, reduce resistance risk in insect pest, economically and sustainable method of major insect pest management method. Identified and reported as potential major common type of entomopathogenic bacteria include Bacillus thuringiensis, Photorhabdus sp., Xenorhabdus spp.Walbachiaspp, Actinomycetesspp.etc. These bacteria being enter into insect body through natural opening or by vector release toxin protein inside of insect and disrupt the cell’s content cause natural mortality under natural condition. As per reported by different scientists, insect orders like Lepidoptera, Hemiptera, Hymenoptera, Coleoptera, and Dipterahave been successful controlled by entomopathogenic bacteria. As per coming across in different scientific research journals, much of the work was emphasised on Bacillus thuringiensisbsp. Therefore, for commercial production like Bacillus thuringiensi, detail research should be done on other bacteria species. The efficacy and practical application of EPB are restricted to some crops and greenhouse area, but their field application at farmers’ level very less. So still much work needs to be done to the practical application of the EPB at widely application. Their efficacy, pathogenicity, and host range test should be tested under environmental condition.

Keywords: insect pest, entomopathogenic bacteria, biological control, agent

Procedia PDF Downloads 124
6617 Sound Absorbing and Thermal Insulating Properties of Natural Fibers (Coir/Jute) Hybrid Composite Materials for Automotive Textiles

Authors: Robel Legese Meko

Abstract:

Natural fibers have been used as end-of-life textiles and made into textile products which have become a well-proven and effective way of processing. Nowadays, resources to make primary synthetic fibers are becoming less and less as the world population is rising. Hence it is necessary to develop processes to fabricate textiles that are easily converted to composite materials. Acoustic comfort is closely related to the concept of sound absorption and includes protection against noise. This research paper presents an experimental study on sound absorption coefficients, for natural fiber composite materials: a natural fiber (Coir/Jute) with different blend proportions of raw materials mixed with rigid polyurethane foam as a binder. The natural fiber composite materials were characterized both acoustically (sound absorption coefficient SAC) and also in terms of heat transfer (thermal conductivity). The acoustic absorption coefficient was determined using the impedance tube method according to the ASTM Standard (ASTM E 1050). The influence of the structure of these materials on the sound-absorbing properties was analyzed. The experimental results signify that the porous natural coir/jute composites possess excellent performance in the absorption of high-frequency sound waves, especially above 2000 Hz, and didn’t induce a significant change in the thermal conductivity of the composites. Thus, the sound absorption performances of natural fiber composites based on coir/jute fiber materials promote environmentally friendly solutions.

Keywords: coir/jute fiber, sound absorption coefficients, compression molding, impedance tube, thermal insulating properties, SEM analysis

Procedia PDF Downloads 89
6616 Pedagogical Technologies of Teaching Natural Geography

Authors: Mirzahmedov Ismoiljon Karimjon Ugli, Juraeva Shakhnoza Abdumalik Kizi

Abstract:

The article deals with the current scientific problems of natural geography related to the development of new pedagogical technologies and their implementation in the educational process. The use of recommended interactive methods in independent study is considered very effective and is a very useful method for students, especially for students who work more on themselves. Today's demand is to make young people talented, intelligent, innovative, as well as mature and well-rounded individuals, as a result of the work carried out in the field of education today. This is how creating tables of different contents and filling them out shows the student's talent and desire for innovation. Also, the techniques and methods necessary for today's student are shown, the role of the teacher in conducting lessons meaningfully, the suitability of the method used by the teacher for the lesson, factors affecting the quality of education, and natural issues of the use of methods based on the specific features of geography are highlighted.

Keywords: teaching methods, educational process, educational technologies, education, problem, didactics, natural geography

Procedia PDF Downloads 47
6615 A Survey of the Applications of Sentiment Analysis

Authors: Pingping Lin, Xudong Luo

Abstract:

Natural language often conveys emotions of speakers. Therefore, sentiment analysis on what people say is prevalent in the field of natural language process and has great application value in many practical problems. Thus, to help people understand its application value, in this paper, we survey various applications of sentiment analysis, including the ones in online business and offline business as well as other types of its applications. In particular, we give some application examples in intelligent customer service systems in China. Besides, we compare the applications of sentiment analysis on Twitter, Weibo, Taobao and Facebook, and discuss some challenges. Finally, we point out the challenges faced in the applications of sentiment analysis and the work that is worth being studied in the future.

Keywords: application, natural language processing, online comments, sentiment analysis

Procedia PDF Downloads 242
6614 Natural Dyes in Schools. Development of Techniques From Early Childhood as a Tool for Art, Design and Sustainability

Authors: Luciana Marrone

Abstract:

Natural dyes are a great resource for today's artists and designers providing endless possibilities for design and sustainability. This research and development project focuses on the idea of making these dyeing or painting methodologies reach the widest possible range of students. The main objective is to inform and train, free of charge, teachers and students from different academic institutions, at different levels, kindergarten, primary, secondary, tertiary and university. In this research and dissemination project, in the first instance, institutions from Argentina, Chile, Uruguay, Mexico, Spain, Italy, Colombia, Paraguay, Venezuela, Brazil and Australia joined the project, reaching the grassroots of education from the very beginning. Natural dyes will become part of everyday life for more people, achieving their own colors for art, textiles or any other application. The knowledge of the techniques and resources of the student a fundamental tool, sustainable and opens endless possibilities even in places or homes with few economic resources, thus achieving that natural dyes are not only part of the world of designers but also that they are incorporated from the basics and can thus become a resource applicable in different areas even in places with few economic or development possibilities.

Keywords: art, education, natural dyes, sustainability, textile design.

Procedia PDF Downloads 72