A Recipe Recommendation System Based on Regional Flavor Similarity Lin-rong GUO, Shi-zhong YUAN *, Xue-hui MAO and Yi-ning GU

Size: px
Start display at page:

Download "A Recipe Recommendation System Based on Regional Flavor Similarity Lin-rong GUO, Shi-zhong YUAN *, Xue-hui MAO and Yi-ning GU"

Transcription

1 2017 2nd International Conference on Communications, Information Management and Network Security (CIMNS 2017) ISBN: A Recipe Recommendation System Based on Regional Flavor Similarity Lin-rong GUO, Shi-zhong YUAN *, Xue-hui MAO and Yi-ning GU School of Computer Engineering and Science, Shanghai University, Shanghai , China *Corresponding author Keywords: Chinese regional cuisines, Flavor preference, Flavor similarity, Recommendation system. Abstract. One of the factors that affect food choice is flavor preferences. Although the flavors of cuisines vary from one region to another, there are flavor similarities among the cuisines from geographically adjacent regions. This paper presents a recipe recommendation system to recommend a set of dishes from the various Chinese regional cuisines for a certain flavor preference in terms of flavor similarity. The flavor similarities among the cuisines are determined using our previously developed algorithms. First, the TF-IDF (Term Frequency-Inverse Document Frequency) algorithm is used to calculate the ingredient preferences of the regional cuisines, on the basis of which, each dish of the regional cuisines is given a score. Then, we use the cosine similarity to measure the flavor similarities among the regional cuisines. Finally, the Tidal-Trust algorithm is employed to choose the dishes with the most similar flavors and recommend them to the user. The results of the questionnaire evaluation for the system show the recommendations from the system are reasonable and acceptable from professional chefs point of view. Introduction In recent years, with the rise of "kitchen economics"[1], a variety of recipes recommendation systems emerge in an endless stream. However, the dietary preferences of users are influenced by many factors, such as heredity, geographical environment, cultural environment, the current health needs, dietary balance and some other factors. From the perspective of current health needs, T Ueta, M Iwakami, T Ito et al. [2] proposed a goal-oriented recipe recommendation system, with which users without any professional nutrition knowledge can get the appropriate recipes by entering natural language, such as "I want to relieve fatigue". Ting Y H, Zhao Q, Chen R C et al.[3][4] recommended a proper recipe based on the recipe ontology according to the user's health conditions and their preferences. From the angle of dietary balance, Yoko MINO, Ichiro Kobayashi[5] combined recipes with the user's schedule according to daily activity of the user. Naoki Shino, Ryosuke Yamanishi et al.[6] put the research point on the menu, they considered that sometimes the ingredients in the recipe could not be deployed or purchased at that time, and they found that other ingredients could be used to replace the missing ingredient. Yajima A, Kobayashi I [7] proposed a method to recommend "easy" cooking recipes by analyzing the content of recipes and considering user's conditions. In addition, Zemeng Feng, Lifang Wu et al.[8] thought that user s acceptance of a recipe is consistent with his/her preference for ingredients in the recipe. Nevertheless, they didn't have much explanation for why people like or dislike certain ingredients. Actually, here, it involves the influence of all the factors mentioned above on people's eating habits influence. As the saying goes, A side water and soil raises a side people, the influence of the geographical environment on people's eating habits is very heavy. However, many of the existing recommendation systems are not considered from a geographical point of view. Based on this situation, we develop a recipe recommendation system based on regional flavor similarity. By this system, users can choose their own love of a regional cuisine (such as Shandong), then find the other regional cuisine (such as northeast dishes), which has a higher flavor similarity with the selected cuisine. To implement this system, we need to calculate the flavor similarity between regions. In a previous paper[9], we have studied the basic idea and algorithm design of flavor similarity computation. Firstly, we use TF-IDF algorithm to get ingredients of regional preference recipes, and calculate scores of all 421

2 recipes in this region. Then, we calculate the similarity between regions by cosine similarity algorithm. Finally, tidal-trust algorithm is used to calculate the scores of other regions recommended to the region. The higher scoring topn recipes are recommended to users. The system based on regional flavor similarity is different from [2][3][5][7][8]. [2][3][5][7][8] consider the user's health status, daily activities, personal preferences respectively. They often require direct user participation, but in fact, for various reasons, users sometimes fail to provide accurate measurement indicators, which can often lead to inaccurate results. Therefore, we provide users with recipes to meet their needs and their regional characteristics of the diet by regional flavor similarity. Architectural Design and Functionality Our system has two main functions: (1) Query of high frequency ingredients in recipes. Users can find ingredients used frequently in a region and understand the region's taste preferences. (2) Recommendation between regional flavor similar cuisines. Users can obtain recipes from other regions, which has a higher degree of similarity with the selected region, according to the ranking to satisfy his/her need. Architectural Design Our system is divided into 4 layers, as shown in Figure 1. (1) The first layer is data collection layer. Since our system is based on Chinese mainland provinces and cities, we collect relevant data from the Chinese mainland's largest food web site Meishi Jie. (2) The second layer is data processing layer. After collecting the data, we use algorithms mentioned above to calculate regional flavor similarity. (3) The third layer is data storage layer. We store the data of regional flavor similarity calculated by algorithms in database. (4) The fourth layer is portal layer. Our system provides two main functions: high frequency ingredients inquiry of various cuisines; recommendation of similar cuisines between different regions. Structural Components and Functionality Figure 1. Architectural design. Data Collection. The data of our system comes from Meishi jie, which is one of the largest recipe information platforms in Chinese Mainland. We have obtained 20 Chinese cuisines on "Meishi Jie" by data crawling, including 8498 recipes and 2911 ingredients. Data Processing. After data collection, we divide the data into 2 data sets, one is a set of 8498 recipes involving 20 regions, and the other is a set of component containing 2911 ingredients. a) Ingredient preferences and each recipe s score of the regional cuisines. In order to calculate the score of recipes, firstly we calculate the score of various ingredients in different regions by TF-IDF algorithm[6]. 422

3 I TF IDF s, t s, t s, t If s is token as Shandong cuisine and t is token as potatoes, we can calculate the degree of Shandong people's preference for potatoes by formula (1). The weight of Shandong people's preference for partial ingredient is shown in Table 1. There is a recipe called "potato stewed egg" in Shangdong cuisine, including egg, salt, garlic, onions, potatoes, black pepper. We added up the scores of these ingredients by formula (2), which was the final score of this recipe. Score( R ) I (2) s t R s, t b) Regional flavor similarity calculation. For example, the Shandong people's evaluation of the 2911 ingredients is as follows: Is, k [ Is,1, Is,2,..., Is,2911], and the Jiangsu people s evaluation of the 2911 ingredients is as follows: I j, k [ I j,1, I j,2,..., I j,2911]. We can calculate the taste similarity between Shandong and Jiangsu people by cosine similarity algorithm and formula (3), which is the flavor similarity between Shandong cuisine and Jiangsu cuisine. The flavor similarity between Shangdong cuisine and other cuisines is shown in Figure 2 below. cos ine( I, I ) s j 2911 k 1 I s, k j, k ( Is, k ) ( I j, k ) k 1 k 1 I (3) c) Similar cuisine recommended. For instance, we recommend recipes from Shandong cuisine to Jiangsu cuisine by tidal-trust algorithm and formula (4). Score( R ) cos ine( I, I ) R (4) s, j s j s In the same way, we can also recommend recipes from other cuisines to Jiangsu cuisine and sort all recipes, then choose the higher n recipes. These recipes combine the local characteristics and satisfy the tastes of the people in Jiangsu. (1) Figure 2. The flavor similarity between Shangdong cuisine and other cuisines. Data Storage. After handling related data sets through above algorithms, we design two tables: 423

4 Table 1. Ingredient preference table. Table 2. Ingredient Search Data Table. Table 3. Recipe Similarity Score Data Table. a) Ingredient search data table(table 2). This table is used to keep the basic information about the ingredients. To avoid confusion, "gid" field is requested to be unique in the table. And other fields are not null values. b) Recipe similarity score data table (Table 3). This table is used to store the scores, ingredients, cooking method and other relevant information of recipes in other areas similar to the chosen recipes. Similarly, "rid" field is requested to be unique in the table. And other fields are not null values. Portal. The system has two main functions as follows: high frequency ingredient inquiry of various cuisines and recommendation of similar cuisines. a) High frequency composition inquiry of various cuisines For a particular cuisine, we can use a "high frequency ingredients" to search for a number of recipes that are frequently used in the cuisine, and also to learn more about the taste preferences of people in this area. For example, the high frequency ingredients of Shandong cuisine are tofu, beef, cabbage etc. Here, we represent it by histogram (Figure 3). Through the histogram, we can see that tofu is used most frequently in Shandong cuisine, its frequency is 30%. 424

5 Figure 3. High frequency ingredient. b) Recommendation of similar cuisines between different regions Other regional cuisines are eventually recommended to the cuisine we selected after scoring and screening. For example, if you want to open a restaurant in Shandong, according to the score, you can choose fresh milk grill, Susan fish, pouch fish, etc. of Shanxi cuisine, Braised tripe with red beans of Hunan cuisine, lotus set crabs of Hubei cuisine and so on (Figure 4). You can take them as the introduction of new recipes to attract customers. Figure 4. Similar recipes recommendation. Conclusions and Future Work From the perspective of regional dietary preferences, our system implements recipe recommendation based on regional flavor similarity. Through this system, users can specify a cuisine according to their own preferences, and find other cuisines similar to the cuisine they have specified to satisfy their taste bud requirements. And the restaurant operators can realize "win-win" between the restaurant management and the customers' needs by our system. In order to evaluate whether the system is reasonable and acceptable, we have invited professional chefs to try and grade the system. Finally, the average score of Shandong was 7.98, the average score of Jiangsu was 7.7 (the highest score was 10 points). This shows that this system is convenient and practical in daily life, and it has good user experience and high anti loudness. Thus, it has a certain value in use. However, there are still some areas for improvement in the system. For example, the algorithms we studied before did not study the quantity of each ingredient in the recipes. And the function of the page needs to be optimized. It is better to add search function to the sub pages of each cuisine, and search for other recipes with higher similarity to a specific ingredient in the cuisine. But because the data and computation of this index are too complex, function optimization needs further study. 425

6 References [1] Li Z, Hu J, Shen J, et al. A Scalable Recipe Recommendation System for Mobile Application[C]// International Conference on Information Science and Control Engineering. IEEE, 2016: [2] Ueta T, Iwakami M, Ito T. Implementation of a Goal-Oriented Recipe Recommendation System Providing Nutrition Information[C]// Conference on Technologies and Applications of Artificial Intelligence. IEEE Computer Society, 2011: [3] Ting Y H, Zhao Q, Chen R C. Dietary recommendation based on recipe ontology[c]// IEEE, International Conference on Awareness Science and Technology. IEEE, 2014:1-6. [4] Lo Y W, Zhao Q, Ting Y H, et al. Automatic generation and recommendation of recipes based on outlier analysis[c]// IEEE, International Conference on Awareness Science and Technology. IEEE, 2015: [5] Mino Y, Kobayashi I. Recipe recommendation for a diet considering a user's schedule and the balance of nourishment[c]// IEEE International Conference on Intelligent Computing and Intelligent Systems. IEEE, 2009: [6] Shino N, Yamanishi R, Fukumoto J. Recommendation System for Alternative-Ingredients Based on Co-occurrence Relation on Recipe Database and the Ingredient Category[C]// IIAI International Congress on Advanced Applied Informatics. IEEE, 2016: [7] Yajima A, Kobayashi I. "Easy" Cooking Recipe Recommendation Considering User's Conditions[C]// IEEE/WIC/ACM International Joint Conferences on Web Intelligence and Intelligent Agent Technologies, WI-IAT. IEEE, 2009: [8] Feng Z, Wu L, Jing Y, et al. A recommendation scheme by user preference to components[c]// IET International Radar Conference. 2015: [9] Mao X, Yuan S, Xu W, et al. Recipe recommendation considering the flavor of regional cuisines[c]// International Conference on Progress in Informatics and Computing. IEEE, 2017:

The Market Potential for Exporting Bottled Wine to Mainland China (PRC)

The Market Potential for Exporting Bottled Wine to Mainland China (PRC) The Market Potential for Exporting Bottled Wine to Mainland China (PRC) The Machine Learning Element Data Reimagined SCOPE OF THE ANALYSIS This analysis was undertaken on behalf of a California company

More information

Relation between Grape Wine Quality and Related Physicochemical Indexes

Relation between Grape Wine Quality and Related Physicochemical Indexes Research Journal of Applied Sciences, Engineering and Technology 5(4): 557-5577, 013 ISSN: 040-7459; e-issn: 040-7467 Maxwell Scientific Organization, 013 Submitted: October 1, 01 Accepted: December 03,

More information

Predicting Wine Quality

Predicting Wine Quality March 8, 2016 Ilker Karakasoglu Predicting Wine Quality Problem description: You have been retained as a statistical consultant for a wine co-operative, and have been asked to analyze these data. Each

More information

Yelp Chanllenge. Tianshu Fan Xinhang Shao University of Washington. June 7, 2013

Yelp Chanllenge. Tianshu Fan Xinhang Shao University of Washington. June 7, 2013 Yelp Chanllenge Tianshu Fan Xinhang Shao University of Washington June 7, 2013 1 Introduction In this project, we took the Yelp challenge and generated some interesting results about restaurants. Yelp

More information

Fairfield Public Schools Family Consumer Sciences Curriculum Food Service 30

Fairfield Public Schools Family Consumer Sciences Curriculum Food Service 30 Fairfield Public Schools Family Consumer Sciences Curriculum Food Service 30 Food Service 30 BOE Approved 05/09/2017 1 Food Service 30 Food Service 30 Students will continue to participate in the school

More information

An English-Chinese Medical Dictionary = Ying Han Yi Xue Ci Dian [Chinese Edition] READ ONLINE

An English-Chinese Medical Dictionary = Ying Han Yi Xue Ci Dian [Chinese Edition] READ ONLINE An English-Chinese Medical Dictionary = Ying Han Yi Xue Ci Dian [Chinese Edition] READ ONLINE If searching for the book An English-Chinese medical dictionary = Ying Han yi xue ci dian [Chinese Edition]

More information

An English-Chinese Medical Dictionary = Ying Han Yi Xue Ci Dian [Chinese Edition]

An English-Chinese Medical Dictionary = Ying Han Yi Xue Ci Dian [Chinese Edition] An English-Chinese Medical Dictionary = Ying Han Yi Xue Ci Dian [Chinese Edition] Ying Han yi xue ci dian = English- Chinese - Ying Han yi xue ci dian = English-Chinese medical dictionary. [Ying Han yi

More information

MARK SCHEME for the May/June 2006 question paper 0648 FOOD AND NUTRITION

MARK SCHEME for the May/June 2006 question paper 0648 FOOD AND NUTRITION UNIVERSITY OF CAMBRIDGE INTERNATIONAL EXAMINATIONS International General Certificate of Secondary Education www.xtremepapers.com MARK SCHEME for the May/June 2006 question paper 0648 FOOD AND NUTRITION

More information

Chinese Food Culture Summer Program. Jiangnan University, Wuxi, China

Chinese Food Culture Summer Program. Jiangnan University, Wuxi, China Chinese Food Culture Summer Program May 21 st June 11 th, 2016 Jiangnan University, Wuxi, China Schedule Instructor: local teachers from Jiangnan University Week 1 Day Time Lectures & Activities 5/21 Sat

More information

Shaping the Future: Production and Market Challenges

Shaping the Future: Production and Market Challenges Call for Papers Dear Sir/Madam At the invitation of the Ministry of Stockbreeding, Agriculture, and Fisheries of the Oriental Republic of Uruguay, the 41th World Congress of Vine and Wine and the 16 th

More information

Variations in the Test of Separator Cream.

Variations in the Test of Separator Cream. Variations in the Test of Separator Cream. One of the greatest problems that has presented itself to the creamery patrons and managers of the West-Central states for the past few years is that of the cause

More information

Commercial Representation in China Service description

Commercial Representation in China Service description Commercial Representation in China Service description Selling wine in China Enter the largest market in the world The Chinese market is one of the largest in the world in import of wine, and continues

More information

Instruction (Manual) Document

Instruction (Manual) Document Instruction (Manual) Document This part should be filled by author before your submission. 1. Information about Author Your Surname Your First Name Your Country Your Email Address Your ID on our website

More information

What Makes a Cuisine Unique?

What Makes a Cuisine Unique? What Makes a Cuisine Unique? Sunaya Shivakumar sshivak2@illinois.edu ABSTRACT There are many different national and cultural cuisines from around the world, but what makes each of them unique? We try to

More information

Structures of Life. Investigation 1: Origin of Seeds. Big Question: 3 rd Science Notebook. Name:

Structures of Life. Investigation 1: Origin of Seeds. Big Question: 3 rd Science Notebook. Name: 3 rd Science Notebook Structures of Life Investigation 1: Origin of Seeds Name: Big Question: What are the properties of seeds and how does water affect them? 1 Alignment with New York State Science Standards

More information

MARKETING WINE: DEVELOPING NEW MARKETS IN ASIA

MARKETING WINE: DEVELOPING NEW MARKETS IN ASIA MARKETING WINE: DEVELOPING NEW MARKETS IN ASIA MARKETING WINE: DEVELOPING NEW MARKETS IN ASIA GEOGRAPHY OF MARKETS IN ASIA INDIA CHINA HONG KONG MACAO THAILAND VIETNAM SINGAPORE MALAYSIA SOUTH KOREA TAIWAN

More information

STUDY AND IMPROVEMENT FOR SLICE SMOOTHNESS IN SLICING MACHINE OF LOTUS ROOT

STUDY AND IMPROVEMENT FOR SLICE SMOOTHNESS IN SLICING MACHINE OF LOTUS ROOT STUDY AND IMPROVEMENT FOR SLICE SMOOTHNESS IN SLICING MACHINE OF LOTUS ROOT Deyong Yang 1,*, Jianping Hu 1,Enzhu Wei 1, Hengqun Lei 2, Xiangci Kong 2 1 Key Laboratory of Modern Agricultural Equipment and

More information

Bishop Druitt College Food Technology Year 10 Semester 2, 2018

Bishop Druitt College Food Technology Year 10 Semester 2, 2018 Bishop Druitt College Food Technology Year 10 Semester 2, 2018 Assessment Task No: 2 Date Due WRITTEN: Various dates Term 3 STANDARD RECIPE CARD Tuesday 28 th August Week 6 WORKFLOW Tuesday 11 th September

More information

RESULTS OF THE MARKETING SURVEY ON DRINKING BEER

RESULTS OF THE MARKETING SURVEY ON DRINKING BEER Uri Dahahn Business and Economic Consultants RESULTS OF THE MARKETING SURVEY ON DRINKING BEER Uri Dahan Business and Economic Consultants Smith - Consulting & Reserch ltd Tel. 972-77-7032332, Fax. 972-2-6790162,

More information

China: The Untapped Freighter Market

China: The Untapped Freighter Market China: The Untapped Freighter Market A China USA perspective Marco Bloemen, YDL Management Consultants E: marco@ydl.nl T:+31-3465-64244 Scope of this presentation Macro-economic figures China - USA Air

More information

Semantic Web. Ontology Engineering. Gerd Gröner, Matthias Thimm. Institute for Web Science and Technologies (WeST) University of Koblenz-Landau

Semantic Web. Ontology Engineering. Gerd Gröner, Matthias Thimm. Institute for Web Science and Technologies (WeST) University of Koblenz-Landau Semantic Web Ontology Engineering Gerd Gröner, Matthias Thimm {groener,thimm}@uni-koblenz.de Institute for Web Science and Technologies (WeST) University of Koblenz-Landau July 17, 2013 Gerd Gröner, Matthias

More information

GrillCam: A Real-time Eating Action Recognition System

GrillCam: A Real-time Eating Action Recognition System GrillCam: A Real-time Eating Action Recognition System Koichi Okamoto and Keiji Yanai The University of Electro-Communications, Tokyo 1-5-1 Chofu, Tokyo 182-8585, JAPAN {okamoto-k@mm.inf.uec.ac.jp,yanai@cs.uec.ac.jp}

More information

STUDY REGARDING THE RATIONALE OF COFFEE CONSUMPTION ACCORDING TO GENDER AND AGE GROUPS

STUDY REGARDING THE RATIONALE OF COFFEE CONSUMPTION ACCORDING TO GENDER AND AGE GROUPS STUDY REGARDING THE RATIONALE OF COFFEE CONSUMPTION ACCORDING TO GENDER AND AGE GROUPS CRISTINA SANDU * University of Bucharest - Faculty of Psychology and Educational Sciences, Romania Abstract This research

More information

Vegetarian Culinary Arts Courses 2018/2019

Vegetarian Culinary Arts Courses 2018/2019 Vegetarian Culinary Arts Courses 2018/2019 VGCA 101. Professional Cooking: Vegetarian Main Dishes and Entrees I VGCA 102. Introduction to Culinary Fundamentals VGCA 109. Professional Cooking: Soups, Sandwiches

More information

MBA 503 Final Project Guidelines and Rubric

MBA 503 Final Project Guidelines and Rubric MBA 503 Final Project Guidelines and Rubric Overview There are two summative assessments for this course. For your first assessment, you will be objectively assessed by your completion of a series of MyAccountingLab

More information

How to Implement Summer Food Standards of Excellence in Your Community

How to Implement Summer Food Standards of Excellence in Your Community How to Implement Summer Food Standards of Excellence in Your Community As an anti-hunger advocate, you understand the clear link between the food served at summer food sites and participation rates. Simply

More information

TYPICAL MOUNTAIN IMAGE OF TURKISH STUDENTS BASED ON LANDSCAPE MONTAGE TECHNIQUE: THROUGH COMPARISON WITH JAPANESE STUDENTS

TYPICAL MOUNTAIN IMAGE OF TURKISH STUDENTS BASED ON LANDSCAPE MONTAGE TECHNIQUE: THROUGH COMPARISON WITH JAPANESE STUDENTS 208 Archi-Cultural Translations through the Silk Road 2 nd International Conference, Mukogawa Women s Univ., Nishinomiya, Japan, July 14-16, 2012 Proceedings TYPICAL MOUNTAIN IMAGE OF TURKISH STUDENTS

More information

The Roles of Social Media and Expert Reviews in the Market for High-End Goods: An Example Using Bordeaux and California Wines

The Roles of Social Media and Expert Reviews in the Market for High-End Goods: An Example Using Bordeaux and California Wines The Roles of Social Media and Expert Reviews in the Market for High-End Goods: An Example Using Bordeaux and California Wines Alex Albright, Stanford/Harvard University Peter Pedroni, Williams College

More information

Multiple Imputation for Missing Data in KLoSA

Multiple Imputation for Missing Data in KLoSA Multiple Imputation for Missing Data in KLoSA Juwon Song Korea University and UCLA Contents 1. Missing Data and Missing Data Mechanisms 2. Imputation 3. Missing Data and Multiple Imputation in Baseline

More information

1. Continuing the development and validation of mobile sensors. 3. Identifying and establishing variable rate management field trials

1. Continuing the development and validation of mobile sensors. 3. Identifying and establishing variable rate management field trials Project Overview The overall goal of this project is to deliver the tools, techniques, and information for spatial data driven variable rate management in commercial vineyards. Identified 2016 Needs: 1.

More information

Efficient Image Search and Identification: The Making of WINE-O.AI

Efficient Image Search and Identification: The Making of WINE-O.AI Efficient Image Search and Identification: The Making of WINE-O.AI Michelle L. Gill, Ph.D. Senior Data Scientist, Metis @modernscientist SciPy 2017 link.mlgill.co/scipy2017 Metis Data Science Training

More information

For Beer with Character

For Beer with Character Control systems For Beer with Character Control systems The intelligent way to brew There are many reasons for using control technology in a brewery. Whether it be to reduce working hours, or to automate

More information

World of Wine: From Grape to Glass

World of Wine: From Grape to Glass World of Wine: From Grape to Glass Course Details No Prerequisites Required Course Dates Start Date: th 18 August 2016 0:00 AM UTC End Date: st 31 December 2018 0:00 AM UTC Time Commitment Between 2 to

More information

Grade: Kindergarten Nutrition Lesson 4: My Favorite Fruits

Grade: Kindergarten Nutrition Lesson 4: My Favorite Fruits Grade: Kindergarten Nutrition Lesson 4: My Favorite Fruits Objectives: Students will identify fruits as part of a healthy diet. Students will sample fruits. Students will select favorite fruits. Students

More information

China Coffee Market Overview The Guidance For Selling Coffee In China Published November Pages PDF Format 420

China Coffee Market Overview The Guidance For Selling Coffee In China Published November Pages PDF Format 420 China Coffee Market Overview 2009 2010 The Guidance For Selling Coffee In China Published November 2009 102 Pages PDF Format 420 Order online at: http://www.drinksector.com/basket.asp?idreport=76&basketaction=auto

More information

Understand and apply basic principles of cutting, learn how to make stocks, jus, sauces, bases and condiments

Understand and apply basic principles of cutting, learn how to make stocks, jus, sauces, bases and condiments Diploma in Culinary Arts DIP101 - Cutting methods, bases, sauces and condiments Understand and apply basic principles of cutting, learn how to make stocks, jus, sauces, bases and condiments As an introduction

More information

Introduction: Form E. Page 1 of 21

Introduction: Form E. Page 1 of 21 Introduction: Tea Board is established under Tea Act 1953 to regulate and monitor Tea Industry being one of the largest industries in India. As India is the largest consumer of Tea in the world, the Board

More information

appetizer choices commodities cuisine culture ethnicity geography ingredients nutrition pyramid religion

appetizer choices commodities cuisine culture ethnicity geography ingredients nutrition pyramid religion Four Goodness Sake: Lesson for Fourth Grade Purpose To help students develop awareness that food preferences and cooking styles may be based upon geographic, ethnic, and/or religious/family beliefs, but

More information

AWRI Refrigeration Demand Calculator

AWRI Refrigeration Demand Calculator AWRI Refrigeration Demand Calculator Resources and expertise are readily available to wine producers to manage efficient refrigeration supply and plant capacity. However, efficient management of winery

More information

Emerging Local Food Systems in the Caribbean and Southern USA July 6, 2014

Emerging Local Food Systems in the Caribbean and Southern USA July 6, 2014 Consumers attitudes toward consumption of two different types of juice beverages based on country of origin (local vs. imported) Presented at Emerging Local Food Systems in the Caribbean and Southern USA

More information

Implement Summer Food Standards of Excellence in Your Community

Implement Summer Food Standards of Excellence in Your Community Implement Summer Food Standards of Excellence in Your Community As an anti-hunger advocate, you understand the clear link between the food served at summer food sites and participation rates. Simply put,

More information

THE EXPORT PERFORMANCE OF INDONESIAN DRIED CASSAVA IN THE WORLD MARKET

THE EXPORT PERFORMANCE OF INDONESIAN DRIED CASSAVA IN THE WORLD MARKET Agricultural Socio-Economics Journal P -ISSN: 1412-1425 Volume 17, Number 3 (2017): 134-139 E-ISSN: 2252-6757 THE EXPORT PERFORMANCE OF INDONESIAN DRIED CASSAVA IN THE WORLD MARKET Nico Adi Putra Hutabarat

More information

World of Wine: From Grape to Glass Syllabus

World of Wine: From Grape to Glass Syllabus World of Wine: From Grape to Glass Syllabus COURSE OVERVIEW Have you always wanted to know more about how grapes are grown and wine is made? Perhaps you like a specific wine, but can t pinpoint the reason

More information

One class classification based authentication of peanut oils by fatty

One class classification based authentication of peanut oils by fatty Electronic Supplementary Material (ESI) for RSC Advances. This journal is The Royal Society of Chemistry 2015 One class classification based authentication of peanut oils by fatty acid profiles Liangxiao

More information

The Ideation Capacity Guided by an Intercultural Experience During the Concept Designing Process, a Case Study

The Ideation Capacity Guided by an Intercultural Experience During the Concept Designing Process, a Case Study The Ideation Capacity Guided by an Intercultural Experience During the Concept Designing Process, a Case Study Dirk van Gogh* Hiroko Yamazaki ** * Chairman of Design Study Group of KASK,-Royal Academy

More information

Thermal Hydraulic Analysis of 49-2 Swimming Pool Reactor with a. Passive Siphon Breaker

Thermal Hydraulic Analysis of 49-2 Swimming Pool Reactor with a. Passive Siphon Breaker Thermal Hydraulic Analysis of 49-2 Swimming Pool Reactor with a Passive Siphon Breaker Zhiting Yue 1, Songtao Ji 1 1) China Institute of Atomic Energy(CIAE), Beijing 102413, China Corresponding author:

More information

KITCHEN LAYOUT & DESIGN

KITCHEN LAYOUT & DESIGN KITCHEN LAYOUT & DESIGN It is important to ensure that the cooking space is designed scientifically to achieve maximum productivity and to attain this objective the kitchen, where the all important food

More information

STA Module 6 The Normal Distribution

STA Module 6 The Normal Distribution STA 2023 Module 6 The Normal Distribution Learning Objectives 1. Explain what it means for a variable to be normally distributed or approximately normally distributed. 2. Explain the meaning of the parameters

More information

STA Module 6 The Normal Distribution. Learning Objectives. Examples of Normal Curves

STA Module 6 The Normal Distribution. Learning Objectives. Examples of Normal Curves STA 2023 Module 6 The Normal Distribution Learning Objectives 1. Explain what it means for a variable to be normally distributed or approximately normally distributed. 2. Explain the meaning of the parameters

More information

CS 322: (Social and Information) Network Analysis Jure Leskovec Stanford University

CS 322: (Social and Information) Network Analysis Jure Leskovec Stanford University CS 322: (Social and Information) Network Analysis Jure Leskovec Stanford University Progress reports are due on Thursday! What do we expect from you? About half of the work should be done Milestone/progress

More information

Stratford School Academy Schemes of Work

Stratford School Academy Schemes of Work Number of weeks 22 Content of the unit Assumed prior learning (tested at the beginning of the unit) 1 lesson a fortnight. This scheme of work has been developed to enable pupils to learn where food comes

More information

Differentiation in integrated health care policy approach an empirical analysis based on regional health life expectancy in China

Differentiation in integrated health care policy approach an empirical analysis based on regional health life expectancy in China Differentiation in integrated health care policy approach an empirical analysis based on regional health life expectancy in China Mingxu Yang, Bei Lu 4 th International Conference of Long Term Care Directors

More information

Song Shi Xue Dao Lun (Zhongguo Gu Dai Wen Xue) (Mandarin Chinese Edition) By Jie Cheng READ ONLINE

Song Shi Xue Dao Lun (Zhongguo Gu Dai Wen Xue) (Mandarin Chinese Edition) By Jie Cheng READ ONLINE Song Shi Xue Dao Lun (Zhongguo Gu Dai Wen Xue) (Mandarin Chinese Edition) By Jie Cheng READ ONLINE If looking for the ebook Song shi xue dao lun (Zhongguo gu dai wen xue) (Mandarin Chinese Edition) by

More information

MEAT WEBQUEST Foods and Nutrition

MEAT WEBQUEST Foods and Nutrition MEAT WEBQUEST Foods and Nutrition Overview When a person cooks for themselves, or for family, and/or friends, they want to serve a meat dish that is appealing, very tasty, as well as nutritious. They do

More information

Atis (Annona Squamosa) Tea

Atis (Annona Squamosa) Tea Vol. 1 January 2012 International Peer Reviewed Journal IAMURE: International Journal of Mathematics, International Engineering Peer Reviewed & Technology Journal Atis (Annona Squamosa) Tea PAULETTE MARCIA

More information

Barista at a Glance BASIS International Ltd.

Barista at a Glance BASIS International Ltd. 2007 BASIS International Ltd. www.basis.com Barista at a Glance 1 A Brewing up GUI Apps With Barista Application Framework By Jon Bradley lmost as fast as the Starbucks barista turns milk, java beans,

More information

International Journal of Business and Commerce Vol. 3, No.8: Apr 2014[01-10] (ISSN: )

International Journal of Business and Commerce Vol. 3, No.8: Apr 2014[01-10] (ISSN: ) The Comparative Influences of Relationship Marketing, National Cultural values, and Consumer values on Consumer Satisfaction between Local and Global Coffee Shop Brands Yi Hsu Corresponding author: Associate

More information

THE DORCHESTER JOB DESCRIPTION. DEPARTMENT: Event Operations F&B JOB GRADE: Supervisory

THE DORCHESTER JOB DESCRIPTION. DEPARTMENT: Event Operations F&B JOB GRADE: Supervisory THE DORCHESTER JOB DESCRIPTION JOB TITLE: Banqueting Sommelier JOB CODE: DATE: October 2013 DEPARTMENT: Event Operations F&B JOB GRADE: Supervisory REPORTS TO: Event Operations Manager / Director of F&B

More information

CHAPTER I BACKGROUND

CHAPTER I BACKGROUND CHAPTER I BACKGROUND 1.1. Problem Definition Indonesia is one of the developing countries that already officially open its economy market into global. This could be seen as a challenge for Indonesian local

More information

Parent Self Serve Mobile

Parent Self Serve Mobile Parent Self Serve Mobile Parent Self Serve Mobile is the mobile web application version of TEAMS Parent Self Serve. Parent Self Serve Mobile honors the same configuration options that are used for the

More information

ICSBOC The 7 th International Cable Supported Bridge Operators' Conference May 18-20, 2010 Zhenjiang, China

ICSBOC The 7 th International Cable Supported Bridge Operators' Conference May 18-20, 2010 Zhenjiang, China ICSBOC 2010 The 7 th International Cable Supported Bridge Operators' Conference May 18-20, 2010 Zhenjiang, China www.icsboc.com The 7 th International Cable Supported Bridge Operators' Conference Call

More information

DEVELOPMENT OF MILK AND CEREAL BASED EXTRUDED PRODUCTS

DEVELOPMENT OF MILK AND CEREAL BASED EXTRUDED PRODUCTS International Journal of Science, Environment and Technology, Vol. 3, No 5, 2014, 1797 1802 ISSN 2278-3687 (O) DEVELOPMENT OF MILK AND CEREAL BASED EXTRUDED PRODUCTS Thejaswini, M. L and H.G. Ramachandra

More information

Structural optimal design of grape rain shed

Structural optimal design of grape rain shed Available online at www.sciencedirect.com Procedia Engineering 31 (2012) 751 755 International Conference on Advances in Computational Modeling and Simulation Structural optimal design of grape rain shed

More information

Cooking Skills Workshops Introduction

Cooking Skills Workshops Introduction Cooking Skills Workshops Introduction A campaign to increase access to, and consumption of, fresh, canned, and frozen vegetables and fruit for Nova Scotians and their families. Introduction Welcome to

More information

SORTING SOLUTIONS. DESIGN CHALLENGE Design a multitiered chute that can sort different sizes and shapes of pasta into separate containers.

SORTING SOLUTIONS. DESIGN CHALLENGE Design a multitiered chute that can sort different sizes and shapes of pasta into separate containers. SORTING SOLUTIONS Grades 3 5, 6 8, 9 12 30 60 minutes DESIGN CHALLENGE Design a multitiered chute that can sort different sizes and shapes of pasta into separate containers. MATERIALS Supplies and Equipment

More information

A d v a n c e d B a k i n g a n d P a s t r i e s ( 1 2 D )

A d v a n c e d B a k i n g a n d P a s t r i e s ( 1 2 D ) 8 9 9 8 A d v a n c e d B a k i n g a n d P a s t r i e s ( 1 2 D ) 40S/40E/40M A Baking and Pastry Arts Course 8 9 9 8 : A d v a n c e d B a k i n g a n d P a s t r i e s ( 1 2 D ) 4 0 S / 4 0 E / 4

More information

Dietary Diversity in Urban and Rural China: An Endogenous Variety Approach

Dietary Diversity in Urban and Rural China: An Endogenous Variety Approach Dietary Diversity in Urban and Rural China: An Endogenous Variety Approach Jing Liu September 6, 2011 Road Map What is endogenous variety? Why is it? A structural framework illustrating this idea An application

More information

Supporting Information for. Classification and adulteration detection of vegetable oils based. on fatty acid profiles

Supporting Information for. Classification and adulteration detection of vegetable oils based. on fatty acid profiles Supporting Information for Classification and adulteration detection of vegetable oils based on fatty acid profiles Liangxiao Zhang 1,4,5,,*, Peiwu Li 1,3,4,5,,*, Xiaoman Sun 1,5, Xuefang Wang 1,5, Baocheng

More information

Process standardization of low-calories and low-sugar kalam

Process standardization of low-calories and low-sugar kalam 2018; 7(3): 142-147 ISSN (E): 2277-7695 ISSN (P): 2349-8242 NAAS Rating: 5.03 TPI 2018; 7(3): 142-147 2018 TPI www.thepharmajournal.com Received: 22-01-2018 Accepted: 23-02-2018 Santosh P Shinde Latur,

More information

Mix It Up World of Cocktails

Mix It Up World of Cocktails Mix It Up World of Cocktails The User Application is designed to satisfy the needs of wide variety of users, all of which have one thing in common likeness of cocktails. Users who want to get familiar

More information

A Framework for Processes Submission and Monitoring from Mobile Devices to Grid Configurations Utilizing Resource Matching

A Framework for Processes Submission and Monitoring from Mobile Devices to Grid Configurations Utilizing Resource Matching (UFSC) A Framework for Processes Submission and Monitoring from Mobile Devices to Grid Configurations Utilizing Resource Matching Alexandre Parra Carneiro Silva Vinicius da Cunha Martins Borges Mario Antonio

More information

Front- and Back-of-the-House. Food and Beverage Industry

Front- and Back-of-the-House. Food and Beverage Industry Front- and Back-of-the-House Food and Beverage Industry Front- and Back-of-the-House Front-of-the-House: area you can see, direct contact with customers, work closely with BOH employees Back-of-the-House:

More information

Course Assessment Plan

Course Assessment Plan Course Plan The American Culinary Federation Educational Foundation, our accrediting body requires that all competencies that correspond to these student learning outcomes be assessed either formatively

More information

Scientific Research and Experimental Development (SR&ED) Tax Credit

Scientific Research and Experimental Development (SR&ED) Tax Credit Scientific Research and Experimental Development (SR&ED) Tax Credit David Spicer, LLB, CA - BDO Dunwoody LLP Melanie Thomson, BSc, Dip.AIT - BDO Dunwoody LLP BC Wine Grape Council 10 th Annual Enology

More information

Activity 10. Coffee Break. Introduction. Equipment Required. Collecting the Data

Activity 10. Coffee Break. Introduction. Equipment Required. Collecting the Data . Activity 10 Coffee Break Economists often use math to analyze growth trends for a company. Based on past performance, a mathematical equation or formula can sometimes be developed to help make predictions

More information

Avocado sugars key to postharvest shelf life?

Avocado sugars key to postharvest shelf life? Proceedings VII World Avocado Congress 11 (Actas VII Congreso Mundial del Aguacate 11). Cairns, Australia. 5 9 September 11 Avocado sugars key to postharvest shelf life? I. Bertling and S. Z. Tesfay Horticultural

More information

The Monthly Measuring Cup

The Monthly Measuring Cup The Monthly Measuring Cup The Monthly Measuring Cup What American Families Are Eating & Cooking February 2008 Trend Report August 2008 Trend Report The Monthly Measuring Cup from Allrecipes.com What American

More information

The Development of the Pan-Pearl River Delta Region and the Interaction Between the Region and Taiwan

The Development of the Pan-Pearl River Delta Region and the Interaction Between the Region and Taiwan The Development of the Pan-Pearl River Delta Region and the Interaction Between the Region and Taiwan LIN, Yuh Jiun Associate Research Fellow, Mainland China Division, CIER This paper is divided into five

More information

AVOCADO GENETICS AND BREEDING PRESENT AND FUTURE

AVOCADO GENETICS AND BREEDING PRESENT AND FUTURE AVOCADO GENETICS AND BREEDING PRESENT AND FUTURE U. Lavi, D. Sa'ada,, I. Regev and E. Lahav ARO- Volcani Center P. O. B. 6, Bet - Dagan 50250, Israel Presented at World Avocado Congress V Malaga, Spain

More information

China s Export of Key Products of Pharmaceutical Raw Materials

China s Export of Key Products of Pharmaceutical Raw Materials China s Export of Key Products of Pharmaceutical Raw Materials During the period of the 62nd API China& INTERPHEX CHINA, China Pharmaceutical Industry Association released its annual Report on Analysis

More information

Effective and efficient ways to measure. impurities in flour used in bread making

Effective and efficient ways to measure. impurities in flour used in bread making Effective and efficient ways to measure impurities in flour used in bread making Aytun Erdentug Ladies and Gentlemen, Today, I would like to introduce a new concept for measuring the quality of flour.

More information

-SQA- SCOTTISH QUALIFICATIONS AUTHORITY NATIONAL CERTIFICATE MODULE: UNIT SPECIFICATION GENERAL INFORMATION. -Module Number Session

-SQA- SCOTTISH QUALIFICATIONS AUTHORITY NATIONAL CERTIFICATE MODULE: UNIT SPECIFICATION GENERAL INFORMATION. -Module Number Session -SQA- SCOTTISH QUALIFICATIONS AUTHORITY NATIONAL CERTIFICATE MODULE: UNIT SPECIFICATION GENERAL INFORMATION -Module Number- 3230006 -Session-1996-97 -Superclass- NE -Title- CAKE DECORATION: ADVANCED ROYAL

More information

FACTORS ASSOCIATED WITH SOFT DRINK CONSUMPTION IN PRESCHOOL-AGED CHILDREN IN SRI LANKA.

FACTORS ASSOCIATED WITH SOFT DRINK CONSUMPTION IN PRESCHOOL-AGED CHILDREN IN SRI LANKA. December 216 IJIRT Volume 3 Issue 7 ISSN: 2349-62 FACTORS ASSOCIATED WITH SOFT DRINK CONSUMPTION IN PRESCHOOL-AGED CHILDREN IN SRI LANKA. G.M.S.W. Silva 1, U.L.R.R.W. Premathilaka 2 1.2 Department of Food

More information

Step 1: Prepare To Use the System

Step 1: Prepare To Use the System Step : Prepare To Use the System PROCESS Step : Set-Up the System MAP Step : Prepare Your Menu Cycle MENU Step : Enter Your Menu Cycle Information MODULE Step 5: Prepare For Production Step 6: Execute

More information

FOD 2180 VEGETABLES and FRUITS

FOD 2180 VEGETABLES and FRUITS Name: Date: Prerequisite: Food Basics (FOD1010) Course Mark Criteria: Theory and Worksheets (20%) Test (30%) Lab Mark/Initials (50%) FOD 2180 VEGETABLES and FRUITS Description: Students learn about the

More information

--> Buy True-PDF --> Auto-delivered in 0~10 minutes. GB/T Translated English of Chinese Standard: GB/T

--> Buy True-PDF --> Auto-delivered in 0~10 minutes. GB/T Translated English of Chinese Standard: GB/T Translated English of Chinese Standard: GB/T21732-2008 www.chinesestandard.net Sales@ChineseStandard.net ICS 67.160.20 NATIONAL STANDARD OF THE PEOPLE S REPUBLIC OF CHINA GB X 51 Milk Beverages 含乳饮料 Issued

More information

Networking. Optimisation. Control. WMF Coffee Machines. Digital Solutions 2017.

Networking. Optimisation. Control. WMF Coffee Machines. Digital Solutions 2017. Networking. Optimisation. Control. WMF Coffee Machines. Digital Solutions 2017. Contents Coffee business meets big data. Optimisation 6 WMF CoffeeConnect. The telemetry solution. 6 Optimisation of processes.

More information

12% Baking Mad. Page views increased by. Ridgeway. FOOD AND DRINK

12% Baking Mad. Page views increased by. Ridgeway.   FOOD AND DRINK www.bakingmad.com Baking Mad FOOD AND DRINK The Baking Mad website is a truly immersive digital experience where bakers can indulge and explore their passion with rich content, including recipes, tips,

More information

Student responsibilities when managing a food allergy in the residential dining locations:

Student responsibilities when managing a food allergy in the residential dining locations: Boston University Dining believes that good nutrition is essential to good health. That s why we are committed to nourishing each and every student by providing them with healthy, nutritious foods every

More information

Publishing in China: an overview

Publishing in China: an overview Publishing in China: an overview Steve O Connor University Librarian The Hong Kong Polytechnic University With research assistance from Christina Chau 1 2 OUTLINE Focus on Chinese publishing historically

More information

Development of Value Added Products From Home-Grown Lychee

Development of Value Added Products From Home-Grown Lychee Development of Value Added Products From Home-Grown Lychee S. Ahammed 1, M. M. H. Talukdar 1, M. S. Kamal 2 1 Department of Food Engineering and Technology Hajee Mohammad Danesh Science and Technology

More information

Unit L: Serving Counter Plans

Unit L: Serving Counter Plans 3 4 5 6 7 8 9 0 3 4 5 6 7 8 9 0 3 4 5 6 7 8 9 30 3 3 33 34 35 36 37 38 39 40 4 4 43 44 45 46 Unit L: Serving Counter Plans Table of Contents Pages Serving Counter Plans.. Objectives... Serving Counters

More information

Biocides IT training Helsinki - 27 September 2017 IUCLID 6

Biocides IT training Helsinki - 27 September 2017 IUCLID 6 Biocides IT training Helsinki - 27 September 2017 IUCLID 6 Biocides IT tools training 2 (18) Creation and update of a Biocidal Product Authorisation dossier and use of the report generator Background information

More information

Yum! Brands Build Dominant China Brands. Sam Su President Yum! China

Yum! Brands Build Dominant China Brands. Sam Su President Yum! China Yum! Brands Build Dominant China Brands Sam Su President Yum! China Yum! Key Strategies Build Dominant CHINA Brands Drive PROFITABLE International Expansion Improve U.S. Brand Positions & Returns Drive

More information

Min Zu Tuan Jie Shi Hua (Mandarin Chinese Edition) READ ONLINE

Min Zu Tuan Jie Shi Hua (Mandarin Chinese Edition) READ ONLINE Min Zu Tuan Jie Shi Hua (Mandarin Chinese Edition) READ ONLINE If you are searching for a ebook Min zu tuan jie shi hua (Mandarin Chinese Edition) in pdf form, then you've come to the correct site. We

More information

110 Review Safety Data Sheets (SDS), explain their requirements in handling hazardous materials, and describe personal protective equipment.

110 Review Safety Data Sheets (SDS), explain their requirements in handling hazardous materials, and describe personal protective equipment. Secondary Task List 100 DEMONSTRATE SAFETY PROCEDURES 101 Wear appropriate apparel in the food preparation area. 102 Demonstrate safe use of cutting tools. 103 Demonstrate procedures for safe lifting and

More information

Acidity and ph Analysis

Acidity and ph Analysis Broad supplier of analytical instruments for the dairy industry. Acidity and Analysis for Milk and Cheese HI 84429 Titratable Acids mini Titrator and Meter Perform a Complete Analysis with One Compact

More information

Plastic Machinery Produced by IAR Team Focus Technology Co., Ltd.

Plastic Machinery Produced by IAR Team Focus Technology Co., Ltd. 2010-2013 Plastic Machinery 2014.02 Produced by IAR Team Focus Technology Co., Ltd. Contents 1. 2010-2012 Chinese Plastic Machinery Export Trend Analysis...3 1.1. 2010-2012 Chinese Plastic Machinery Export

More information

The Five Most Unhealthful School Lunches A Report from the Physicians Committee for Responsible Medicine Spring 2010

The Five Most Unhealthful School Lunches A Report from the Physicians Committee for Responsible Medicine Spring 2010 Introduction The Five Most Unhealthful School Lunches A Report from the Physicians Committee for Responsible Medicine Spring 2010 Because American children consume more than 7 billion school meals every

More information

WACS culinary certification scheme

WACS culinary certification scheme WACS culinary certification scheme About this document This document provides an overview of the requirements that applicants need to meet in order to achieve the WACS Certified Chef de Cuisine professional

More information