Search results for: shrub and tree leaves
Commenced in January 2007
Frequency: Monthly
Edition: International
Paper Count: 1767

Search results for: shrub and tree leaves

1677 A Hybrid Based Algorithm to Solve the Multi-objective Minimum Spanning Tree Problem

Authors: Boumesbah Asma, Chergui Mohamed El-amine

Abstract:

Since it has been shown that the multi-objective minimum spanning tree problem (MOST) is NP-hard even with two criteria, we propose in this study a hybrid NSGA-II algorithm with an exact mutation operator, which is only used with low probability, to find an approximation to the Pareto front of the problem. In a connected graph G, a spanning tree T of G being a connected and cycle-free graph, if k edges of G\T are added to T, we obtain a partial graph H of G inducing a reduced size multi-objective spanning tree problem compared to the initial one. With a weak probability for the mutation operator, an exact method for solving the reduced MOST problem considering the graph H is then used to give birth to several mutated solutions from a spanning tree T. Then, the selection operator of NSGA-II is activated to obtain the Pareto front approximation. Finally, an adaptation of the VNS metaheuristic is called for further improvements on this front. It allows finding good individuals to counterbalance the diversification and the intensification during the optimization search process. Experimental comparison studies with an exact method show promising results and indicate that the proposed algorithm is efficient.

Keywords: minimum spanning tree, multiple objective linear optimization, combinatorial optimization, non-sorting genetic algorithm, variable neighborhood search

Procedia PDF Downloads 65
1676 Using Risk Management Indicators in Decision Tree Analysis

Authors: Adel Ali Elshaibani

Abstract:

Risk management indicators augment the reporting infrastructure, particularly for the board and senior management, to identify, monitor, and manage risks. This enhancement facilitates improved decision-making throughout the banking organization. Decision tree analysis is a tool that visually outlines potential outcomes, costs, and consequences of complex decisions. It is particularly beneficial for analyzing quantitative data and making decisions based on numerical values. By calculating the expected value of each outcome, decision tree analysis can help assess the best course of action. In the context of banking, decision tree analysis can assist lenders in evaluating a customer’s creditworthiness, thereby preventing losses. However, applying these tools in developing countries may face several limitations, such as data availability, lack of technological infrastructure and resources, lack of skilled professionals, cultural factors, and cost. Moreover, decision trees can create overly complex models that do not generalize well to new data, known as overfitting. They can also be sensitive to small changes in the data, which can result in different tree structures and can become computationally expensive when dealing with large datasets. In conclusion, while risk management indicators and decision tree analysis are beneficial for decision-making in banks, their effectiveness is contingent upon how they are implemented and utilized by the board of directors, especially in the context of developing countries. It’s important to consider these limitations when planning to implement these tools in developing countries.

Keywords: risk management indicators, decision tree analysis, developing countries, board of directors, bank performance, risk management strategy, banking institutions

Procedia PDF Downloads 32
1675 An Enhanced MEIT Approach for Itemset Mining Using Levelwise Pruning

Authors: Tanvi P. Patel, Warish D. Patel

Abstract:

Association rule mining forms the core of data mining and it is termed as one of the well-known methodologies of data mining. Objectives of mining is to find interesting correlations, frequent patterns, associations or casual structures among sets of items in the transaction databases or other data repositories. Hence, association rule mining is imperative to mine patterns and then generate rules from these obtained patterns. For efficient targeted query processing, finding frequent patterns and itemset mining, there is an efficient way to generate an itemset tree structure named Memory Efficient Itemset Tree. Memory efficient IT is efficient for storing itemsets, but takes more time as compare to traditional IT. The proposed strategy generates maximal frequent itemsets from memory efficient itemset tree by using levelwise pruning. For that firstly pre-pruning of items based on minimum support count is carried out followed by itemset tree reconstruction. By having maximal frequent itemsets, less number of patterns are generated as well as tree size is also reduced as compared to MEIT. Therefore, an enhanced approach of memory efficient IT proposed here, helps to optimize main memory overhead as well as reduce processing time.

Keywords: association rule mining, itemset mining, itemset tree, meit, maximal frequent pattern

Procedia PDF Downloads 346
1674 Faults Diagnosis by Thresholding and Decision tree with Neuro-Fuzzy System

Authors: Y. Kourd, D. Lefebvre

Abstract:

The monitoring of industrial processes is required to ensure operating conditions of industrial systems through automatic detection and isolation of faults. This paper proposes a method of fault diagnosis based on a neuro-fuzzy hybrid structure. This hybrid structure combines the selection of threshold and decision tree. The validation of this method is obtained with the DAMADICS benchmark. In the first phase of the method, a model will be constructed that represents the normal state of the system to fault detection. Signatures of the faults are obtained with residuals analysis and selection of appropriate thresholds. These signatures provide groups of non-separable faults. In the second phase, we build faulty models to see the flaws in the system that cannot be isolated in the first phase. In the latest phase we construct the tree that isolates these faults.

Keywords: decision tree, residuals analysis, ANFIS, fault diagnosis

Procedia PDF Downloads 596
1673 Evaluation of Nutritional Potential of Five Unexplored Wild Edible Food Plants from Eastern Himalayan Biodiversity Hotspot Region (India)

Authors: Pallabi Kalita, Hui Tag, Loxmi Jamoh, H. N. Sarma, A. K. Das

Abstract:

Wild edible food plants contain a number of organic phytochemical that have been linked to the promotion of good health. These plants used by the local people of Arunachal Pradesh (Northeast India) are found to have high nutritional potential to maintain general balance diet. A study was conducted to evaluate the nutritional potential of five commonly found, unexplored wild food plants namely, Piper pedicellatum C. DC (leaves), Gonostegia hirta (Blume ex Hassk.) Miq. (leaves), Mussaenda roxburghii Hook. f. (leaves), Solanum spirale Roxb. (leaves and fruits) and Cyathea spinulosa Wall. ex Hook. (pith portion and tender rachis) from East Siang District of Arunachal Pradesh Northeast (India) for ascertaining their suitability for utilization as supplementary food. Results of study revealed that P. pedicellatum, C. spinulosa, and S. spirale (leaves) are the most promising species which have high nutritional content out of the five wild food plants investigated which is required for the normal growth and development of human.

Keywords: wild edible plants, gross energy, Gonostegia hirta, Cyathea spinulosa

Procedia PDF Downloads 303
1672 Improve B-Tree Index’s Performance Using Lock-Free Hash Table

Authors: Zhanfeng Ma, Zhiping Xiong, Hu Yin, Zhengwei She, Aditya P. Gurajada, Tianlun Chen, Ying Li

Abstract:

Many RDBMS vendors use B-tree index to achieve high performance for point queries and range queries, and some of them also employ hash index to further enhance the performance as hash table is more efficient for point queries. However, there are extra overheads to maintain a separate hash index, for example, hash mapping for all data records must always be maintained, which results in more memory space consumption; locking, logging and other mechanisms are needed to guarantee ACID, which affects the concurrency and scalability of the system. To relieve the overheads, Hash Cached B-tree (HCB) index is proposed in this paper, which consists of a standard disk-based B-tree index and an additional in-memory lock-free hash table. Initially, only the B-tree index is constructed for all data records, the hash table is built on the fly based on runtime workload, only data records accessed by point queries are indexed using hash table, this helps reduce the memory footprint. Changes to hash table are done using compare-and-swap (CAS) without performing locking and logging, this helps improve the concurrency and avoid contention. The hash table is also optimized to be cache conscious. HCB index is implemented in SAP ASE database, compared with the standard B-tree index, early experiments and customer adoptions show significant performance improvement. This paper provides an overview of the design of HCB index and reports the experimental results.

Keywords: B-tree, compare-and-swap, lock-free hash table, point queries, range queries, SAP ASE database

Procedia PDF Downloads 261
1671 Probing Syntax Information in Word Representations with Deep Metric Learning

Authors: Bowen Ding, Yihao Kuang

Abstract:

In recent years, with the development of large-scale pre-trained lan-guage models, building vector representations of text through deep neural network models has become a standard practice for natural language processing tasks. From the performance on downstream tasks, we can know that the text representation constructed by these models contains linguistic information, but its encoding mode and extent are unclear. In this work, a structural probe is proposed to detect whether the vector representation produced by a deep neural network is embedded with a syntax tree. The probe is trained with the deep metric learning method, so that the distance between word vectors in the metric space it defines encodes the distance of words on the syntax tree, and the norm of word vectors encodes the depth of words on the syntax tree. The experiment results on ELMo and BERT show that the syntax tree is encoded in their parameters and the word representations they produce.

Keywords: deep metric learning, syntax tree probing, natural language processing, word representations

Procedia PDF Downloads 39
1670 Image Processing Approach for Detection of Three-Dimensional Tree-Rings from X-Ray Computed Tomography

Authors: Jorge Martinez-Garcia, Ingrid Stelzner, Joerg Stelzner, Damian Gwerder, Philipp Schuetz

Abstract:

Tree-ring analysis is an important part of the quality assessment and the dating of (archaeological) wood samples. It provides quantitative data about the whole anatomical ring structure, which can be used, for example, to measure the impact of the fluctuating environment on the tree growth, for the dendrochronological analysis of archaeological wooden artefacts and to estimate the wood mechanical properties. Despite advances in computer vision and edge recognition algorithms, detection and counting of annual rings are still limited to 2D datasets and performed in most cases manually, which is a time consuming, tedious task and depends strongly on the operator’s experience. This work presents an image processing approach to detect the whole 3D tree-ring structure directly from X-ray computed tomography imaging data. The approach relies on a modified Canny edge detection algorithm, which captures fully connected tree-ring edges throughout the measured image stack and is validated on X-ray computed tomography data taken from six wood species.

Keywords: ring recognition, edge detection, X-ray computed tomography, dendrochronology

Procedia PDF Downloads 189
1669 Oxalate Content of Raw and Cooked Amaranth and Strawberry Spinach Grown in an Elevated CO₂ Atmosphere

Authors: Madhuri Kanala, Geoffrey Savage

Abstract:

Worldwide CO₂ levels are slowly rising, and this may have effects on the growth and nutritional composition of many food plants. The production of secondary metabolites such as oxalates has not been investigated in depth. The oxalate content of many food plants are known to have adverse nutritional effects on humans and reduction in the oxalate contents of food plants is a very positive move. Recent studies had shown that the oxalate content of the leaves of spinach and silver beet reduced when the plants were grown in an environment where CO₂ was increased. The response of amaranth and strawberry spinach leaves to changes in the high CO₂ environment have not been understood though it is known that the plants do contain appreciable oxalate contents. A study was conducted where amaranth and strawberry spinach plants were grown in identical plant growth chambers with the same environmental conditions except that one chamber was supplied with ambient air (CO₂ 405 ppm) while the other chamber had the CO₂ level increased to 650 ppm. The total and soluble oxalate content of the leaves of raw and cooked amaranth and strawberry spinach were determined by HPLC and calcium levels were determined using ICP following 6 weeks of growth. The total oxalate content of the fresh leaves of amaranth and strawberry spinach were reduced by 29.5 % and 24.6% respectively in the leaves of the plants grown in increased CO₂ conditions compared to ambient levels. The soluble oxalate content of amaranth leaves grown under ambient and increased CO₂ conditions were future reduced by 42% and 26.8% respectively following cooking as the soluble oxalate was leached into the cooking water and discarded. The reduction of the oxalate and calcium levels of raw and cooked amaranth and strawberry spinach leaves following an increase in CO₂ content in the air is an interesting positive response to an otherwise significant environmental problem.

Keywords: amaranth, calcium oxalate, enriched CO₂, oxalates, strawberry spinach

Procedia PDF Downloads 167
1668 Urban and Rural Children’s Knowledge on Biodiversity in Bizkaia: Tree Identification Skills and Animal and Plant Listing

Authors: Joserra Díez, Ainhoa Meñika, Iñaki Sanz-Azkue, Arritokieta Ortuzar

Abstract:

Biodiversity provides humans with a great range of ecosystemic services; it is therefore an indispensable resource and a legacy to coming generations. However, in the last decades, the increasing exploitation of the Planet has caused a great loss of biodiversity and its acquaintance has decreased remarkably; especially in urbanized areas, due to the decreasing attachment of humans to nature. Yet, the Primary Education curriculum primes the identification of flora and fauna to guarantee the knowledge of children on their surroundings, so that they care for the environment as well as for themselves. In order to produce effective didactic material that meets the needs of both teachers and pupils, it is fundamental to diagnose the current situation. In the present work, the knowledge on biodiversity of 3rd cycle Primary Education students in Biscay (n=98) and its relation to the size of the town/city of their school is discussed. Two tests have been used with such aim: one for tree identification and the other one so that the students enumerated the species of trees and animals they knew. Results reveal that knowledge of students on tree identification is scarce regardless the size of the city/town and of their school. On the other hand, animal species are better known than tree species.

Keywords: biodiversity, population, tree identification, animal identification

Procedia PDF Downloads 161
1667 A New Phenolic Compound Isolated from Laurus nobilis from Lebanon and Comparison of Antioxidant Activity of Different Parts

Authors: Turk Ayman, Ahn Jong Hoon, Khalife K. Hala, Gali-Muhtasib Hala, Lee Mi Kyeong

Abstract:

Laurus nobilis is an aromatic plant widely distributed in the Mediterranean region. The leaves of this plant are frequently used as a spice and as a traditional medicine for several diseases. In our present study, the methanolic extract of L. nobilis leaves showed antioxidant activity. Chromatographic separations of the EtOAc fraction which had the highest antioxidant activity led to the isolation of 12 compounds. Among them, there was a new phenylpropanoid derivative, which was identified by 1D and 2D NMR experiments, as well as high resolution mass spectrometry. In addition, two major compounds, catechin and epicatechin, which showed strong antioxidant activity may be responsible for the antioxidant activity of L. nobilis leaves. Since different plant parts may contain different types of constituents which contribute to the biological activities, we investigated the antioxidant activity of different parts of L. nobilis such as leaves, stems and fruits. Stems of L. nobilis showed the most potent antioxidant activity, followed by leaves. Further quantitation of total phenol and flavonoids contents revealed a positive correlation between the content of these compounds and antioxidant activity. Taken together, phenolic compounds including flavonoids are responsible for antioxidant activity of L. nobilis. In addition, stem parts of L. nobilis are suggested as good sources for antioxidant activity. Conclusively, L. nobilis might be effective in several free radical mediated diseases.

Keywords: antioxidant activity, different parts, Laurus nobilis, phenolic compound

Procedia PDF Downloads 273
1666 An Advanced Method of Plant Preservation and Colour Retention of Herbarium Specimens

Authors: Abduraheem K., Suboohi Nasrin

Abstract:

Herbaria are specimens of preserved plants, which are very delicate and cellulosic in nature. While these collections are very useful for the enrichment of knowledge and are considered as natural heritage of our entire world, it is very important to preserve and conserve them. The significance is not only to prevent the herbaria from the deterioration of biological agencies but also to preserve its colours and retain natural colour. Colour is not only characteristic of a plant, but it can also help to identify closely related species or to distinguish a plant from a collection of herbaria. Keeping this in mind, a selective solution has been prepared for the conservation and preservation of herbarium in the present study. In this, the quantity of all the selected chemicals, i.e., formaldehyde and copper sulphate was kept constant, and the solution was prepared by dissolving it in distilled water by increasing the amount of picric acid (1, 2, 3, 4, and 5 ml). Fresh specimens of roses and bougainvillea were washed with distilled water and kept in the above solution for 10 to 15 minutes at room temperature. After 10 minutes, the specimen was removed from the solution, dried with the help of paper, and then pressed under the plant press. Blotting sheets were used to absorb the moisture content and were changed every 2 to 3 days to protect against fungal growth. The results revealed that all solutions had insecticidal properties and protected the herbarium specimen against pests. While in the case of colour retention, solution-1 and 2 were not satisfactory colour preservation, and solutions-3 and 5 maintained the colour of rose and bougainvillea leaves for 15 to 20 days and for a month, respectively. After that, the colour begins to fade, and the process is faster in rose leaves than in bougainvillea. And it was also observed that the colour of young leaves started to fade before that of older leaves. When the leaves of rose and bougainvillea are treated with Solution-4, then the colour of rose leaves is maintained for six months.

Keywords: solutions, colour retention, preservation and conservation, leaves of roses and bougainvillea

Procedia PDF Downloads 71
1665 Analysis of Caffeic Acid from Myrica nagi Leaves by High Performance Liquid Chromatography

Authors: Preeti Panthari, Harsha Kharkwal

Abstract:

Myrica nagi belongs to Myricaceae family. It is known for its therapeutic use since ancient times. The leaves were extracted with methanol and further fractioned with different solvents with increasing polarity. The n-butanol fraction of methanol extract was passed through celite, on separation through silica gel column chromatography yielded ten fractions. For the first time we report isolation of Caffeic acid from n-butanol fraction of Myrica nagi leaves in Chloroform: methanol (70:30) fraction. The mobile phase used for analysis in HPLC was Methanol: water (60:40) at the flow rate of 1 ml/min at wavelength of 280 nm. The retention time was 2.66 mins.

Keywords: Myrica nagi, column chromatography, retention time, caffeic acid

Procedia PDF Downloads 523
1664 Selection of Landscape Plant Species: A Experiment of Noise Reduction by Vibration of Plant Leaves

Authors: Li Mengmeng, Kang Jian

Abstract:

With the rapid development of the city, the noise pollution becomes more and more serious. Noise has seriously affected people's normal life, study and work. In addition, noise has seriously affected the city's ecological environment and the migration of birds. Therefore, it is urgent to control the noise. As one of natural noise-reducing materials, plants have been paid more and more attention. In urban landscape design, it is very important to choose plant species with good noise reduction effect to the sustainable development of urban ecology. The aim of this paper is to find out the characteristics of the plant with good noise reduction effect and apply it in urban landscape design. This study investigated the vibration of leaves of six plant species in a sound field using a Keyence (IG-1000/CCD) Laser Micrometer. The results of the experiments showed that the vibration speed of plant leaves increased obviously after being stimulated by sound source, about 5-10 times. In addition, when driven by the same sound, the speed of all leaves varied with the difference of leaf thickness, leaf size and leaf mass. The speed of all leaves would increase with the increase of leaf size and leaf mass, while those would decrease with the increase of leaf thickness.

Keywords: landscape design, leaf vibration , noise attenuation, plants configuration

Procedia PDF Downloads 198
1663 The Influence of Forest Management Histories on Dead and Habitat Trees in the Old Growth Forest in Northern Iran

Authors: Kiomars Sefidi

Abstract:

Dead and habitat tree such as fallen logs, snags, stumps and cracks and loos bark etc. is regarded as an important ecological component of forests on which many forest dwelling species depend, yet its relation to management history in Caspian forest has gone unreported. The aim of research was to compare the amounts of dead tree and habitat in the forests with historically different intensities of management, including: forests with the long term implication of management (PS), the short-term implication of management (NS) which were compared with semi virgin forest (GS). The number of 405 individual dead and habitat trees were recorded and measured at 109 sampling locations. ANOVA revealed volume of the dead tree in the form and decay classes significantly differ within sites and dead volume in the semi virgin forest significantly higher than managed sites. Comparing the amount of dead and habitat tree in three sites showed that dead tree volume related with management history and significantly differ in three study sites. Also, the numbers of habitat trees including cavities, Cracks and loose bark and Fork split trees significantly vary among sites. Reaching their highest in virgin site and their lowest in the site with the long term implication of management, it was concluded that forest management cause reduction of the amount of dead and habitat tree. Forest management history affect the forest's ability to generate dead tree especially in a large size, thus managing this forest according to ecological sustainable principles require a commitment to maintaining stand structure that allow, continued generation of dead tree in a full range of size.

Keywords: forest biodiversity, cracks trees, fork split trees, sustainable management, Fagus orientalis, Iran

Procedia PDF Downloads 532
1662 Phytochemical Analysis and Antioxidant Activity of Colocasia esculenta (L.) Leaves

Authors: Amit Keshav, Alok Sharma, Bidyut Mazumdar

Abstract:

Colocasia esculenta leaves and roots are widely used in Asian countries, such as, India, Srilanka and Pakistan, as food and feed material. The root is high in carbohydrates and rich in zinc. The leaves and stalks are often traditionally preserved to be eaten in dry season. Leaf juice is stimulant, expectorant, astringent, appetizer, and otalgia. Looking at the medicinal uses of the plant leaves; phytochemicals were extracted from the plant leaves and were characterized using Fourier-transform infrared spectroscopy (FTIR) to find the functional groups. Phytochemical analysis of Colocasia esculenta (L.) leaf was studied using three solvents (methanol, chloroform, and ethanol) with soxhlet apparatus. Powder of the leaves was employed to obtain the extracts, which was qualitatively and quantitatively analyzed for phytochemical content using standard methods. Phytochemical constituents were abundant in the leave extract. Leaf was found to have various phytochemicals such as alkaloids, glycosides, flavonoids, terpenoids, saponins, oxalates and phenols etc., which could have lot of medicinal benefits such as reducing headache, treatment of congestive heart failure, prevent oxidative cell damage etc. These phytochemicals were identified using UV spectrophotometer and results were presented. In order to find the antioxidant activity of the extract, DPPH (2,2-diphenyl-1-picrylhydrazyl) method was employed using ascorbic acid as standard. DPPH scavenging activity of ascorbic acid was found to be 84%, whereas for ethanol it was observed to be 78.92%, for methanol: 76.46% and for chloroform: 72.46%. Looking at the high antioxidant activity, Colocasia esculenta may be recommended for medicinal applications. The characterizations of functional groups were analyzed using FTIR spectroscopy.

Keywords: antioxidant activity, Colocasia esculenta, leaves, characterization, FTIR

Procedia PDF Downloads 199
1661 Phytochemical and Antioxidant Activity Test of Water Fraction Extract of Sisik Naga (Drymoglossum piloselloides) Leaves

Authors: Afifah Nur Aini, Elsa Mega Suryani, Betty Lukiaty

Abstract:

Drymoglossum piloselloides or more commonly known as sisik naga fern is a member of Polipodiaceae Family that is abundant and widely distributed in nature. That being said, there hasn’t been many studies reporting about the benefits of this fern. The aim of this study was to find out the active compounds and antioxidant activity of water fraction extract of sisik naga leaves. The study will be able to optimize the use of this fern in the future. In this study, phytochemical test was done qualitatively by using Mayer, Dragendorff and Wagner reagent for alkaloid test; FeCl3 for phenolic test; Shinoda test for flavonoid; Liebermann-Burchard test for triterprnoid and Forth test for saponin. Antioxidant activity test was done by using 20D spectronic spectrophotometer to determine the percentage of DPPH free radical inhibition. The results showed that water fraction extract of sisik naga leaves contain phenolic and IC50 = 5.44 μg/ml. This means that sisik naga leaves can be used as an antioxidant.

Keywords: antioxidant activity test, dpph, phytochemical test, drymoglossum piloselloides

Procedia PDF Downloads 876
1660 Plant Leaf Recognition Using Deep Learning

Authors: Aadhya Kaul, Gautam Manocha, Preeti Nagrath

Abstract:

Our environment comprises of a wide variety of plants that are similar to each other and sometimes the similarity between the plants makes the identification process tedious thus increasing the workload of the botanist all over the world. Now all the botanists cannot be accessible all the time for such laborious plant identification; therefore, there is an urge for a quick classification model. Also, along with the identification of the plants, it is also necessary to classify the plant as healthy or not as for a good lifestyle, humans require good food and this food comes from healthy plants. A large number of techniques have been applied to classify the plants as healthy or diseased in order to provide the solution. This paper proposes one such method known as anomaly detection using autoencoders using a set of collections of leaves. In this method, an autoencoder model is built using Keras and then the reconstruction of the original images of the leaves is done and the threshold loss is found in order to classify the plant leaves as healthy or diseased. A dataset of plant leaves is considered to judge the reconstructed performance by convolutional autoencoders and the average accuracy obtained is 71.55% for the purpose.

Keywords: convolutional autoencoder, anomaly detection, web application, FLASK

Procedia PDF Downloads 137
1659 Survey on Big Data Stream Classification by Decision Tree

Authors: Mansoureh Ghiasabadi Farahani, Samira Kalantary, Sara Taghi-Pour, Mahboubeh Shamsi

Abstract:

Nowadays, the development of computers technology and its recent applications provide access to new types of data, which have not been considered by the traditional data analysts. Two particularly interesting characteristics of such data sets include their huge size and streaming nature .Incremental learning techniques have been used extensively to address the data stream classification problem. This paper presents a concise survey on the obstacles and the requirements issues classifying data streams with using decision tree. The most important issue is to maintain a balance between accuracy and efficiency, the algorithm should provide good classification performance with a reasonable time response.

Keywords: big data, data streams, classification, decision tree

Procedia PDF Downloads 489
1658 About the Case Portfolio Management Algorithms and Their Applications

Authors: M. Chumburidze, N. Salia, T. Namchevadze

Abstract:

This work deal with case processing problems in business. The task of strategic credit requirements management of cases portfolio is discussed. The information model of credit requirements in a binary tree diagram is considered. The algorithms to solve issues of prioritizing clusters of cases in business have been investigated. An implementation of priority queues to support case management operations has been presented. The corresponding pseudo codes for the programming application have been constructed. The tools applied in this development are based on binary tree ordering algorithms, optimization theory, and business management methods.

Keywords: credit network, case portfolio, binary tree, priority queue, stack

Procedia PDF Downloads 100
1657 A Hybrid Model Tree and Logistic Regression Model for Prediction of Soil Shear Strength in Clay

Authors: Ehsan Mehryaar, Seyed Armin Motahari Tabari

Abstract:

Without a doubt, soil shear strength is the most important property of the soil. The majority of fatal and catastrophic geological accidents are related to shear strength failure of the soil. Therefore, its prediction is a matter of high importance. However, acquiring the shear strength is usually a cumbersome task that might need complicated laboratory testing. Therefore, prediction of it based on common and easy to get soil properties can simplify the projects substantially. In this paper, A hybrid model based on the classification and regression tree algorithm and logistic regression is proposed where each leaf of the tree is an independent regression model. A database of 189 points for clay soil, including Moisture content, liquid limit, plastic limit, clay content, and shear strength, is collected. The performance of the developed model compared to the existing models and equations using root mean squared error and coefficient of correlation.

Keywords: model tree, CART, logistic regression, soil shear strength

Procedia PDF Downloads 170
1656 Antiproliferative Effect of Polyphenols from Crocus sativus L. Leaves on Human Colon Adenocarcinoma Cells (Caco-2)

Authors: Gonzalo Ortiz de Elguea-Culebras, Raúl Sánchez-Vioquea, Adela Mena-Morales, Manuel Alaiz, Enrique Melero-Bravo, Esteban García-Romero, Javier Vioque, Lourdes Marchante-Cuevas, Julio Girón-Calle

Abstract:

Saffron (Crocus sativus L.) is a highly valued crop for the manufacture of spice that consists of the dried stigma of the flowers. This is in contrast to other underutilized parts of the saffron plant as leaves, which represent abundant biomass whose use might help to enhance the sustainability of the saffron crop. Saffron leaves contain significant amounts of phenolic compounds, 7.8 equivalent grams of gallic acid per 100g of extract, and are very promising compounds in terms of exploring novel uses of saffron leaves. Given that phenolic compounds have numerous effects on cancer-related biological pathways, we have investigated the in vitro antiproliferative effect of saffron leaf polyphenols against human colon adenocarcinoma cells (Caco-2). Polyphenols were extracted from leaves with 70% ethanol, defatted with hexane, and purified by solid phase extraction using C18 silica gel and then silica gel 60. Analysis of polyphenols was performed by HPLC-ESI-MS. Di-, tri-, and tetrahexosides of quercetin, kaempferol, and isorhamnetin, as well as C-hexosides like isoorientin and vitexin, were tentatively identified. Polyphenols strongly inhibited the proliferation of Caco-2 cells, which is consistent with model studies in which several of the polyphenols identified in saffron leaves have demonstrated their potential as chemopreventive agents in cancer. Due to the low profitability that saffron leaf currently represents, we consider these results very encouraging and that this by-product deserves further investigation as a potential source of active molecules against colorectal cancer.

Keywords: saffron leaves, agricultural by-products, polyphenols, antiproliferative effect, human colon adenocarcinoma cells

Procedia PDF Downloads 65
1655 Antimicrobial, Antioxidant and Enzyme Activities of Geosmithia pallida (KU693285): A Fungal Endophyte Associated with Brucea mollis Wall Ex. Kurz, an Endangered and Medicinal Plant of N. E. India

Authors: Deepanwita Deka, Dhruva Kumar Jha

Abstract:

Endophytes are the microbes that colonize living, internal tissues of plants without causing any immediate, overt negative effects. Endophytes are rich source of therapeutic substances like antimicrobial, anticancerous, herbicidal, insecticidal, immunomodulatory compounds. Brucea mollis, commonly known as Quinine in Assam, belonging to the family Simaroubaceae, is a shrub or small tree, recorded as endangered species in North East India by CAMP survey in 2003. It is traditionally being used as antimalarial and antimicrobial agent and has antiplasmodial, cytotoxic, anticancer, diuretic, cardiovascular effect etc. Being endangered and medicinal; this plant may host certain noble endophytes which need to be studied in depth. The aim of the present study was isolation and identification of potent endophytic fungi from Brucea mollis, an endangered medicinal plant, to protect it from extinction due to over use for medicinal purposes. Aseptically collected leaves, barks and roots samples of healthy plants were washed and cut into a total of 648 segments of about 2 cm long and 0.5 cm broad with sterile knife, comprising 216 segments each from leaves, barks and roots. These segments were surface sterilized using ethanol, mercuric chloride (HgCl2) and aqueous solution of sodium hypochlorite (NaClO). Different media viz., Czapeck-Dox-Agar (CDA, Himedia), Potato-Dextrose-Agar (PDA, Himedia), Malt Extract Agar (MEA, Himedia), Sabourad Dextrose Agar (SDA, Himedia), V8 juice agar, nutrient agar and water agar media and media amended with plant extracts were used separately for the isolation of the endophytic fungi. A total of 11 fungal species were recovered from leaf, bark and root tissues of B. mollis. The isolates were screened for antimicrobial, antioxidant and enzymatic activities using certain protocols. Cochliobolus geniculatus was identified as the most dominant species. The mycelia sterilia (creamy white) showing highest inhibitory activity against Candida albicans (MTCC 183) was induced to sporulate using modified PDA media. The isolate was identified as Geosmithia pallida. The internal transcribed spacer of rDNA was sequenced for confirmation of the taxonomic identity of the sterile mycelia (creamy white). The internal transcribed spacer r-DNA sequence was submitted to the NCBI (KU693285) for the first time from India. G. pallida and Penicillium showed highest antioxidant activity among all the isolates. The antioxidant activity of G. pallida and Penicillium didn’t show statistically significant difference (P˃0.05). G. pallida, Cochliobolus geniculatus and P. purpurogenum respectively showed highest cellulase, amylase and protease activities. Thus, endopytic fungal isolates may be used as potential natural resource of pharmaceutical importance. The endophytic fungi, Geosmithia pallida, may be used for synthesis of pharmaceutically important natural products and consequently can replace plants hitherto used for the same purpose. This study suggests that endophytes should be investigated more aggressively to better understand the endophyte biology of B. mollis.

Keywords: Antimicrobial activity, antioxidant activity, Brucea mollis, endophytic fungi, enzyme activity, Geosmithia pallida

Procedia PDF Downloads 153
1654 Biodegradable Drinking Straws Made From Naturally Dried and Fallen Coconut Leaves: Impact on Rural Circular Economy and Environmental Sustainability

Authors: Saji Varghese

Abstract:

Naturally dried and fallen coconut leaves and found in abundance in India and other coconut growing regions of the world. These fallen coconut leaves are usually burnt by farmers in landfills and open kitchens, leading to CO2 and particulate emissions. The innovation of biodegradable drinking straws from naturally dried and fallen coconut leaves by this researcher and his team has opened up opportunities to create value out of this agri-waste leading to i. prevention of burning of these discarded leaves ii. income generating opportunities to women in rural areas of coconut growing regions iii. an alternative to single use plastic straws. The team has developed five special purpose machines, which are deployed in the three villages on a pilot basis where 36 women are employed. The women are trained in the use of these machines, and the straws which are in good demand are sold globally. The present paper analyses the prospective impact of this innovation on the incomes of women working at the straw production centres and the consequent impact on their standards of living, The paper also analyses the impact of this innovation in the reduction of CO2 and particulate emissions and makes a case for support from Govt and Non Govt organizations in coconut growing regions to set up straw production centres to boost rural circular economy and to reduce carbon footprint and eliminate plastic pollution

Keywords: drinking straws, coconut leaves, circular economy, sustainability

Procedia PDF Downloads 109
1653 Effect of Tree Age on Fruit Quality of Different Cultivars of Sweet Orange

Authors: Muhammad Imran, Faheem Khadija, Zahoor Hussain, Raheel Anwar, M. Nawaz Khan, M. Raza Salik

Abstract:

Amongst citrus species, sweet orange (Citrus sinensis L. Osbeck) occupies a dominant position in the orange producing countries in the world. Sweet orange is widely consumed both as fresh fruit as well as juice and its global demand is attributed due to higher vitamin C and antioxidants. Fruit quality is most important for the external appearance and marketability of sweet orange fruit, especially for fresh consumption. There are so many factors affecting fruit quality, tree age is the most important one, but remains unexplored so far. The present study, we investigated the role of tree age on fruit quality of different cultivars of sweet oranges. The difference between fruit quality of 5-year young and 15-year old trees was discussed in the current study. In case of fruit weight, maximum fruit weight (238g) was recorded in 15-year old sweet orange cv. Sallustiana cultivar while minimum fruit weight (142g) was recorded in 5-year young tree of Succari sweet orange fruit. The results of the fruit diameter showed that the maximum fruit diameter (77.142mm) was recorded in 15-year old Sallustiana orange but the minimum fruit diameter (66.046mm) was observed in 5-year young tree of sweet orange cv. Succari. The minimum value of rind thickness (4.142mm) was noted in 15-year old tree of cv. Red blood. On the other hand maximum value of rind thickness was observed in 5-year young tree of cv. Sallustiana. The data regarding total soluble solids (TSS), acidity (TA), TSS/TA, juice content, rind, flavedo thickness, pH and fruit diameter have also been discussed.

Keywords: age, cultivars, fruit, quality, sweet orange (Citrus Sinensis L. Osbeck)

Procedia PDF Downloads 195
1652 Fault Tree Analysis (FTA) of CNC Turning Center

Authors: R. B. Patil, B. S. Kothavale, L. Y. Waghmode

Abstract:

Today, the CNC turning center becomes an important machine tool for manufacturing industry worldwide. However, as the breakdown of a single CNC turning center may result in the production of an entire plant being halted. For this reason, operations and preventive maintenance have to be minimized to ensure availability of the system. Indeed, improving the availability of the CNC turning center as a whole, objectively leads to a substantial reduction in production loss, operating, maintenance and support cost. In this paper, fault tree analysis (FTA) method is used for reliability analysis of CNC turning center. The major faults associated with the system and the causes for the faults are presented graphically. Boolean algebra is used for evaluating fault tree (FT) diagram and for deriving governing reliability model for CNC turning center. Failure data over a period of six years has been collected and used for evaluating the model. Qualitative and quantitative analysis is also carried out to identify critical sub-systems and components of CNC turning center. It is found that, at the end of the warranty period (one year), the reliability of the CNC turning center as a whole is around 0.61628.

Keywords: fault tree analysis (FTA), reliability analysis, risk assessment, hazard analysis

Procedia PDF Downloads 379
1651 Effect of Different Spacings on Growth Yield and Fruit Quality of Peach in the Sub-Tropics of India

Authors: Harminder Singh, Rupinder Kaur

Abstract:

Peach is primarily a temperate fruit, but its low chilling cultivars are grown quite successfully in the sub-tropical climate as well. The area under peach cultivation is picking up rapidly in the sub tropics of northern India due to higher return on a unit area basis, availability of suitable peach cultivar and their production technology. Information on the use of different training systems on peach in the sub tropics is inadequate. In this investigation, conducted at Punjab Agricultural University, Ludhiana (Punjab), India, the trees of the Shan-i-Punjab peach were planted at four different spacings i.e. 6.0x3.0m, 6.0x2.5m, 4.5x3.0m and 4.5x2.5m and were trained to central leader system. The total radiation interception and penetration in the upper and lower canopy parts were higher in 6x3.0m and 6x2.5m planted trees as compared to other spacings. Average radiation interception was maximum in the upper part of the tree canopy, and it decreased significantly with the depth of the canopy in all the spacings. Tree planted at wider spacings produced more vegetative (tree height, tree girth, tree spread and canopy volume) and reproductive growth (flower bud density, number of fruits and fruit yield) per tree but productivity was maximum in the closely planted trees. Fruits harvested from the wider spaced trees were superior in fruit quality (size, weight, colour, TSS and acidity) and matured earlier than those harvested from closed spaced trees.

Keywords: quality, radiation, spacings, yield

Procedia PDF Downloads 156
1650 Ultrasonic Extraction of Phenolics from Leaves of Shallots and Peels of Potatoes for Biofortification of Cheese

Authors: Lila Boulekbache-Makhlouf, Fatiha Brahmi

Abstract:

This study was carried out with the aim of enriching fresh cheese with the food by-products, which are the leaves of shallots and the peels of potatoes. Firstly, the conditions for extracting the total polyphenols using ultrasound are optimized. Then, the contents of total polyphenols PPT , flavonoids and antioxidant activity were evaluated for the extracts obtained by adopting the optimal parameter. On the other hand, we have carried out some physicochemical, microbiological and sensory analyzes of the cheese produced. The maximum total polyphenols value of 70.44 mg GAE gallic acid equivalent / g of dry matter DM of shallot leaves was reached with 40% (v/v) ethanol, an extraction time of 90 min and a temperature of 10 °C. While, the maximum TPP total polyphenols content of potato peels of 45.03 ± 4.16 mg gallic acid equivalent / g of dry matter DM was obtained using an ethanol /water mixture (40%, v/v), a time of 30 min and a temperature of 60 °C and the flavonoid contents were 13.99 and 7.52 QE quercetin equivalent/g dry matter DM, respectively. From the antioxidant tests, we deduced that the potato peels present a higher antioxidant power with the concentration of extracts causing a 50% inhibition IC50s of 125.42 ± 2.78 μg/mL for 2,2-diphényl 1-picrylhydrazyle DPPH, of 87.21 ± 7.72 μg/mL for phosphomolybdate and 200.77 ± 13.38 μg/mL for iron chelation, compared with the results obtained for shallot leaves which were 204.29 ± 0.09, 45.85 ± 3,46 and 1004.10 ± 145.73 μg/mL, respectively. The results of the physicochemical analyzes have shown that the formulated cheese was compliant with standards. Microbiological analyzes show that the hygienic quality of the cheese produced was satisfactory. According to the sensory analysis, the experts liked the cheese enriched with the powder and pieces of the leaves of the shallots.

Keywords: shallots leaves, potato peels, ultrasound extraction, phenolics, cheese

Procedia PDF Downloads 54
1649 Fast Switching Mechanism for Multicasting Failure in OpenFlow Networks

Authors: Alaa Allakany, Koji Okamura

Abstract:

Multicast technology is an efficient and scalable technology for data distribution in order to optimize network resources. However, in the IP network, the responsibility for management of multicast groups is distributed among network routers, which causes some limitations such as delays in processing group events, high bandwidth consumption and redundant tree calculation. Software Defined Networking (SDN) represented by OpenFlow presented as a solution for many problems, in SDN the control plane and data plane are separated by shifting the control and management to a remote centralized controller, and the routers are used as a forwarder only. In this paper we will proposed fast switching mechanism for solving the problem of link failure in multicast tree based on Tabu Search heuristic algorithm and modifying the functions of OpenFlow switch to fasts switch to the pack up sub tree rather than sending to the controller. In this work we will implement multicasting OpenFlow controller, this centralized controller is a core part in our multicasting approach, which is responsible for 1- constructing the multicast tree, 2- handling the multicast group events and multicast state maintenance. And finally modifying OpenFlow switch functions for fasts switch to pack up paths. Forwarders, forward the multicast packet based on multicast routing entries which were generated by the centralized controller. Tabu search will be used as heuristic algorithm for construction near optimum multicast tree and maintain multicast tree to still near optimum in case of join or leave any members from multicast group (group events).

Keywords: multicast tree, software define networks, tabu search, OpenFlow

Procedia PDF Downloads 232
1648 Effect of Chilling Accumulation on Fruit Yield of Olive Trees in Egypt

Authors: Mohamed H. El-Sheikh, Hoda F. Zahran

Abstract:

Olive tree (Olea europaea L.) is considered as a Mediterranean tree which belongs to genus Olea that may comprise about 35 species. In fact, the crop requires mild to cool winters with a chilling accumulation from November to February with average temperatures varying between two groups of accumulated chilling hours (h1) of less than 7.2 °C (C1) and other group (h2) of less than 10 °C (C2) for flower bud differentiation. This work aims at studying the impact of chilling accumulation hours on the fruit yield of olive trees in Borg El Arab City, Alexandria Governorate, Egypt as a case study. Trees were aged around 7 years in 2010 and were exposed to chilling accumulation hours of h1, which was average of 280 hours under C1, and average h2 was around 150 hours under C2 the resulted fruit yield was around 0.5 kg/tree. On the hand, trees were aged around 7 years at 2016 showed that when average of h1 was around 390 hours under C1 and average h2 was around 220 hours under C2 then fruit yield was around 10 kg/tree. Increasing of fruit yield proved chilling accumulation effect on olive trees.

Keywords: chilling accumulation, fruit yield, Olea europaea, olive

Procedia PDF Downloads 264