Modeling Timing Features in Broadcast News Video Classification∗ Wei-Hao Lin and Alexander Hauptmann Language Technologies Institute School of Computer Science Carnegie Mellon University 5000 Forbes Avenue Pittsburgh, PA 15213, U.S.A. {whlin, alex}@cs.cmu.edu

1. Introduction Video classification is arguably the first step toward multimedia content understanding, and has been an active sub-field of multimedia research. A large number of useful features, based on video and audio, that have been proposed for video classification. Human-edited video contains another type of feature in the temporal domain because editors or producers often implicitly or explicitly impose a structure over time; broadcast news programs, for example, are very structured. People watching enough news programs usually can notice that weather reports are not randomly presented in the 30-minute program. Therefore, timing could be an informative feature to distinguish one type of reports from the others. While it is tempting to apply machine learning technique to acquire the concept without human intervention, the learning task, seeming a very easy at the first ∗ This work was supported in part by the Advanced Research and Development Activity (ARDA) under contract number MDA908-00-C-0037.

Positive Label

Broadcast news programs are well-structured video, and timing can be a strong predictor for specific types of news reports. However, learning a classifier using timing features may not be an easy task when training data are noisy. In this paper, we approach the problem from the generative model perspective, and approximate the class density in a non-parametric fashion. The results show that timing is a simple but extremely effective feature, and our method can achieve significantly better performance than a discriminative classifier.

sight, may not be so obvious after looking closely to the real-world data, shown in Figure 1. While non-weather

Negative

Abstract

0.0

0.2

0.4

0.6

0.8

1.0

Time

Figure 1. The distribution of the time offset of the positive and negative weather news examples in the TRECVID’03 corpus offset

news are evenly distributed, it it clear that weather news are not randomly distributed, most of which are centered around time offset 0.3 (corresponding to 10 minutes in a 30-minute program). However, there are many negative, non-weather news stories presenting in the same time period, which confounds learning algorithms trying to find the decision boundary between the two classes. While two classes overlapping heavily in the same region can be due to the incorrect or noisy training labels, the problem of inconsistency and incompleteness of human annotations is so prevalent that any video classification systems must cope with the problem. It will be very difficult for discriminative classifiers to learn here because there is not clear decision boundary to separate two classes of data. Instead, we propose to approach the problem using the generative models. Two modeling approaches will be further described in Section 2. Experiments are conducted to evaluate the effectiveness of the two modeling meth-

In Proceedings of the 2004 IEEE Internation Conference on Multimedia and Expo (ICME), Taipei, Taiwan, June 27-30, 2004

ods in Section 3, and concluding remarks are made in Section 4.

2. Modeling Timing Features Statistical classifiers can approach the classification problem either in discriminative models or generative models [4]. Suppose the random variable Y is the class label, and X is the one-dimension timing feature. Discriminative models model the posterior probability directly, i.e. P (Y |X), while generative models will model the joint probability, i.e. P (X, Y ). Generally speaking, the performance of the generative models depend heavily on the correctness of the model assumption, while discriminative models are more robust because of fewer assumptions. We describe how to generate the timing features before describing two modeling approaches.

2.1. Timing Feature Representation Video is often automatically or manually segmented into shots, and video classifiers are asked to make a classification decision at the shot level. A video, therefore, D consists of an ordered set of shots di , i = 1, . . . , |D|. For each shot, the starting and ending offset can be easily obtained, usually in the unit of frames or milliseconds, denoted as so(d) and eo(d), respectively. The middle point of the starting offset and ending offset is used to represent the timing feature xi for each shot di . In a 30-minute news program, xi could range from a few milliseconds to millions of milliseconds. Such a large scale may cause numerical problems in classifier training. One simple way to normalize the values in a large range is linear scaling, which scales the timing features between zero and one, defined as follows, xi =

0.5(so(di ) + eo(di )) − mink t(dk ) maxk t(dk ) − mink t(dk )

(1)

However, linear scaled timing features may be problematic when the length of the video varies much. Suppose most broadcast news programs in a corpus are 30 minutes long, but a few of them are around 20-minutes long. The timing features scaled in the 20-minute range will not be meaningful to those in the 30-minute range. Therefore, instead of dividing by the whole length of the video, we fix the range to 1800000 milliseconds, i.e. 30 minutes, as follows, xi =

0.5(so(di ) + eo(di )) 1800000

(2)

2.2. Support Vector Machine Like all discriminative models, SVM makes assumption on the discriminant functions and use them to classify examples. SVM has been widely used and is very effective in many domains. The basic idea behind SVM is to select a decision hyperplane in the feature space that can separate two classes of data points while keeping the margin as large as possible. The process of finding the hyperplane can be formulated as the following optimization problem, l

X 1 min wT w + C ξi w,b,ξ 2 i=1

(3)

subject to yi (wT φ(xi ) + b) ≥ 1 − ξi ξi ≥ 0, i = 1, . . . , l where xi is a feature vector, i = 1, . . . , l, l is the size of the training data, yi ∈ +1, −1, yi is +1 when the shot is an positive example, and -1 otherwise, φ is the kernel function that maps the feature vector into higher dimension, ξi is the degree of misclassification when the data points fall in the wrong side of the decision boundary, and C is the penalty parameter that tradeoff between two terms. More details can be found in [1].

2.3. Modeling Class Densities By Bayes’ Theorem, the posterior probability P (Y |X) can be rewritten as the product of the class density p(X|Y ) and the prior class probability P (Y ), as in the following equation, P (Y |X) = R

p(X|Y )P (Y ) x p(X|Y )P (Y )dx

(4)

The key of generative modeling here will be the the class densities p(X|Y ). A non-parametric density estimation techniques called kernel density estimation [5] is chosen to estimate the class density, defined as follows,   n 1X1 x − xi pˆ(X|Y ) = K (5) n i=1 h h where K is the kernel function, h is the bandwidth, and n are number of examples. We use a Gaussian kernel, and the bandwidth is chosen automatically by the Sheather-Jones selection rule. The reasons for choosing the non-parametric method over parametric Gaussian distributions is that there may be multiple modes in the class densities, which will not be properly modeled by a single-mode distribution like Gaussian distribution.

3. Experiments

is defined as: AP (A) =

3.1. Testbed, Classification Tasks, and Evaluation Metric We choose the video corpus of TRECVID 2003 [3] as the testbed in this paper. The corpus consist of broadcast news programs, including ABC, CNN, and C-SPAN news programs, and we can compare our results with participants in TRECVID because it has been an open contest of content-based video retrieval systems held by NIST since 2001. Among 17 video classification tasks in TRECVID 2003, two tasks, Sporting Events and Weather News, were hypothesized to contain strong timing cues, and chosen here to evaluate the effectiveness of different timing modeling techniques. The official definitions of these two tasks are listed as follows, Sporting Event shot contains video of one or more organized sporting events Weather News shot reports on the weather The basic statistics of these two tasks in the training and testing 1 set are listed in Table 1. C-SPAN data are not included because they contained no sporting events or weather news shots. Note that positive examples are very rare in the training data, around 1% in both tasks, which resulted in classifiers having difficulty modeling the concept. Set Training

Source ABC CNN

Testing

ABC CNN

Task Sporting Event Weather News Sporting Event Weather News Sporting Event Weather News Sporting Event Weather News

Positive 303 71 303 215 26 7 559 159

Total 25630 21696 16593 15282

Table 1. Basic statistics of two video classification tasks in the TRECVID 2003 video corpus TRECVID uses MAP (Mean Average Precision) as the evaluation metric, and we use the same metric in order to fairly compare with the TRECVID submissions in 2003. AP (Average Precision) of a rank list A 1 The

number of the positive examples in the testing set is underestimated because TREC used the pooling method to evaluate the rank lists submitted by participants. Only video shots that are officially evaluated as positive are counted here

1 X U + (d) + 1 |A+ | U (d) + 1 +

(6)

∀d∈A

where A+ is a set of all positive examples in A, U (d) is a function returning the number of examples ranked higher than the example d in A, and U + (d) is a function returning only the number of positive examples ranked higher than d. MAP takes the average of AP over a set of queries or tasks.

3.2. Modeling Class Densities The class densities p(X|Y ) estimated by kernel density estimation are plotted in Figure 2. Clearly the class densities are multi-modal distributions, which justifies our choice of a non-parametric estimation method. The estimated densities meet our expectations that weather news is usually presented in the first second of the news program, while sports news in second third of the program. However, the class densities are not totally the same, which implies we should model each channel separately instead of simply ignoring the news channel characteristics.

3.3. Classification Results Methods SVM (Full Training) Kernel Density (Full Training) SVM (Separate Training) Kernel Density (Separate Training) Random Baseline TRECVID’03 median TRECVID’03 best

Sporting Event 0.024 0.131 0.005 0.220

Weather News 0.009 0.567 0.002 0.807

0.022 0.152 0.708

0.008 0.417 0.856

Table 2. The experiment results of the classification tasks

The classification results using the timing features are shown in Table 2. The full training condition means we trained a classifier for the whole data collection, while in separate training we trained a classifier for each individual news channel, and merged the ranked lists using logistic regression as a global mapping function, described in [2]. The results strongly favor the generative model, and SVM breaks down and performs close to the random baseline. As described in previous section, it is very hard to do discriminative training like

5

3.0

Density

2

3

4

2.5 2.0 1.5

Density

1

1.0 0.5

0

0.0

0.0

0.2

0.4

0.6

0.8

1.0

0.0

0.2

Time offset

0.4

0.6

Time Offset

(b) Weather News in ABC

Density 0

0

2

5

4

Density

10

6

15

(a) Sporting Event in ABC

0.0

0.2

0.4

0.6

0.8

1.0

0.0

0.2

Time Offset

(c) Sporting Event in CNN

0.4

0.6

0.8

Time Offset

(d) Weather News in CNN

Figure 2. The estimated class densities p(X|Y ) SVM here when data are noisy or incomplete. Moreover, the performance of separate training runs is significantly better than that of full training, which is not surprising because, as shown in Figure 2, each news channel has very different timing profiles. Building a separate classifier for each individual news channel can capture the idiosyncrasies of each news channel, while full training totally ignores specific source characteristics at the expense of the classification performance. The performance of merging results from individual classifiers using kernel density outperforms the median performance of the TRECVID 2003 participants. While timing features can be extracted without any effort, it appears that timing features are still largely ignored, or cannot be easily leveraged because of the difficulty in discriminative learning.

4. Conclusions In well-structured video like broadcast news programs, timing features can provide strong cues for classifying specific types of video, but need to be carefully modeled. By modeling the class density in a nonparametric fashion, generative models is shown here to significantly outperform discriminative models when labeled data are incomplete and noisy.

References [1] N. Cristianini and J. Shawe-Taylor. An Introduction to Support Vector Machines. Cambridge University Press, 2000. [2] W.-H. Lin and A. Hauptmann. Merging rank lists from multiple sources in video classification. In Proceedings of the 2004 IEEE International Conference on Multimedia and Expo (ICME), Taipei, Taiwan, June 27-30 2004. [3] NIST. Guidelines for the TRECVID 2003 evaluation. Webpage, 2003. http://www-nlpir.nist.gov/ projects/tv2003/tv2003.html. [4] Y. D. Rubinstein and T. Hastie. Discriminative vs informative learning. In Proceeding of the Third International Conference on Knowledge Discovery and Data Mining (KDD), Newport Beach, CA, U.S.A., August 14-17 1997. [5] D. W. Scott. Multivariate Density Estimation: Theory, Practice, and Visualization. Wiley, New York, 1992.

Modeling Timing Features in Broadcast News ... - Semantic Scholar

{whlin, alex}@cs.cmu.edu. Abstract. Broadcast news programs are well-structured video, and timing can ... better performance than a discriminative classifier. 1.

130KB Sizes 2 Downloads 273 Views

Recommend Documents

Modeling Timing Features in Broadcast News ... - Semantic Scholar
School of Computer Science. Carnegie Mellon University. 5000 Forbes Avenue .... TRECVID'03 best. 0.708. 0.856. Table 2. The experiment results of the classi-.

Modeling Timing Features in Broadcast News Video ...
However, learning a classifier using ... While it is tempting to apply machine learning tech- nique to .... broadcast news programs, including ABC, CNN, and.

Broadcast Gossip Algorithms - Semantic Scholar
Email:{tca27,mey7,as337}@cornell.edu. Abstract—Motivated by applications to wireless sensor, peer- to-peer, and ad hoc networks, we study distributed ...

Disambiguating Toponyms in News - Semantic Scholar
merging information from two publicly available ... ited Washington last year” will need to be interpreted as a ... the degree of ambiguity of toponyms in a corpus.

Exposing Invisible Timing-based Traffic ... - Semantic Scholar
sible in many scenarios (e.g., a public Web server not controlled by the detection ..... Although, to our best knowledge, the types of traffic to which the existing.

The Timing of Conscious States - Semantic Scholar
Program in Philosophy, Neuroscience, and Psychology, Washington University in St. Louis; and Program in Philosophy and Concentration in Cognitive Science, Graduate Center,. City University of New ... Many cognitive and clinical findings.

Exposing Invisible Timing-based Traffic ... - Semantic Scholar
Permission to make digital or hard copies of all or part of this work for personal or ... lem, because they do not have a fixed signature. So far, only a few detection ...

ACOUSTIC MODELING IN STATISTICAL ... - Semantic Scholar
The code to test HMM-based SPSS is available online [61]. 3. ALTERNATIVE ..... Further progress in visualization of neural networks will be helpful to debug ...

ACOUSTIC MODELING IN STATISTICAL ... - Semantic Scholar
a number of natural language processing (NLP) steps, such as word ..... then statistics and data associated with the leaf node needs to be checked. On the other ...

Pseudo-spectral modeling in geodynamo - Semantic Scholar
Many stars and planets have magnetic fields. The heat flux causes 3D convection of plasma or metal, which can generate a large-scale magnetic field like that observed. The small-scale behavior, demonstrating self-similarity in a wide range of the spa

CAT News 34 - Semantic Scholar
Disclaimer: Material and geographic designations in Cat News do not represent any opinion .... house in Muri, a town on the outskirts of. Bern, close to the ..... tigers by selling them over the Internet. .... data will be analyzed using program CAP-

CAT News 34 - Semantic Scholar
year cycle of high and low numbers of the snowshoe ..... tigers by selling them over the Internet. According ..... Colorado. Samsudin, A.R., and S. Elagupillay. 1996. A review of the ..... length. To speed up screening, the preparation of contracts,.

Northern timing of deglaciation in the eastern ... - Semantic Scholar
Oct 22, 2008 - As a whole the data suggest that the alkenone method somewhat ..... THC can suppress ENSO by deepening the mean Pacific thermocline ...

Identifying News Videos' Ideological Perspectives ... - Semantic Scholar
Oct 24, 2009 - across news broadcasters. Ideology. Hours. News Broadcaster (Channel). American. 73. CNN (LV, AA), NBC (23, NW),. MSNBC (11, 13).

Identifying News Videos' Ideological Perspectives ... - Semantic Scholar
Oct 24, 2009 - School of Computer Science ..... ideological weights simultaneously from data. ..... politics have too little video data in the collection) and in-.

Early Experience with an Internet Broadcast ... - Semantic Scholar
lay parent changes over time, we direct the player to a fixed localhost:port URL which points to the overlay proxy run- ning at the same host. The overlay proxy handles all topol- ogy changes and sends data packets to the player as though it were a u

Timing properties of gene expression responses to ... - Semantic Scholar
Feb 7, 2009 - namic analysis for determining the quality of time-series expression profiles. Nature Biotechnology 23:1503–1508. [9] Storey J, Xiao W, Leek J, ...

Acoustic Modeling Using Exponential Families - Semantic Scholar
For general exponential models, there is no analytic solution for maximizing L(θ) and we use gradient based numerical op- timization methods. This requires us ...

Timing properties of gene expression responses to ... - Semantic Scholar
Feb 7, 2009 - Computer Science Department, Stanford University. Stanford ... tosolic ribosomal genes are only repressed after mitochondrial ribosome is ..... gene expression profile for three methods: polynomials of degree 2 and 3, and.

MODELING OF SPIRAL INDUCTORS AND ... - Semantic Scholar
50. 6.2 Inductor. 51. 6.2.1 Entering Substrate and Layer Technology Data. 52 ... Smith chart illustration the effect the of ground shield. 75 with the outer circle ...

MODELING OF SPIRAL INDUCTORS AND ... - Semantic Scholar
ground shield (all the coupling coefficients are not shown). 8. Lumped ... mechanisms modeled( all coupling coefficients not shown). 21. ...... PHP-10, June 1974,.

Affective Modeling from Multichannel Physiology - Semantic Scholar
1 School of Electrical and Information Engineering, University of Sydney, Australia ..... Andre, E.: Emotion Recognition Based on Physiological Changes in Music.

structured language modeling for speech ... - Semantic Scholar
20Mwds (a subset of the training data used for the baseline 3-gram model), ... it assigns probability to word sequences in the CSR tokenization and thus the ...

Nested Incremental Modeling in the Development ... - Semantic Scholar
lower threshold that people may use when reading aloud lists of nonwords only. ...... database (CD-ROM). Philadelphia, PA: Linguistic Data Consortium,.