Thursday, October 31, 2019

Policing Essay Example | Topics and Well Written Essays - 750 words

Policing - Essay Example According to the law, government officials must have a warrant before trespassing on private real estate, while other private real estate is open to illegal and unauthorized invasion without either a warrant or probable cause (Hubbart, 2005). Lawyers admit that drawing the line between these two types of private real estate has been a major task for the Court. The Forth Amendment states: The right of the people to be secure in their persons, houses, papers, and effects, against unreasonable searches and seizures, shall not be violated, and no Warrants shall issue, but upon probable cause, supported by Oath or affirmation, and particularly describing the place to be searched, and the persons or things to be seized (Hubbart 2005, p. 34). Searching a vehicle without a warrant is permissible if police has a reasonable cause such as drug trafficking or an offence is being committed. In cases where it is "impossible" to obtain a warrant, he continued, the officer may act, but only if probable cause exists. The expansive language requiring a warrant whenever "practicable" and only allowing a search or seizure without a warrant if it is "impossible" to get a warrant forced Courts to search high and low for rules that would live up to that language without making law enforcement all but impossible in the modern world. While the police might have had probable cause to seize the car and its occupants, they should have obtained a search warrant before going further and searching the automobile because the Fourth Amendment protects privacy as well as property. For this reason, the convictions for conspiracy to rob a bank were overturned (Hubbart, 2005). In contrast to automobiles, police should obtain a warrant in order to search a residence. Is assumed that individuals do not have a legitimate expectation of privacy in an open field, he argued, even in an open field surrounded by trees, a fence, and a locked gate. While the Fourth Amendment protects property, this is not the kind of property worthy of protection. That means in most cases the government must have a warrant before invading the sanctity of a home. The house is a private building on private property, not open to the general public and therefore part of the private sphere government may not invade without a warrant. The Fourth Amendment, critics argued, is not tied to the dictates of the ancient English common law (Hubbart, 2005). The amendment was instead intended to serve as the basis for the development of new U.S. law that would be separate and distinct from the ancient English rules. While the majority of justices assumed that most people would consent to having th e inspector in their home or business, those people who did not had a right to be protected from arbitrary actions by government officials. Therefore, they would be allowed to obtain a warrant to search in such an area for violations if they satisfied the judge that they had good reason to make the inspections and were not

Tuesday, October 29, 2019

Performance Enhancement in Manufacturing Facility Essay

Performance Enhancement in Manufacturing Facility - Essay Example While such programs are essentially characterized by the conventional monetary and non-monetary incentives to a greater extent, there are some novel elements such as de-structuring and delayering of certain positions in the hierarchy. Such efforts have produced some positive results though the extent of them is not known. XYZ Company was founded in 1899 by a group of investors includingGiovanni Agnelli. Apart from cars, it is also manufacturingrailroadvehicles,tanksandaircrafts. On 2009, XYZ Company became the world's sixth largest carmaker as well as Italy's largest carmaker. XYZ company-based cars are constructed all around the world, with the largest number produced outside Italy being built inBrazil, where they are best-sellers. It also has factories inArgentinaandPoland. XYZ Company has a long history of licensing its products to other countries regardless of local political or cultural persuasion (Robbins, 2009). Joint ventureoperations are found inItaly,France,Turkey,India,Serbiaand Russia. XYZ is a company that supplies good job opportunities to the employees. However the XYZ Company's operations are increasingly being affected by a lack of uniformity in work standards among its employees in different manufacturing plants. It's basically higher level of absenteeism, low morale, poor motivation and ultimately the work related stress of employees at some of the European factories have been reported. However those work related problems are

Sunday, October 27, 2019

Efficient Prediction System Using Artificial Neural Networks

Efficient Prediction System Using Artificial Neural Networks Jay Patel Abstract- Predicting is making claims about something that will happen, often based on information from past and from current state. Neural networks can be used for prediction with various levels of success. The neural network is trained from the historical data with the hope that it will discover hidden dependencies and that it will be able to use them for predicting into future. It is an approach for making prediction efficient using best features on which prediction is more dependent. Keywords: Artificial Neural Networks; Feature set; Profiles INTRODUCTION Artificial neural networks are computational models inspired by animal central nervous systems (in particular the brain) that are capable of machine learning and pattern recognition. They are usually presented as systems of interconnected neurons that can compute values from inputs by feeding information through the network. For example, in a neural network for handwriting recognition, a set of input neurons may be activated by the pixels of an input image representing a letter or digit. The activations of these neurons are then passed on, weighted and transformed by some function determined by the networks designer, to other neurons, etc., until finally an output neuron is activated that determines which character was read. Mainly three types of ANN models are present single layer feed forward network, Multilayer feed forward network and recurrent network Single layer feed forward network consist of only one input layer and one output layer. Input layer neurons receive the input sig nals and output layer receives output signals. In a feed forward network the output of the network does not affect the operation of the layer that is producing this output. In a feedback network however the output of a layer after the layer being fed back into, can affect the output of the earlier layer. Essentially the data loops through the two layers and back to start again. This is important in control circuits, because it allows the result from a previous calculation to affect the operation of the next calculation. This means that the second calculation can take into account the results of the first calculation, and be controlled by them. Weiners work on cybernetics was based on the idea that feedback loops were a useful tool for control circuits. In fact Weiner coined the termcybernetics based on the Greek kybernutos or metallic steersman of a fictional boat mentioned in the Illiad. Neural models ranged from complex mathematical models with Floating point outputs to simple state machines with a binary output. Depending on w hether the neuron incorporates the learning mechanism or not, neural learning rules can be as simple as adding weight to a synapse each time it fires, and gradually degrading those weights over time, as in the earliest learning rules, Delta rules that accelerate the learning by applying a delta value according to some error function in a back propagation network, to Pre-synaptic/Post-synaptic rules based on biochemistry of the synapse and the firing process. Signals can be calculated in binary, linear, non-linear, and spiking values for the output. Figure 1. ANN Models Multilayer feed forward network consist of input, output and one more addition than single layer feed forward is hidden layer. Computational units of hidden layer are called hidden neurons. In Multilayer Feed Forward Network there must be only one input layer and one output layer and hidden layers can be of any numbers. There is only one difference in recurrent network from feed forward networks is that there is at least one feedback loop. In neurons we can input vectors taken as input and weights are included. With the help of weights and input vectors we can calculate weighted sum and taking weighted sum as parameter we can calculate activation function. There are different activation functions available e.g. thresholding, Signum, Sigmoidal, Hyperbolic Tangent. Phase ordering of optimization techniques In optimizing compilers, it is standard practice to apply the same set of optimization phases in a fixed order on each method of a program. However, several researchers have shown that the best ordering of optimizations varies within a program, i.e., it is function-specific. Thus,we would like a technique that selects the best ordering of optimizations for individual portions of the program, rather than applying the same fixed set of optimizations for the whole program. This paper develops a new method-specific technique that automatically selects the predicted best ordering of optimizations for different methods of a program. They develop this technique within the Jikes RVM Java JIT compiler and automatically determine good phase-orderings of optimizations on a per method basis. Rather than developing a handcrafted technique to achieve this, they make use of an artificial neural network (ANN) to predict the optimization order likely to be most beneficial for a method. Our ANNs were automatically induced using Neuro-Evolution for Augmenting Topologies (NEAT). A trained ANN uses input properties (i.e., features) of each method to represent the current optimized state of the method and given this input, the ANN outputs the optimization predicted to be most beneficial to the method at that state. Each time an optimization is applied, it potentially changes the properties of the method. Therefore, after each optimization is applied, they generate new features of the method to use as input to the ANN. The ANN then predicts the next optimization to apply based on the current optimized state of the method. This technique solves the phase ordering problem by taking advantage of the Markov property of the optimization problem. That is, the current state of the method represents all the information required to choose an optimization to be most beneficial at that decision point. Most compilers apply optimizations based on a fixed order that was determined to be best when the compiler was being developed and tuned. However, programs require a specific ordering of optimizations to obtain the best performance. To demonstrate our point, we use genetic algorithms (GAs), the current state-of-the-art in phase-ordering optimizations, to show that selecting the best ordering of optimizations has the potential to significantly improve the running time of dynamically compiled programs. They used GAs to construct a custom ordering of optimizations for each of the Java Grande and SPEC JVM 98 benchmarks. In this GA approach, we create a population of strings (called chromosomes), where each chromosome corresponds to an optimization sequence. Each position (or gene) in the chromosome corresponds to a specific optimization from Table 2, and each optimization can appear multiple times in a chromosome. For each of the experiments below, we configured our GAs to create 50 chro mosomes (i.e., 50 optimization sequences) per generation and to run for 20 Generations. Technique for Implementing GA We ran two different experiments using GAs. The first experiment consisted of finding the best optimization sequence across our benchmarks. Thus, we evaluated each optimization sequence (i.e., chromosome) by compiling all our benchmarks with each sequence. We recorded their execution times and calculated their speedup by normalizing their running times with the running time observed by compiling the benchmarks at the O3 level. That is, we used average speedup of our benchmarks (normalized to opt level O3) as our fitness function for each chromosome. This result corresponds to the â€Å"Best Overall Sequence† bars in Figure 1. The purpose of this experiment was to discover the optimization ordering that worked best on average for all our benchmarks. The second experiment consisted of finding the best optimization ordering for each benchmark. Here, the fitness function for each chromosome was the speedup of that optimization sequence over O3 for one specific benchmark. This resu lt corresponds to the â€Å"Best Sequence per Benchmark† bars in Figure 1. This represents the performance that we can get by customizing an optimization ordering for each benchmark individually. Results The results of these experiments confirm two hypotheses. First, significant performance improvements can be obtained by finding good optimization orders versus the well-engineered fixed order in Jikes RVM. The best order of optimizations per benchmark gave us up to a 20% speedup (FFT) and on average 8% speedup over optimization level O3. Second, as shown in previous work, each of our benchmarks requires a different optimization sequence to obtain the best performance. One ordering of optimizations for the entire set of programs achieves decent performance speedup compared to O3. Figure 2.Results of experiments using GA However, the â€Å"Best Overall Sequence† degrades the performance of three benchmarks (LUFact, Series, and Crypt) compared to O3. In contrast, searching for the best custom optimization sequence for each benchmark, â€Å"Best Sequence for Benchmark†, allows us to outperform both O3 and the best overall sequence. Motivation Predict the current best optimization: This method would use a model to predict the best single optimization (from a given set of optimizations) that should be applied based on the characteristics of code in its present state. Once an optimization is applied, we would re-evaluate characteristics of the code and again predict the best optimization to apply given this new state of the code. For this we can apply Artificial Neural Network in this method and we will also include profiles for better prediction of optimization sequence for particular program. Automatic Feature Generation Automatic Feature generation system is comprised of the following components: training data generation, feature search and machine learning [5]. The training data generation process extracts the compiler’s intermediate representation of the program plus the optimal values for the heuristic we wish to learn. Once these data have been generated, the feature search component explores features over the compiler’s intermediate representation (IR) and provides the corresponding feature values to the machine learning tool. The machine learning tool computes how good the feature is at predicting the best heuristic value in combination with the other features in the base feature set (which is initially empty). The search component finds the best such feature and, once it can no longer improve upon it, adds that feature to the base feature set and repeats. In this way, we build up a gradually improving set of features. a. Data Generation In a similar way to the existing machine learning techniques (see section II) we must gather a number of examples of inputs to the heuristic and find out what the optimal answer should be for those examples. Each program is compiled in different ways, each with a different heuristic value. We time the execution of the compiled programs to find out which heuristic value is best for each program. We also extract from the compiler the internal data structures which describe the programs. Due to the intrinsic variability of the execution times on the target architecture, we run each compiled program several times to reduce susceptibility to noise. Figure 3. Automatic Feature Generation b. Feature Search The feature search component maintains a population of feature expressions. The expressions come from a family described by a grammar derived automatically from the compiler’s IR. Evaluating a feature on a program generates a single real number; the collection of those numbers over all programs forms a vector of feature values which are later used by the machine learning tool. c. Machine Learning The machine learning tool is the part of the system that provides feedback to the search component about how good a feature is. As mentioned above, the system maintains a list of good base features. It repeatedly searches for the best next feature to add to the base features, iteratively building up the list of good features. The final output of the system will be the latest features list. Our system additionally implements parsimony. Genetic programming can quickly generate very long feature expressions. If two features have the same quality we prefer the shorter one. This selection pressure prevents expressions becoming needlessly long. E. Motivation They have developed a new technique to automatically generate good features for machine learning based optimizing compilation. By automatically deriving a feature grammar from the internal representation of the compiler, we can search a feature space using genetic programming. We have applied this generic technique to automatically learn good features. Code Optimization in Compilers using ANN For ordering of different optimization techniques using ANN we must need to implement that in 4Cast-XL as it is a dynamic compiler. 4Cast-XL constructs an ANN, Integrate the ANN into Jikes RVM’s optimization driver than Evaluate ANN at the task of phase-ordering optimizations. For each method dynamically compiled, repeat the following two steps Generate a feature vector of current method’s state Generate profiles of program Use ANN to predict the best optimization to apply Use ANN to predict the best optimization to apply. Run benchmarks and obtain feedback for 4Cast-XL Record execution time for each benchmark optimized using the ANN. Obtain speedup by normalizing each benchmark’s running time to running time using default optimization heuristic. Figure 4. Code Optimization in compilers using ANN with Profiles Results Research work is aimed for optimizing code using artificial neural networks. In order to make this precise, better profiles generated from given set of features using Milepost GCC compiler with ten different programs. Experimental results demonstrate that profiles of program can be used for optimization of code. Motivation This section gives a detailed overview of how Neuro-evolution machine learning is used to construct a good optimization phase-ordering heuristic for the optimizer. The first section outlines the different activities that take place when training and deploying a phase ordering heuristic. This is followed by sections describing how we use 4cast-XL to construct an ANN, how we extract features from methods, and how best features called Profiles and ANNs allow us to learn a heuristic that determines the order of optimizations to apply. It motivates us to apply this approach for different types of predictions using Artificial Neural Networks. Prediction Using Neural Networks Neural networks can be used for prediction with various levels of success. The advantage of then includes automatic learning of dependencies only from measured data without any need to add further information (such as type of dependency like with the regression). The neural network is trained from the historical data with the hope that it will discover hidden dependencies and that it will be able to use them for predicting into future. In other words, neural network is not represented by an explicitly given model. It is more a black box that is able to learn something. 1

Friday, October 25, 2019

Gay and Lesbian Issues - The Nazi Extermination of Homosexuals Essays

Gay and Lesbian Issues - The Nazi Extermination of Homosexuals The Holocaust is the greatest atrocity ever committed. Millions upon millions of people were ruthlessly tortured and executed during the infamous reign of the Third Reich. The events and conditions surrounding Adolf Hitler’s rise to power have been extensively studied by historians, sociologists, political scientists, and psychologists in the hopes of preventing this state of merciless dictatorship from ever recurring. Due to the immensity of the Nazi campaign against those of the Jewish faith, that ethnic group is most often mentioned in association with the concentration camps and exterminations of the Third Reich. However, there were many other groups who were persecuted alongside the Jews. These groups include political dissidents, criminals, gypsies, the handicapped, Jehovah’s Witnesses, emigrants, and homosexuals (Heger 32). The plight of homosexuals is, perhaps, the most overlooked aspect of the Holocaust. Of all the concentration camps, Sachsenhaussen, just nort h of Berlin, was the most important in the imprisonment and execution of homosexuals. The conditions under which all prisoners here were forced to live were absolutely inhuman, but for homosexuals it was far worse. As the one group that was despised by both the Nazis and those who were imprisoned within concentration camps, gays were persecuted with the greatest enthusiasm, and because of the taboos surrounding their lifestyle, their tragedy was left unnoticed for nearly three decades. The persecution of homosexuals at Sachsenhaussen was a natural outgrowth of the Nazi idea of the â€Å"master race† and was made possible by manipulation of German law. Homosexuals, according to Nazi propaganda, ... ...he testimonies of gay survivors from Sachsenhaussen are to teach us anything, it is that they, like the Jews and every other group exterminated by the Nazis, were victims. Their tragedy has been compounded by society’s rejection of their plight. In order to truly abolish the dangerous views of Nazism, we must first learn to accept all people as human beings, no matter what their national origin, religious beliefs, or sexual orientation may be. This must be our goal if we are to prevent the atrocities of Sachsenhaussen from ever happening again. References Feig, Konnilyn G. Hitler’s Death Camps. New York: Holmes & Meier, 1979. Heger, Heinz. The Men With the Pink Triangle. London: Gay Men’s Press, 1972. Plant, Richard. The Pink Triangle. New York: Henry Holt, 1986. Rector, Frank. The Nazi Extermination of Homosexuals. New York: Stein and Day, 1981.

Thursday, October 24, 2019

Cipla

INTRODUCTION: Cipla Limited is an Indian pharmaceutical company, Founded by nationalist Indian scientist Khwaja Abdul Hamied as The Chemical, Industrial & Pharmaceutical Laboratories . Cipla laid foundations for the Indian pharmaceutical industry way back in 1935 with the vision to make India self-reliant and self-sufficient in healthcare. Legacy of innovation and an entrepreneurial spirit ingrained by the founder, Dr. K. A Hamied and propounded by the present Chairman and Managing Director, Dr. Yusuf Khwaja Hamied .Over the past 77 years, Cipla has emerged as one of the most respected pharmaceutical names not just in India but worldwide. The company? s headquarter is in Mumbai, India. Cipla produces one of the widest range of products and dosage forms in the world today, everything from metered-dose inhalers, pre-filled syringes, trans-dermal spray patches, lyophilized injections, nasal sprays, medical devices, and thermo labile foams. The company Revenue is around 6977million and t urnover is around 1 billion. Cipla? Business model is based on international strategic alliances and focus on pursuing organic growth while reducing capital commitment and regulatory/litigation risks. Cipla makes drugs to treat cardiovascular disease, arthritis, diabetes, weight control, depression and many other health conditions, and its products are distributed in virtually every country of the world. And probably best-known outside its home country for pioneering the manufacture of low-cost anti-AIDS drugs for HIV-positive patients in developing countries.It has played a similarly prominent role in expanding access to drugs to fight influenza, respiratory disease and cancer. Cipla has over 34 state-of-the-art manufacturing units which have been approved by various Ministries of Health and Regulatory Authorities like US FDA, WHO, MCC -South Africa, MHRAUK, TGA-Australia among others. In addition, Cipla? s manufacturing facilities are GCMP compliant in conformity with national and international standards. With over 2000 products in 65 therapeutic areas, Cipla? product portfolio comprises of Active Pharmaceutical Ingredients(APIs), Formulations for Human and Animal Healthcare and OTC products. Cipla has the technological powers of manufacturing products in most dosage forms across therapeutic categories, which offers the company a unique competitive advantage. Cipla has earned a name for maintaining world-class quality across all its products and services. With the dedication of its 20,000 employees, Cipla continues to support, improve and save millions of lives with its high-quality drugs and innovative devices and is focused towards its commitment.Cipla won Chemexcil Award excellence for exports in 1980, wins National award for successful commercialization of publicity funded R&D in 1988. Cipla received the Thomson Reuters India Innovation Award in 2012. VISION: Cipla started with a vision to build a healthy India MISSSION OF THE COMPANY: To make the life o f the patients better. CIPLA RESEARCH & DEVELOPMENT CIPLA? S research capabilities are extensive, from Chemical Synthesis, Delivery Systems and Medical Devices to Process Engineering, Animal Health Products, Neutraceuticals and Biotechnology.Today, across 170 countries, there are millions of patients who get to use a Cipla product to prevent, to cure, or for relief from suffering. In their cure and relief lies th e ultimate purpose of what they do. At Cipla, this has been the driving force behind continuous quest for quality. The company strive not just to meet international specifications, but to exceed, to excel, to meet what they call the Cipla benchmark. In fact, they have set standards for the world to follow and have contributed to more than 125 monographs in the last 15 years – to British,European, US and international pharmacopoeia. Today companies from around the world seek strategic alliances with Cipla for product development, technical support and marketing. In a small way, the company even help countries set up their pharmaceutical infrastructure and train their professionals, contributing to their quest for self-reliance just the way they began healing India, seven decades ago. Equally inspiring has been Cipla? s fight against asthma. They partnered with the medical fraternity to shatter myths, spread awareness and empowered asthma patients to lead a fuller life.The company have the world’s largest range of asthma medication and delivery systems. This relentless commitment to asthma inspired to set up the Chest Research Foundation. It? s one of the few Institutes in the world that? s dedicated to clinical and allied research in the field of Chronic Respiratory Diseases. CHANGES In the past few years, Cipla has changed its strategy in a number of areas — from region, to product to human resources — to prevent a future meltdown from eroding margins. Till now, the names Cipla and Yusuf Hamied have been virtually interchan geable.After all, Hamied was the one who put the generic drug company onto the world map when he provided many health care systems in developing countries with cheaper versions of unaffordable AIDS drugs, making instant icons out of himself and his company . Today, however, Hamied is no longer steering the drug maker on a daily basis and Cipla, meanwhile, is engineering a quiet revolution on its own — attracting outside talent, which it has never done before — and venturing into new territory in order to avoid an existential crisis when the patent cliff expires in a few years.Simply put, the company has begun a quest for a growth trajectory that will generate sustainable profits in the future. â€Å"While we may call it a „transformation,? it is a reasonable and justifiable extension or next step to their current strengths†¦ The change is required to open new avenues of growth for the company, and not lose out on opportunities that come with a shelf life, p articularly the patent cliff in 2012-17, for both small molecules and biologics,† says Aashish Mehra, managing director, Strategic Decision Group.Cipla? s recent reconceptualisation has boosted its stock price from Rs 317 in June to Rs 395 in September. Marketing itself Perhaps the biggest change in the company? s strategy is the jettisoning of its focus on volumeled growth and a shift to an inorganic, profitability-focused one. A key indication of this is the company? s willingness to move on to the front-end in developed markets like the US, where, so far, it has operated primarily through partners for sales and distribution of its products.Recently, Cipla started filing applications aggressively with the US Food and Drugs Administration (USFDA), seeking approval for its own generic products, which it plans to market on its own while assembling a separate sales team there. â€Å"The move is aimed at getting more value for products and technology,† says Cipla Director S Radhakrishnan in an interaction with Business Standard. This is a laudable move, say analysts, in a company that had the potential, but, it was so far unrealised. â€Å"Over the last few years, while all of Cipla? peers have grown primarily on the back of their success in the US market, Cipla had adopted a seemingly faulty strategic decision to limit its exposure to this market,† says a recent report on Cipla by IDFC Securities. â€Å"Given Cipla? s extensive product repertoire, proven R&D capabilities and extensive manufacturing network, we believe it has all the ingredients to succeed in the US market despite its relatively late entry,† it adds. (Cipla's changing landscape) The change in strategy is not limited to just the US and other developed markets.The company is also actively planning joint ventures and even acquisitions to strengthen its position in key markets like Turkey, Morocco, Brazil and Nigeria. However, company insiders suggest that transformation do es not necessarily mean a complete departure from its present approach. â€Å"The spirit of the company cannot change, at least not entirely. We will continue with our basic mantra of low-cost drug making,† says the Cipla official. â€Å"We are also looking at consolidation with partners as one of the options in some key markets,† he adds.This can probably explain what Cipla has recently done in China. In order to streamline investments there, the company has rejigged its business in order to focus more on its core areas. While the drug maker has exited a significant part of its investment in Chinese partner Desano Holdings, it has ploughed part of the funds into specific units that manufacture biosimilars and niche active pharmaceutical ingredients (APIs). The quest for higher margins An imminent revolution can be seen in Cipla? s product portfolio.The company is gradually shifting focus to high-margin products, such as oncology drugs and inhalers from tender-based an ti-retroviral medicines. No surprise as to why it is doing so — its margins are slated to halve themselves from 21. 3 per cent in FY10 to an estimated 11. 9 per cent in FY14. According to Mehra, Cipla may perhaps be best known outside India by its landmark low-priced, anti-HIV products, but, it also needs to address regulated markets with quality products, across segments. â€Å"Cipla should rightly be proud of its image of being a „low-cost drug maker? ut the anti-retrovirals had been quite low-margin for Cipla, and changing the product mix towards more high-value products, such as the inhalers for the regulated markets, would help shore up margins,† says Mehra. Praful Bohra, senior analyst at Nirmal Bang Securities, says two years ago, the contribution from anti-retroviral drugs was 20-25 per cent while today, it has fallen to 15 per cent. According to analysts, the falling margins in anti-retroviral drugs due to tough competition from multinational, as well as domestic companies has triggered the shift towards new avenues.Regional shift The rationalisation can also be viewed through the export contribution from different geographies. According to the IDFC report, contribution of Africa — which is primarily a tender business market — to total exports declined from 42 per cent in the financial year 2010-11 to 40 per cent in 2011-12, with absolute sales remaining flat, year-on-year. In contrast, the share of Europe and Australasia grew from 26 per cent in financial year 2010-11 to 30 per cent in 201112 with sales growing at 32 per cent and 18 per cent, respectively.Cipla also plans to increase its focus on domestic markets, with introduction of its offerings in new therapeutic segments, such as oncology and neuropsychiatry. â€Å"The company is the market leader in key therapeutic areas, such as respiratory care, anti-viral and urological†¦ Cipla plans to focus on growing its market share and sales by increasing penetrat ion in the Indian market, especially in rural areas,† a recent report by Angel Broking said. The company? s distribution network in India consists of a field force of around 7,000 employees. The company? new offerings would also include biosimilars, especially those in the oncology, anti-asthmatic and anti-arthritis categories. â€Å"They already have the pipeline in place (Avastin, Herceptin, Enbrel, among others), and would benefit from having the commercial footprint in regulated markets at the earliest,† points Mehra. Cipla has already invested $165 million in India and China to acquire facilities and build new ones for its foray. The company? s earnings in the first quarter of the financial year 2012-13 have begun to demonstrate the potential of these initiatives.During the financial quarter ended June 2011, the company? s gross margin expanded by 490 bps, year-on-year, to 61. 8 per cent, mainly on account of a better product mix, which had lower proportion of anti -retroviral in formulation exports and higher proportion of domestic formulation sales. â€Å"Strengthening of the balance sheet has been a key focus area for Cipla in the last few years and the benefits of concentrated efforts are clearly visible,† says Nitin Agarwal of IDFC. People Possibly the biggest catalyst of the change that Cipla is going through is because of a radical new strategy regarding management hires. Cipla has traditionally not been aggressive about hiring senior management personnel from outside the organisation. However, there seems to be a clear change in strategy on this front, reflective of the transformation underway into a more aggressive unit,† says Agarwal in the report. According to Bohra, this also reflects increasing professionalism in the company, which is also essential to surviving cut-throat competition in the industry. Over the past year, Cipla has hired people in the key functions of finance, international business and strategy, from competitors such as Lupin and Dr Reddy? . In July, Cipla announced the hiring of Frank Peters (ex-Teva and GSK) to head its respiratory business and the European Union region. Also, two Hamied scions — Kamil (31) and Samina (36), children of Yusuf Hamied? s brother M K Hamied — are on Cipla? s senior management team since 2010 and 2011, respectively. Analysts see this as an attempt to address key investor concerns on succession planning. These are key moves that were long overdue for a company that is yet to harness its full potential.

Wednesday, October 23, 2019

Counselling Skills

The purpose of this essay is describing the counselling practices that I did in my class room. I n this reflective essay, I will describe the style of counselling that I used so far , the actions I had taken, the area of skills where I need further improvement, my perception about the feedbacks from other students and faculty supervisor . By discussing this particular experience in detail, I can start to aware of the specific skills and technique which counsellor may use in different situation of the client in order to boost the client to take positive action by her or himself . As part of community welfare curriculum, I need to role paly 20 minutes of counselling session with my colleague. Before the final role play I had done few days of practice sessions with my colleague. I was getting feedback from rest of the classmates and teacher as they would be the observers of the counselling sessions. I found the practice sessions challenging because my friend was acting as client. Even though I was playing the role of counsellor, my mind was struggling to consider my friend as client. Before embarking upon my reflection regarding counselling, I would like to contribute a brief description of about the client. My client was 52years of old lady who was looking after her 72 years of old mother. She (mother of the client) was suffering dementia. The client hast two kids who are studying. As she was working seven days, she wasn’t getting time to ventilate her feeling to anyone. Actually she came to me with complaints of stress. She was afraid to tell her mother she was contemplating nursing home care. Basically I was really focused on my micro skills rather than therapeutic skills† as they plays pivotal role in counselling skills more â€Å"I belief. The micro skills such as empathy, questioning, minimal encourages, paraphrasing , summary, eye contact, body language, voice, structure, observation, listening and reflection of feeling could germinate the pathways to motivate the clients to ventilate his or her deeper feelings and more over could help the counsellor to build up purposeful relationship with client. However I tried to involve bit of cognitive behaviour therapy specifically downward arrow and questioning technique. As a counsellor my intention was to challenge her (client) about her irrational belief’ the mother would be upset when I tell about the need of nursing care ’. I tried to confront the client with the reality of situation by supporting the client to think of probable consequences such as â€Å"what‘s the worst that could happen if tell your mum about nursing home rehabilitation? † And a part from that used technique of universalization by describing similar kind of experiences but it was not enough for my client get enough courage to face her issue. I tried the empty chair concept which I was extracted from gestalt therapy (Patterson, 1986). The empty chair was failure, even though it nurtured the idea of asking the client â€Å"how would to response to a friend of having the same scenario†? That was the turning point as it brought insight to the client that I was anticipating her mother’s response and that was I worried more about rather than agony related to send mother to nursing home. All the counselling sessions were challenging because it was very hard to consider the colleague as a client and more over I was unsure in the beginning where to start, what I would ask, how in depth the session would be and so on. On the basis of the feedback that I got, in the first few days of the counselling role play I was expressing insufficient empathy as I was not acknowledging properly the scenario of the client. The posture wasn’t good enough because I was swinging on my chair. According to my point of view I need to avoid giving advice or tendency of giving solutions as it violates the self-determination right of the client. The comments from my colleagues were very helpful as it helped me to stick in the main stream of counselling structure. In my counselling interventions, the tendency of asking more questions and collecting information (exactly same as case history taking) was not uncommon. The tendency might be because I had taken many case histories before as part of social work studies. It was confusing rather than focusing on the client’s issue. For instance once the client told about the need of rehabilitation for her mother, I was diverted from her (client) stress and started to thinking of certain strategies to deal her mother’s issue (dementia) . Therefore I just need to train myself to focus on the client issue. Feedback has a very good role in improving the skills of the counsellor. It helps to determine the area where improvement or modification is needed. For example I employed empathy but not enough to acknowledge the feelings of the client. The suggestions from my mates demonstrated the way we express empathy towards client’s feelings and also illustrated lots of relevant questions which I could ask to the client. From the brief explanation of self-reflection of counselling skills, counselling mproves personal effectiveness (Narayana Rao, 2002). The counsellor aims to bring about positive action on part of counselee and change the perception or understanding (irrational belief) by him or her shelf. The counsellor should be skilful in employing micro skills and the practical application of some sort of therapies from the counsellors could be helpful to provide self-direction to client or client. The feedbacks or comments from clients, colleagues, supervisors and other organizational staffs bring improvement or development of skills among counsellors. The counsellors themselves learn from experiences. Counsellor education and training or role plays stress the need of consistent approach in terms of counsellor’s experience, personality all reflects in his or her counselling. The practical sessions brings eligibility to counsellors to choose the style, ideas, principles, techniques and methods that appeal to him as meaningful and useful. The new insights from feedback enable the client to re-evaluate the ideas, principles, methods and modify or change according to client’s situation. This role paly session was very helpful for me because it improved my skills of developing counselling relationship with client. Now I hope I know thoroughly how would start? Howe would motivate the client to ventilate his or her feelings? How would I approach therapeutically the client? And also I could learn how could use the technique ‘silence’ effectively? So over all this counselling role paly was a great opportunity to get insight into my advantage and dis advantage of counselling skills. Therefore I would like to take this opportunity to express my sincere thanks to my faculty supervisor and my colleagues. Counselling Skills The purpose of this essay is describing the counselling practices that I did in my class room. I n this reflective essay, I will describe the style of counselling that I used so far , the actions I had taken, the area of skills where I need further improvement, my perception about the feedbacks from other students and faculty supervisor . By discussing this particular experience in detail, I can start to aware of the specific skills and technique which counsellor may use in different situation of the client in order to boost the client to take positive action by her or himself . As part of community welfare curriculum, I need to role paly 20 minutes of counselling session with my colleague. Before the final role play I had done few days of practice sessions with my colleague. I was getting feedback from rest of the classmates and teacher as they would be the observers of the counselling sessions. I found the practice sessions challenging because my friend was acting as client. Even though I was playing the role of counsellor, my mind was struggling to consider my friend as client. Before embarking upon my reflection regarding counselling, I would like to contribute a brief description of about the client. My client was 52years of old lady who was looking after her 72 years of old mother. She (mother of the client) was suffering dementia. The client hast two kids who are studying. As she was working seven days, she wasn’t getting time to ventilate her feeling to anyone. Actually she came to me with complaints of stress. She was afraid to tell her mother she was contemplating nursing home care. Basically I was really focused on my micro skills rather than therapeutic skills† as they plays pivotal role in counselling skills more â€Å"I belief. The micro skills such as empathy, questioning, minimal encourages, paraphrasing , summary, eye contact, body language, voice, structure, observation, listening and reflection of feeling could germinate the pathways to motivate the clients to ventilate his or her deeper feelings and more over could help the counsellor to build up purposeful relationship with client. However I tried to involve bit of cognitive behaviour therapy specifically downward arrow and questioning technique. As a counsellor my intention was to challenge her (client) about her irrational belief’ the mother would be upset when I tell about the need of nursing care ’. I tried to confront the client with the reality of situation by supporting the client to think of probable consequences such as â€Å"what‘s the worst that could happen if tell your mum about nursing home rehabilitation? † And a part from that used technique of universalization by describing similar kind of experiences but it was not enough for my client get enough courage to face her issue. I tried the empty chair concept which I was extracted from gestalt therapy (Patterson, 1986). The empty chair was failure, even though it nurtured the idea of asking the client â€Å"how would to response to a friend of having the same scenario†? That was the turning point as it brought insight to the client that I was anticipating her mother’s response and that was I worried more about rather than agony related to send mother to nursing home. All the counselling sessions were challenging because it was very hard to consider the colleague as a client and more over I was unsure in the beginning where to start, what I would ask, how in depth the session would be and so on. On the basis of the feedback that I got, in the first few days of the counselling role play I was expressing insufficient empathy as I was not acknowledging properly the scenario of the client. The posture wasn’t good enough because I was swinging on my chair. According to my point of view I need to avoid giving advice or tendency of giving solutions as it violates the self-determination right of the client. The comments from my colleagues were very helpful as it helped me to stick in the main stream of counselling structure. In my counselling interventions, the tendency of asking more questions and collecting information (exactly same as case history taking) was not uncommon. The tendency might be because I had taken many case histories before as part of social work studies. It was confusing rather than focusing on the client’s issue. For instance once the client told about the need of rehabilitation for her mother, I was diverted from her (client) stress and started to thinking of certain strategies to deal her mother’s issue (dementia) . Therefore I just need to train myself to focus on the client issue. Feedback has a very good role in improving the skills of the counsellor. It helps to determine the area where improvement or modification is needed. For example I employed empathy but not enough to acknowledge the feelings of the client. The suggestions from my mates demonstrated the way we express empathy towards client’s feelings and also illustrated lots of relevant questions which I could ask to the client. From the brief explanation of self-reflection of counselling skills, counselling mproves personal effectiveness (Narayana Rao, 2002). The counsellor aims to bring about positive action on part of counselee and change the perception or understanding (irrational belief) by him or her shelf. The counsellor should be skilful in employing micro skills and the practical application of some sort of therapies from the counsellors could be helpful to provide self-direction to client or client. The feedbacks or comments from clients, colleagues, supervisors and other organizational staffs bring improvement or development of skills among counsellors. The counsellors themselves learn from experiences. Counsellor education and training or role plays stress the need of consistent approach in terms of counsellor’s experience, personality all reflects in his or her counselling. The practical sessions brings eligibility to counsellors to choose the style, ideas, principles, techniques and methods that appeal to him as meaningful and useful. The new insights from feedback enable the client to re-evaluate the ideas, principles, methods and modify or change according to client’s situation. This role paly session was very helpful for me because it improved my skills of developing counselling relationship with client. Now I hope I know thoroughly how would start? Howe would motivate the client to ventilate his or her feelings? How would I approach therapeutically the client? And also I could learn how could use the technique ‘silence’ effectively? So over all this counselling role paly was a great opportunity to get insight into my advantage and dis advantage of counselling skills. Therefore I would like to take this opportunity to express my sincere thanks to my faculty supervisor and my colleagues. ï » ¿Counselling Skills P1: Describe processes for initiating, maintaining, developing and concluding a helping relationshipA helping relationship is a relationship between the professional and the patient/client which aims to help the client get through difficult situations and encourage the client to overcome their issues.Gerard Egan’s 3 Stage Skilled Helper Mode 1994, provides a basic guideline on how helping relationships should be carried out. It is important that helpers take into consideration the steps provided in the Egan’s mode as it provides structure and positive support to clients.The 3 stages are:1. The Present Scenario 2. The Preferred Scenario 3. Getting ThereWithin each stage there are additional steps which provide detailed guidelines that will help the client achieve the next step in the model.The Present Scenario – Stage 1Expansive 1a. the StoryThis step is to encourage the client to tell the story, the helper should demonstrate good listening skills and support the client tell a detailed and topic related story. It also encourages the client to get side tracked and maintain focus on the problem.Challenging 2a. blind spotsAt times it may be hard for the client to tell the story which got them conflicted. The helper should guide the client to see the situation from different perspectives through empathetic reflections and challenging questions to encourage the client to push oneself to fill in gaps that may be missing from their story.Focusing 1c. leverageThis is the last section of the first stage; at this point the client may feel overwhelmed after telling the helper what the problem is. The helper should aid the client on concentrating on a part of their story that they feel they have the energy to change and resolve.The Preferred Scenario – Stage 2Expletory 2a. possibilitiesAt this stage the helper should encourage the client to think what way they would want their situation to be. The helper should avoid over analysing or judging the client regardless of what the client describe as their perfect scenario. The client should be pushing the client to open their mind and see the bigger picture outside the problem and how they prefer things to be.Reality Testing 2a. change agendaAfter the client expresses how they wish their situation to be, the helper should encourage the client to think of realistic goal (SMART goals) that can be achievable. The client should be thinking of a time frame which they can reach within a certain time limit. The helper should support these and be a mediator for the client when they are setting their goals.Committing 2c. commitmentThe aim of the final step of stage two is for the helper to evaluate the commitment level displayed by the client to achieving their goal. The helper should encourage the client to evaluate the benefits and costs of dedicating oneself to the goal and show their determinacy to achieving it.Getting There – Stage 3Creative 3a. Possible ActionsThe first step of stage 3 aims to encourage the client to brainstorm possible places, people, organisations; actions and attitudes that would them achieve their set goals. The helper should encourage and motivate the client to think widely on possible strategies to achieve their goal (101 ways to achieve the goal).Selecting 3b. best fit strategiesAfter the brainstorm the client will be left with many strategies, the helper should set in to guide the client to select the best and most fitting strategy to achieve their desired goal. The helper should also guide the client to analyse the internal and external factors that may affect the way their strategy is carried out.Moving Forward 3c. pointEgan’s Model final step, this aims to help the client plan their next steps. The plan of action should be broken down into small sections and the client should be confident and positive when explained their action plan to the helper. The helper should be encouraging the client to turn wishes into goals, but avoiding on pushing the client on creating goals that they have no desire of achieving.To conclude Egan’s Model proves to be a concise and important part of a helping relationship as it provides helpers with a structure and guide on how to conduct sessions and how to track improvement from client when reaching a new stage.