Improving Maximum Likelihood Training for Text Generation with Density Ratio Estimation

Total Page:16

File Type:pdf, Size:1020Kb

Improving Maximum Likelihood Training for Text Generation with Density Ratio Estimation Improving Maximum Likelihood Training for Text Generation with Density Ratio Estimation Yuxuan Song Ning Miao Hao Zhou Lantao Yu Shanghai Jiao Tong University Bytedance AI lab Bytedance AI lab Stanford University Mingxuan Wang Lei Li Bytedance AI lab Bytedance AI lab Abstract merous scenarios, such as image generation (Arjovsky et al., 2017; Goodfellow et al., 2014), density estima- Autoregressive sequence generative models tion (Ho et al., 2019; Salimans et al., 2017; Kingma trained by Maximum Likelihood Estimation and Welling, 2013; Townsend et al., 2019), stylization suffer the exposure bias problem in practi- (Ulyanov et al., 2016), and text generation (Yu et al., cal finite sample scenarios. The crux is that 2017; Li et al., 2016). Learning generative models for the number of training samples for Maximum text data is an important task which has significant im- Likelihood Estimation is usually limited and pact on several real world applications, e.g., machine the input data distributions are different at translation, literary creation and article summariza- training and inference stages. Many methods tion. However, text generation remains a challenging have been proposed to solve the above prob- task due to the discrete nature of the data and the lem (Yu et al., 2017; Lu et al., 2018), which huge sample space which increases exponentially with relies on sampling from the non-stationary the sentence length. model distribution and suffers from high vari- Text generation is nontrivial for its huge sample space. ance or biased estimations. In this paper, For generating sentences of various lengths, current we propose -MLE, a new training scheme text generation models are mainly based on density for autoregressive sequence generative mod- factorization instead of directly modeling the joint els, which is effective and stable when operat- distribution, which results in the prosperity of neu- ing at large sample space encountered in text ral autoregressive models on language modeling. As generation. We derive our algorithm from neural autoregressive models have explicit likelihood a new perspective of self-augmentation and function, it is straightforward to employ Maximum introduce bias correction with density ratio Likelihood Estimation (MLE) for training. Although estimation. Extensive experimental results MLE is is asymptotically consistent, for practical fi- on synthetic data and real-world text gen- nite sample scenarios, it is prone to overfit on the eration tasks demonstrate that our method training set. Additionally, during the inference (gen- stably outperforms Maximum Likelihood Es- eration) stage, the error at each time step will accu- timation and other state-of-the-art sequence mulate along the sentence generation process, which is generative models in terms of both quality also known as the exposure bias (Ranzato et al., 2015) and diversity. problem. Many efforts have been devoted to address the above 1 Introduction limitations of MLE. Researchers have proposed several non-MLE methods based on minimizing different dis- Deep generative models dedicate to learning a tar- crepancy measures, e.g., Sequential GANs (Yu et al., get distribution and have shown great promise in nu- 2017; Che et al., 2017; Kusner and Hern´andez-Lobato, 2016) and CoT (Lu et al., 2018). However, non-MLE Proceedings of the 23rdInternational Conference on Artifi- methods typically relies on sampling from the gener- cial Intelligence and Statistics (AISTATS) 2020, Palermo, Italy. PMLR: Volume 108. Copyright 2020 by the au- The work was done during the first author's internship thor(s). at Bytedance AI lab. Improving Maximum Likelihood Training for Text Generation with Density Ratio Estimation ative distribution to estimate gradients, which results 2.2 MLE vs Sequential GANs in high variance and instability during training, as the generative distribution is non-stationary during train- It should be noticed that both MLE and GANs for se- ing process. Some recent study (Caccia et al., 2018) quence generation suffer from their corresponding is- empirically shows that non-MLE methods potentially sues. In this section, we delve deeply into the specific suffer from mode collapse problem and cannot actu- properties of MLE and GANs, and explore how these ally outperform MLE in terms of quality and diversity properties affect their performances in modeling se- tradeoff. quential data. In this paper, we seek to leverage the ability of gen- erative models itself for providing unlimited amount MLE The objective of Maximum Likelihood Esti- of samples to augment the training dataset, which has mation (MLE) is: the potential of alleviating the overfitting problem due to limited samples, as well as addressing the exposure LMLE(θ) = Es∼pdata [log pθ(s)] (1) bias problem by providing the model with prefixes (in- put partial sequences) sampled from its own distribu- where pθ(s) is the learned probability of sequence s tion. To correct the bias incurred by sampling from the in the generative model. Maximizing the objective is model distribution, we propose to learn a progressive equivalent to minimizing the Kullback-Leibler (KL) di- density ratio estimator based on Bregman divergence vergence: minimization. The above procedures together form a novel training scheme for sequence generative models, pdata (s) DKL(pdata jjpθ) = Es∼pdata log (2) termed -MLE. pθ(s) Another essential difference between MLE and -MLE lies in the fact that the likelihood of samples not in Though MLE has lots of attractive properties, it has training set are equally penalized through normaliza- two critical issues: tion in MLE, whether near or far from the true dis- 1) MLE is prone to overfitting on small training sets. tribution. While -MLE takes the difference in the Training an autoregressive sequence generative model quality of unseen samples into account through the with MLE on a training set consists of sentences of importance weight assigned by density ratio estimator, length L, the standard objective can be derived as fol- which can be expected to get further improvement. lowing: Empirically, MLE with mixture training data gives the L same performance as vanilla MLE training with only X LMLE^ (θ) = E log pθ (sljs1:l−1) (3) training data. But our proposed -MLE consistently s∼pdata^ outperforms vanilla MLE training. Additionally, we l=1 empirically demonstrate the superiority of our algo- The forced exposure to the ground-truth data shown rithm over many strong baselines like GAN in terms of in Eq. 3 is known as \teacher forcing", which causes generative performance (in the quality-diversity space) the problem of overfitting. What makes thing worse with both synthetic and real-world datasets. is the exposure bias. During training, the model only learns to predict sl given s1:l−1, which are fluent pre- 2 Preliminary fixes in the training set. During sampling, when there are some small mistakes and the first l−1 can no longer make up a very fluent sentence, the model may easily 2.1 Notations fail to predict sl. 2) KL-divergence punishes the situation where the gen- We denote the target data distribution as pdata , and eration model gives real data points low probabili- the empirical data distribution asp ^data . The parame- ters of the generative model G are presented by θ and ties much more severely than that where unreason- the parameters of a density ratio estimator r are pre- able data points are given high probabilities. As a result, models trained with MLE will focus more on sented by . pθ denotes the distribution implied by the tractable density generative model G. The objec- not missing real data points than avoiding generating data points of low quality. tive is to fit the underlying data distribution pdata with a parameterized model distribution pθ with empirical samples from pdata. We use s to stand for a sample se- Sequential GANs Sequential GANs (Yu et al., quence from datasets or from generator's output. And 2017; Guo et al., 2018), are proposed to overcome the sl stands for the l-th token of s, where s0 = ;. above shortcomings of MLE. The typical objective of Yuxuan Song, Ning Miao, Hao Zhou, Lantao Yu, Mingxuan Wang, Lei Li them is: where m 2 [0; 1] is the proportion of training data. By -MLE, we extend O to the whole space. And since LGAN(θ) = there are real training data in the mixture samples, the " n # X gradients are more informative with lower variances. min −Es∼pθ Qt (s1:t−1; st) · log pθ (stjs1:t−1) θ t=1 For training, we directly minimize the forward KL (4) divergence between pmix and pθ, which is equivalent Qt (s1:t−1; st) is action value, which is usually approx- to performing MLE on samples from pmix. Since the imated by a discriminators evaluation on the complete training goal at each step is to maximize: sequences sampled from the prefix st+1 = [s1:t−1; st]. The main advantage of GANs is that when we update Epmix(S)[log pθ(S)]; (6) the generative model, error will be explicitly reduced by the effect of normalizing constant. when the KL-divergence decrease, the gap between pθ and p get smaller. Eventually, when p ≈ p , p However, there is also a major drawback of GANs. As data θ mix θ also approximates p . the gradient is estimated by REINFORCE algorithm data (Yu et al., 2017), the generated distribution is non- However, pmix may be very different from pdata, espe- stationary. As a result, the estimated gradient may cially at the beginning of training. This discrepancy suffer from high variance. Though many methods have may result in generating really poor samples which been proposed to stabilize the training of sequential have high likelihoods in pθ but not in pdata. As a GANs, e.g control variate (Che et al., 2017) or MLE result, the training set gets noisier, which may harm pretraining (Yu et al., 2017), there, they only have performance.
Recommended publications
  • A Parametric Bayesian Approach in Density Ratio Estimation
    Article A Parametric Bayesian Approach in Density Ratio Estimation Abdolnasser Sadeghkhani 1,* , Yingwei Peng 2 and Chunfang Devon Lin 3 1 Department of Mathematics & Statistics, Brock University, St. Catharines, ON L2S 3A1, Canada 2 Departments of Public Health Sciences, Queen’s University, Kingston, ON K7L 3N6, Canada; [email protected] 3 Department of Mathematics & Statistics, Queen’s University, Kingston, ON K7L 3N6, Canada; [email protected] * Correspondence: [email protected] Received: 7 March 2019; Accepted: 26 March 2019; Published: 30 March 2019 Abstract: This paper is concerned with estimating the ratio of two distributions with different parameters and common supports. We consider a Bayesian approach based on the log–Huber loss function, which is resistant to outliers and useful for finding robust M-estimators. We propose two different types of Bayesian density ratio estimators and compare their performance in terms of frequentist risk function. Some applications, such as classification and divergence function estimation, are addressed. Keywords: Bayes estimator; Bregman divergence; density ratio; exponential family; log–Huber loss 1. Introduction The problem of estimating the ratio of two densities appears in many areas of statistical and computer science. Density ratio estimation (DRE) is widely considered to be the most important factor in machine learning and information theory (Sugiyama et al. [1], and Kanamori et al. [2]). In a series of papers, Sugiyama et al. [3,4] developed DRE in different statistical data analysis problems. Some useful applications of DRE are as follows: non-stationary adaptation (Sugiyama and Müller [5] and Quiñonero-Candela et al. [6]), variable selection (Suzuki et al.
    [Show full text]
  • ESTIMATING POPULATION MEAN USING KNOWN MEDIAN of the STUDY VARIABLE Dharmendra Kumar Yadav 1, Ravendra Kumar *2, Prof Sheela Misra3 & S.K
    ISSN: 2277-9655 [Kumar* et al., 6(7): July, 2017] Impact Factor: 4.116 IC™ Value: 3.00 CODEN: IJESS7 IJESRT INTERNATIONAL JOURNAL OF ENGINEERING SCIENCES & RESEARCH TECHNOLOGY ESTIMATING POPULATION MEAN USING KNOWN MEDIAN OF THE STUDY VARIABLE Dharmendra Kumar Yadav 1, Ravendra Kumar *2, Prof Sheela Misra3 & S.K. Yadav4 *1Department of Mathematics, Dr Ram Manohar Lohiya Government Degree College, Aonla, Bareilly, U.P., India 2&3Department of Statistics, University of Lucknow, Lucknow-226007, U.P., INDIA 4Department of Mathematics and Statistics (A Centre of Excellence), Dr RML Avadh University, Faizabad-224001, U.P., INDIA DOI: 10.5281/zenodo.822944 ABSTRACT This present paper concerns with the estimation of population mean of the study variable by utilizing the known median of the study variable. A generalized ratio type estimator has been proposed for this purpose. The expressions for the bias and mean squared error of the proposed estimator have been derived up to the first order of approximation. The optimum value of the characterizing scalar has also been obtained. The minimum value of the proposed estimator for this optimum value of the characterizing scalar is obtained. A theoretical efficiency comparison of the proposed estimator has been madewith the mean per unit estimator, usual ratio estimator of Cochran (1940), usual regression estimator of Watson (1937),Bahl and Tuteja (1991), Kadilar (2016) and Subramani (2016) estimators. Through the numerical study, the theoretical findings are validated and it has been found that proposed estimate or performs better than the existing estimators. KEYWORDS: Study variable,Bias, Ratio estimator, Mean squared error, Simple random sampling, Efficiency.
    [Show full text]
  • Ratio Estimators in Simple Random Sampling Using Information on Auxiliary Attribute
    Ratio Estimators in Simple Random Sampling Using Information on Auxiliary Attribute Rajesh Singh Department of Statistics, Banaras Hindu University Varanasi (U.P.), India Email: [email protected] Pankaj Chauhan School of Statistics, DAVV, Indore (M.P.), India Nirmala Sawan School of Statistics, DAVV, Indore (M.P.), India Florentin Smarandache Department of Mathematics, University of New Mexico, Gallup, USA Email: [email protected] Abstract Some ratio estimators for estimating the population mean of the variable under study, which make use of information regarding the population proportion possessing certain attribute, are proposed. Under simple random sampling without replacement (SRSWOR) scheme, the expressions of bias and mean-squared error (MSE) up to the first order of approximation are derived. The results obtained have been illustrated numerically by taking some empirical population considered in the literature. Key words: Proportion, bias, MSE, ratio estimator. 1. Introduction The use of auxiliary information can increase the precision of an estimator when study variable y is highly correlated with auxiliary variable x. There exist situations when information is available in the form of attribute φ , which is highly correlated with y. For example a) Sex and height of the persons, b) Amount of milk produced and a particular breed of the cow, c) Amount of yield of wheat crop and a particular variety of wheat etc. (see Jhajj et. al. [1]). Consider a sample of size n drawn by SRSWOR from a population of size N. Let th yi and φi denote the observations on variable y and φ respectively for i unit (i =1,2,....N) .
    [Show full text]
  • Random Denominators and the Analysis of Ratio Data
    Environmental and Ecological Statistics 11, 55-71, 2004 Corrected version of manuscript, prepared by the authors. Random denominators and the analysis of ratio data MARTIN LIERMANN,1* ASHLEY STEEL, 1 MICHAEL ROSING2 and PETER GUTTORP3 1Watershed Program, NW Fisheries Science Center, 2725 Montlake Blvd. East, Seattle, WA 98112 E-mail: [email protected] 2Greenland Institute of Natural Resources 3National Research Center for Statistics and the Environment, Box 354323, University of Washington, Seattle, WA 98195 Ratio data, observations in which one random value is divided by another random value, present unique analytical challenges. The best statistical technique varies depending on the unit on which the inference is based. We present three environmental case studies where ratios are used to compare two groups, and we provide three parametric models from which to simulate ratio data. The models describe situations in which (1) the numerator variance and mean are proportional to the denominator, (2) the numerator mean is proportional to the denominator but its variance is proportional to a quadratic function of the denominator and (3) the numerator and denominator are independent. We compared standard approaches for drawing inference about differences between two distributions of ratios: t-tests, t-tests with transformations, permutation tests, the Wilcoxon rank test, and ANCOVA-based tests. Comparisons between tests were based both on achieving the specified alpha-level and on statistical power. The tests performed comparably with a few notable exceptions. We developed simple guidelines for choosing a test based on the unit of inference and relationship between the numerator and denominator. Keywords: ANCOVA, catch per-unit effort, fish density, indices, per-capita, per-unit, randomization tests, t-tests, waste composition 1352-8505 © 2004 Kluwer Academic Publishers 1.
    [Show full text]
  • Mean and Variance of Ratio Estimators Used in Fluorescence Ratio Imaging
    © 2000 Wiley-Liss, Inc. Cytometry 39:300–305 (2000) Mean and Variance of Ratio Estimators Used in Fluorescence Ratio Imaging G.M.P. van Kempen1* and L.J. van Vliet2 1Central Analytical Sciences, Unilever Research Vlaardingen, Vlaardingen, The Netherlands 2Pattern Recognition Group, Faculty of Applied Sciences, Delft University of Technology, Delft, The Netherlands Received 7 April 1999; Revision Received 14 October 1999; Accepted 26 October 1999 Background: The ratio of two measured fluorescence Results: We tested the three estimators on simulated data, signals (called x and y) is used in different applications in real-world fluorescence test images, and comparative ge- fluorescence microscopy. Multiple instances of both sig- nome hybridization (CGH) data. The results on the simu- nals can be combined in different ways to construct dif- lated and real-world test images confirm the presented ferent ratio estimators. theory. The CGH experiments show that our new estima- Methods: The mean and variance of three estimators for tor performs better than the existing estimators. the ratio between two random variables, x and y, are Conclusions: We have derived an unbiased ratio estima- discussed. Given n samples of x and y, we can intuitively tor that outperforms intuitive ratio estimators. Cytometry construct two different estimators: the mean of the ratio 39:300–305, 2000. © 2000 Wiley-Liss, Inc. of each x and y and the ratio between the mean of x and the mean of y. The former is biased and the latter is only asymptotically unbiased. Using the statistical characteris- tics of this estimator, a third, unbiased estimator can be Key terms: ratio imaging; CGH; ratio estimation; mean; constructed.
    [Show full text]
  • A Comparison of Two Estimates of Standard Error for a Ratio-Of-Means Estimator for a Mapped-Plot Sample Design in Southeast Alas
    United States Department of Agriculture A Comparison of Two Forest Service Estimates of Standard Error Pacific Northwest Research Station for a Ratio-of-Means Estimator Research Note PNW-RN-532 June 2002 for a Mapped-Plot Sample Design in Southeast Alaska Willem W.S. van Hees Abstract Comparisons of estimated standard error for a ratio-of-means (ROM) estimator are presented for forest resource inventories conducted in southeast Alaska between 1995 and 2000. Estimated standard errors for the ROM were generated by using a traditional variance estimator and also approximated by bootstrap methods. Estimates of standard error generated by both traditional and boot- strap methods were similar. Percentage differences between the traditional and bootstrap estimates of standard error for productive forest acres and for gross cubic-foot growth were generally greater than respective differences for non- productive forest acres, net cubic volume, or nonforest acres. Keywords: Sampling, inventory (forest), error estimation. Introduction Between 1995 and 2000, the Pacific Northwest Research Station (PNW) Forest Inventory and Analysis (FIA) Program in Anchorage, Alaska, conducted a land cover resource inventory of southeast Alaska (fig. 1). Land cover attribute esti- mates derived from this sample describe such features as area, timber volume, and understory vegetation. Each of these estimates is subject to measurement and sampling error. Measurement error is minimized through training and a program of quality control. Sampling error must be estimated mathematically. This paper presents a comparison of bootstrap estimation of standard error for a ratio-of-means estimator with a traditional estimation method. Bootstrap esti- mation techniques can be used when a complex sampling strategy hinders development of unbiased or reliable variance estimators (Schreuder and others 1993.) Bootstrap techniques are resampling methods that treat the sample as if it were the whole population.
    [Show full text]
  • 5 RATIO and REGRESSION ESTIMATION 5.1 Ratio Estimation
    5 RATIO AND REGRESSION ESTIMATION 5.1 Ratio Estimation Suppose the researcher believes an auxiliary variable (or covariate) x is associated with • the variable of interest y. Examples: { Variable of interest: the amount of lumber (in board feet) produced by a tree. Auxiliary variable: the diameter of the tree. { Variable of interest: the current number of farms per county in the United States. Auxiliary variable: the number of farms per county taken from the previous census. { Variable of interest: the income level of a person who is 40 years old. Auxiliary variable: the number of years of education completed by the person. Situation: we have bivariate (X; Y ) data and assume there is a positive proportional rela- • tionship between X and Y . That is, on every sampling unit we take a pair of measurements and assume that Y BX for some constant B > 0. ≈ There are two cases that may be of interest to the researcher: • 1. To estimate the ratio of two population characteristics. The most common case is the population ratio B of means or totals: B = 2. To use the relationship between X and Y to improve estimation of ty or yU . The sampling plan will be to take a SRS of n pairs (x1; y1);:::; (xn; yn) from the population • of N pairs. We will use the following notation: N N N N xU = xi =N tx = xi yU = yi =N ty = yi i=1 ! i=1 i=1 ! i=1 n X X n X X x = xi=n = the sample mean of x's.
    [Show full text]
  • ID 505 Ratio Estimator for Population Variations Using Additional
    Proceedings of the 5th NA International Conference on Industrial Engineering and Operations Management Detroit, Michigan, USA, August 10 - 14, 2020 Ratio Estimator for Population Variations Using Additional Information on Simple Random Sampling Haposan Sirait, Stepi Karolin Mathematics Study Program, Faculty of Mathematics and Natural Sciences, Universitas Riau, Pekanbaru, Indonesia. [email protected] Sukono Department of Mathematics, Faculty of Mathematics and Natural Sciences, Universitas Padjadjaran, Bandung, Indonesia. [email protected] Kalfin Doctor Program of Mathematics, Faculty of Mathematics and Natural Sciences, Universitas Padjadjaran, Indonesia [email protected] Abdul Talib Bon Department of Production and Operations, Universiti Tun Hussein Onn Malaysia (UTHM) Parit Raja 86400, Johor, Malaysia [email protected] Abstract Variance is a parameter that is often estimated in a research, because variance can give a picture of the degree of homogeneity of a population. To estimate the variance for rare and population has been the main problem in survey sampling Variance obtained based on simple random sampling, there further modified by utilizing additional characters that are assumed to be related to the character under study. This article discusses the population mean estimator by utilizing additional character variances, and then the modified estimator will be compared to the mean square error to obtain an efficient estimator Keywords: Simple random sampling, Mena square error, efficient estimator 1. Introduction In manufacturing industries and pharmaceutical laboratories sometimes researchers are interested in the variation of their products. To measure the variations within the values of study variable y, the problem of estimating the population variance of of study variable Y received a considerable attention of the statistician in survey 2 sampling including Isaki (1983), Singh and Singh (2001, 2003), Jhajj et al.
    [Show full text]
  • Estimation of Population Totals for Highly Skewed
    ESTIMATION OF POPULATION TOTALS FOR HIGHLY SKEWED POPULATIONS IN REPEATED SURVEYS Harold F. Huddleston Statistical Reporting Service U.S. Department of Agriculture March 1965 ESTIMATION OF POPULATION TOTALS FOR HIGHLY SKEWED POPULATIONS IN REPEATED SURVEYS 1/ Introduction The purpose of this report is to describe the investigation of alter- native estimators for extremely skewed distributions based on prior knowledge of the distributions. The data considered in detail is the basic population of area segments within a State. However, the methods may be applied to any type of sampling unit. It is believed that the distributions associated with the segments for a particular State or group of States are similar for the same characteristic since standard rules of segment construction were used. Procedures for combining the information for the samples over years in order to improve results are developed. The alternative estimators require considerably more knowledge of the distributions than the mean and variance which are sufficient information for determining sample size. In fact, the basic objective is to make use of the additional information which is available on the distribution from the same or similar populations. While certain additional information is required about the nature of the distribution, apriori knowledge about individual sampling units is not required. In the past, these estimators have been used primarily to develop improved State or small area estimates. These estimators may have small biases for individual States but the biases can be made to sum to zero over a group of States. A similar approach for making estimates by districts or subdivisions within States has been attempted on a limited basis.
    [Show full text]
  • Estimating Population Size with Correlated Sampling Unit Estimates
    ESTIMATING POPULATION SIZE WITH CORRELATED SAMPLING UNIT ESTIMATES DAVID C. BOWDEN,1 Department of Statistics, Colorado State University, Fort Collins, CO 80523, USA GARY C. WHITE, Department of Fishery and Wildlife Biology, Colorado State University, Fort Collins, CO 80523, USA ALAN B. FRANKLIN, Colorado Cooperative Fish and Wildlife Research Unit and Department of Fishery and Wildlife Biology, Colorado State University, Fort Collins, CO 80523, USA JOSEPH L. GANEY, USDA Forest Service, Rocky Mountain Research Station, Flagstaff, AZ 86001, USA Abstract: Finite population sampling theory is useful in estimating total population size (abundance) from abun- dance estimates of each sampled unit (quadrat). We develop estimators that allow correlated quadrat abundance estimates, even for quadrats in different sampling strata. Correlated quadrat abundance estimates based on mark–recapture or distance sampling methods occur when data are pooled across quadrats to estimate, for exam- ple, capture probability parameters or sighting functions. When only minimal information is available from each quadrat, pooling of data across quadrats may be necessary to efficiently estimate capture probabilities or sighting functions. We further include information from a quadrat-based auxiliary variable to more precisely estimate total population size via a ratio estimator. We also provide variance estimators for the difference between or the ratio of 2 abundance estimates, taken at different times. We present an example based on estimating the number of Mex- ican spotted owls (Strix occidentalis lucida) in the Upper Gila Mountains Recovery Unit, Arizona and New Mexico, USA. Owl abundance for each quadrat was estimated with a Huggins 4-pass mark–resight population estimator, but with initial capture and resighting probabilities modeled in common across all sample quadrats.
    [Show full text]
  • Transformed Naïve Ratio and Product Based Estimators for Estimating Population Mode in Simple Random Sampling
    Transformed Naïve Ratio and Product Based Estimators for Estimating Population Mode in Simple Random Sampling Sanjay Kumar* and Nirmal Tiwari Department of Statistics, Central University of Rajasthan, Bandarsindri, Kishangarh-305817, Ajmer, Rajasthan, India., *E-mail: [email protected], Cell No.-(+91)-7597279362(Corresponding author) Abstract In this paper, we propose a transformed naïve ratio and product based estimators using the characterizing scalar in presence of auxiliary information of the study variable for estimating the population mode following simple random sampling without replacement. The bias, mean square errors, relative efficiency, ratios of the exact values of mean square errors to the simulated mean square errors and confidence interval are studied for the performance of the proposed transformed naïve ratio type estimator with the certain natural population as well as artificially generated data sets. We have shown that proposed transformed naïve ratio based estimator is more efficient than the naïve estimator and naïve ratio estimator of the population mode. Keywords: Population, Sample, Mean, Median, Mode, Bias, Mean square errors, Relative efficiency, and Simple random sampling. 4.1. Introduction Survey statisticians generally wish to estimate population total, mean, median, quantile etc. for the study variable using auxiliary information. Auxiliary information helps to improve the efficiencies of estimators. Cochran (1940) was the first researcher who used auxiliary information to estimate the population total/mean while Kuk and Mak (1989) were the first researchers who used such auxiliary information to estimate the median of the study variable. However, there are many real life situations such as, manufacturing of shoes, manufacturing of ready-made garments and business forecasting etc., where to estimate population mode instead of population mean/total or median of the study variable, is more appropriate.
    [Show full text]
  • Modified Linear Regression Estimators Using Quartiles and Standard Deviation -.:: Natural Sciences Publishing
    J. Stat. Appl. Pro. 7, No. 2, 379-388 (2018) 379 Journal of Statistics Applications & Probability An International Journal http://dx.doi.org/10.18576/jsap/070215 Modified Linear Regression Estimators Using quartiles and Standard Deviation Asra Nazir1, S. Maqbool2 and Showkat Ahmad3 1Department of statistics, university of Kashmir, J & k, India. 2Division of Agricultural statistics, SKUAST-Kashmir, India. 3Department of Statistics and Operation Research, Aligarh Muslim University, Aligarh UP, India. Received: 12 Dec. 2018, Revised: 22 Jun. 2018, Accepted: 27 Jun. 2018. Published online: 1 Jul. 2018. Abstract: In this paper, we proposed some regression estimators for estimating the population means using linear combination of first quartile, third quartile and standard deviation of the auxiliary variable which are known. Mean square error (MSE) of the proposed estimator is obtained and compared with that of simple random sampling without replacement (SRSWOR) sample mean, classical ratio estimator and existing ratio estimator’s .Theoretical result is supported by a numerical illustration. Keywords: First quartile, Third quartile, standard quartile deviation, Simple random sampling, Standard deviation. 1 Introduction Consider a finite populationU {U1 ,U 2 ,U 3 ,.......U N }of N distinct and identifiable units. Let Y be a study variable with value Yi measured on Ui=1,2,3……N giving a vector y={y1,y2………yN}.The problem is to estimate the population mean on the basis of a random sample selected from the population U. The SRSWOR sample mean is
    [Show full text]