SlideShare a Scribd company logo
1 of 3
Download to read offline
IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308
__________________________________________________________________________________________
Volume: 03 Special Issue: 03 | May-2014 | NCRIET-2014, Available @ http://www.ijret.org 355
USING TRANSFER LEARNING FOR VIDEO POPULARITY
PREDICTION
Akshatha M R1
, Prathima V R2
1
PG Student, Dept. of Computer Science and Engineering, RGIT, Karnataka, India
2
Assistant Professor, Dept. of Computer Science and Engineering, RGIT, Karnataka, India
Abstract
Knowledge gained from social streams can be used to address many multimedia problems which cannot be solved by using traditional
multimedia techniques alone. Some portion of videos in video portals exhibit sudden (bursty) rise in popularity, an effect which is not
captured by video domain features alone Cross domain real-time transfer learning framework is used which utilizes knowledge from
social streams (e.g., Twitter) and improve popularity prediction in the video domain. OSLDA model is used to detect topics from
social streams [3]. Social Transfer algorithm is used for classifying videos with topics which is then used to calculate the social
prominence and finally leading to the improved popularity prediction in the video domain. The framework has the ability to scale with
incoming tweets in real time.
Keywords — Cross-domain media retrieval, Topic model, Twitter, Video popularity, YouTube
---------------------------------------------------------------------***---------------------------------------------------------------------
1. INTRODUCTION
Knowledge from social streams is used to solve many
multimedia problems that could not be solved only by using
traditional techniques. Social microblogs like Twitter is used
to capture real time events faster because of its short text
format [3]. Thus any real world event first originates in twitter
and then it is searched online, which finally leads to increased
views for videos related to that event.
Social streams and traditional media are unevenly distributed
on the internet depending on platform, popularity and bias [5].
Potential is limited within the domain where it resides. To
predict sudden rise in popularity of videos we need to
incorporate cross-domain information transfer mechanism
which transfers information gained from social streams
(Twitter) to video streams (YouTube).
There exist some challenges in performing cross-domain
popularity predictions using social streams.
 Knowledge cannot be directly transferred from one
domain to another because classification patterns and
data distributions are difficult among domains.
 It is challenging to extract relevant information from
social streams like Twitter because of its noisy and
short form nature.
 An algorithm which can scale to the real-time nature
of the social streams.
Social media from disparate sources on the internet can be
connected by building a common topic space. In particular
Twitter is considered as the social stream and videos collected
from a video search engine is considered to be social media in
this work. OSLDA model is used to extract and update topic
space in real time. Topic space acts like a bidirectional bridge
between the video domain and twitter domain. Social Transfer
algorithm allows for classifying videos with topics by using
topic space [7]. The algorithm also allows for continuos
updating the topic space and integration of fresh topics as
newer tweet is encountered. Social prominence of each topic
is calculated. Videos with social prominence will demonstrate
sudden/bursty rise in popularity.
2. SOCIAL TRANSFER
In Social Transfer, we have considered two datasets in the
target domain: the training data set with labels and the test
data set without labels which contains M and N instances
respectively. Source domain consist of auxiliary data set
which contains K tweets instances. The Single Transfer
framework used for this purpose is represented as a transfer
graph which is shown in fig 1. In cross-domain learning the
auxiliary data and the target data share the same categories but
are in different domains [4]. Cross domain learning to predict
video popularity includes following steps: ( A ) learning topics
from social streams ( B ) mapping the relationships among the
auxiliary and target data by constructing the transfer graph ( C
) online spectral learning of the transfer graph.
2.1 Learning Topics From Social Streams
OSLDA model is used to extract and learn topics from social
streams populate and update topics in the topic space scaling
with streaming tweets in real time. The reason behind building
a topic space is to construct a platform upon which multiple
IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308
__________________________________________________________________________________________
Volume: 03 Special Issue: 03 | May-2014 | NCRIET-2014, Available @ http://www.ijret.org 356
media applications can be forged. Topic space acts like a
bidirectional bridge between tweets and videos. OSLDA
model is used to enrich tweets with relevant video
recommendations and empowering videos with social
popularity estimated from social stream.
2.2 Transfer Graph
Transfer learning makes use of the available auxiliary data to
help the learning on the target data. Auxiliary data and the
target data share some common relations between them. We
can model the relations between auxiliary data and target data
by constructing a Transfer graph. The main purpose of transfer
graph is to capture the cross domain attributes of social
streams and videos in the transfer learning task. The transfer
graph G ( V , E ) consists of vertices representing instances,
features and labels while edges denotes the relations between
the end nodes, connecting the auxiliary and target data.
Fig-1: Transfer graph for social transfer
2.3 Spectral Learning of the Transfer Graph
Spectral analysis of the transfer graph G ( V, E ) is used to
extract eigen vectors, which combines the principal
component features from the training and auxiliary data.
Traditional spectral classification methods focused only on the
scenario that, the labeled data and the unlabeled data are
drawn from the same domain. But, unfortunately many
scenarios in the real world do not follow this requirement. In
many real world applications, we make use of the labeled data
from one domain to classify the unlabeled data in a different
domain. Obtaining labeled data in one domain is difficult
while there are plenty of labeled data from a related but
different domain [6]. Previous approaches in transfer learning
have suggested the use of normalized cut technique for eigen
vector extraction [4]. But, since the normalized cut technique
is incapable of scaling with the twitter stream, Power Iteration
technique can be used for eigen vector extraction [5]. Power
Iteration technique is very fast on large datasets, running over
1,000 times faster than an NCut technique [8].
The process of extracting eigen vectors from the Transfer
graph using Power Iteration technique is as shown in the fig 2.
To extract top q eigen vectors of the transfer graph G = ( V , E
), the graph must be converted into a Laplacian matrix. Since
the topics are updated with time, we need to progressively
incorporate these new topics into the transfer graph, which in
effect recalculates the weights of edge/path between the
features and the corresponding labels within the transfer
graph. Rank update on the Laplacian Matrix is performed
which adds negative weights between feature words that
belong to different topics and adds positive weights between
feature words that share the same topic. Rank update on the
Laplacian Matrix can improve eigenvector extraction speed by
spreading the eigen gap. Once the first q eigenvectors have
been found by iteratively using the Power Iteration technique,
we can form a combined feature representation that depends
on both the auxiliary data and the training data. Traditional
classification algorithm like SVM can then be used to train the
classifier and then classify the test data in the eigen feature
space.
3. SOCIAL POPULARITY
Social Transfer is used in Socialized Query Suggestion for
Video Searching and Video Recommendation [7]. Social
Transfer can also be used for predicting social popularity of
videos. The steps involved are: ( A ) finding social
prominence of a video and estimating trend aware popularity (
B ) predicting which videos will demonstrate bursty nature.
3.1 Finding Social Prominence and Estimating TAP
Trends remain socially prominent for a certain period of time,
after which they suffer inevitable decay. Finding social
prominence of a video requires calculating the trending score (
Tscore ) [5]. For some video v1, let a1 be the topic to which
the video has maximum membership. Using Social Transfer
Classification the membership measure can be easily
retrieved. Then the social prominence of video v1 is Tscore
a1.
Trend Aware Popularity ( TAP ) can be obtained by fusing
traditional popularity of a video ( based on its view counts )
and its social prominence. In a traditional video ranking
system like in You Tube, the videos in the recommended list
IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308
__________________________________________________________________________________________
Volume: 03 Special Issue: 03 | May-2014 | NCRIET-2014, Available @ http://www.ijret.org 357
get clicked more often resulting in subsequent higher view
counts for them [1]. Therefore it is reasonable to fuse social
prominence of a video with its traditional popularity. This
fusion of social prominence of the video and traditional
popularity factors like view counts is called TAP [2].
3.2 Predicting Bursty Videos
If a topic is trending in the social domain, then the video
belonging to the same topic will gain popularity in other
domains. TAP score reflects the social popularity as well as
the traditional popularity of a video. The ratio of TAP to the
Tscore value will give us the impact of the social signal in
boosting the video popularity. If the value obtained is low,
then the video has high impact of social prominence in
comparison to the adjusted view count score. Thus for a
certain video, if this ratio is significantly lower than for others,
we predict the video will gain bursty popularity.
Fig-2: The process of extracting eigen vectors from the
Transfer graph using Power Iteration technique.
4. CONCLUSIONS
This paper presents a novel cross-domain real time transfer
learning approach based on social streams called Social
Transfer. We demonstrate the use of Social learning in
predicting the video popularity. Social Transfer can be applied
to various multimedia applications which can be boosted by
the knowledge acquired from cross-domain social data. Video
only possesses tags entered by the user or extracted from the
title. Tag enrichment by visual object understanding or by
comment extraction will improve the prediction power of the
model.
REFERENCES
[1]. R. Zhou, S. Khemmarat, and L. Gao, “The impact of
youtube recommendation system on video views,” in Proc. Int.
Conf. Internet Measurement, 2010.
[2]. K. Filippova and K. B. Hall, “Improved video
categorization from text metadata and user comments,” in
Proc. ACM SIGIR Conf. Res. and Develop. in Inf. Retrieval,
2011.
[3]. S. D. Roy, T. Mei, W. Zeng, and S. Li, “Empowering
cross-domain Internet media with real-time topic learning
from social streams,” in Proc. IEEE Int. Conf. Multimedia and
Expo, 2012.
[4]. W. Dai, O. Jin, G. Xue, Q. Yang, and Y. Yu,
“Eigentransfer: a unified framework for transfer learning,” in
Proc. Int. Conf. Mach. Learning, 2009.
[5]. S. D. Roy, T. Mei, W. Zeng, and S. Li, “Towards cross-
domain learning for social video popularity prediction,” in
IEEE Transactions on multimedia, 2013.
[6]. X. Ling, W. Dai, G.-R. Xue, Q. Yang, and Y. Yu,
“Spectral domain transfer learning,” in Proc. ACM Conf.
Knowledge Discovery and Data Mining, 2008
[7]. S. R. Deb, T. Mei, W. Zeng, and S. Li, “Socialtransfer:
Cross-domain transfer learning from social streams for media
applications,” in Proc. ACM Multimedia, 2012.
[8]. F. Lin and W. W. Cohen, “Power iteration clustering,” in
Proc. Int. Conf. Mach. Learning, 2010.
[9]. [Online]. Available: http://trec.nist.gov/data/tweets/.

More Related Content

Viewers also liked

Efficient contrast enhancement using gamma correction with multilevel thresho...
Efficient contrast enhancement using gamma correction with multilevel thresho...Efficient contrast enhancement using gamma correction with multilevel thresho...
Efficient contrast enhancement using gamma correction with multilevel thresho...eSAT Publishing House
 
Geometric efficient matching algorithm for firewalls
Geometric efficient matching algorithm for firewallsGeometric efficient matching algorithm for firewalls
Geometric efficient matching algorithm for firewallseSAT Publishing House
 
The common challenges of mobile internet for up coming generation
The common challenges of mobile internet for up coming generationThe common challenges of mobile internet for up coming generation
The common challenges of mobile internet for up coming generationeSAT Publishing House
 
Effect of basic pretreatment on saccharification of
Effect of basic pretreatment on saccharification ofEffect of basic pretreatment on saccharification of
Effect of basic pretreatment on saccharification ofeSAT Publishing House
 
Global issue based power generation expansion planning for a power system
Global issue based power generation expansion planning for a power systemGlobal issue based power generation expansion planning for a power system
Global issue based power generation expansion planning for a power systemeSAT Publishing House
 
Irrational node detection in multihop cellular
Irrational node detection in multihop cellularIrrational node detection in multihop cellular
Irrational node detection in multihop cellulareSAT Publishing House
 
Optimization of process parameters for vinegar
Optimization of process parameters for vinegarOptimization of process parameters for vinegar
Optimization of process parameters for vinegareSAT Publishing House
 
Numerical study of natural convection in an enclosed
Numerical study of natural convection in an enclosedNumerical study of natural convection in an enclosed
Numerical study of natural convection in an enclosedeSAT Publishing House
 
Health portal an android smarter healthcare
Health portal an android smarter healthcareHealth portal an android smarter healthcare
Health portal an android smarter healthcareeSAT Publishing House
 
Performance analysis of aodv, olsr, grp and dsr routing
Performance analysis of aodv, olsr, grp and dsr routingPerformance analysis of aodv, olsr, grp and dsr routing
Performance analysis of aodv, olsr, grp and dsr routingeSAT Publishing House
 
Design analysis of the roll cage for all terrain
Design analysis of the roll cage for all   terrainDesign analysis of the roll cage for all   terrain
Design analysis of the roll cage for all terraineSAT Publishing House
 
Ontology based clustering in research project
Ontology based clustering in research projectOntology based clustering in research project
Ontology based clustering in research projecteSAT Publishing House
 
E hdas e- healthcare diagnosis & advisory system
E  hdas e- healthcare diagnosis & advisory systemE  hdas e- healthcare diagnosis & advisory system
E hdas e- healthcare diagnosis & advisory systemeSAT Publishing House
 
A comparative study of biometric authentication based
A comparative study of biometric authentication basedA comparative study of biometric authentication based
A comparative study of biometric authentication basedeSAT Publishing House
 
Constructive concepts for reducing wear caused by the
Constructive concepts for reducing wear caused by theConstructive concepts for reducing wear caused by the
Constructive concepts for reducing wear caused by theeSAT Publishing House
 
Fractals for complexity analysis of diabetic retinopathy in retinal vasculatu...
Fractals for complexity analysis of diabetic retinopathy in retinal vasculatu...Fractals for complexity analysis of diabetic retinopathy in retinal vasculatu...
Fractals for complexity analysis of diabetic retinopathy in retinal vasculatu...eSAT Publishing House
 
20160219 F. Malvestiti - DAL CARIOTIPO AL NGS: COME STA CAMBIANDO LA DIAGNOSI...
20160219 F. Malvestiti - DAL CARIOTIPO AL NGS: COME STA CAMBIANDO LA DIAGNOSI...20160219 F. Malvestiti - DAL CARIOTIPO AL NGS: COME STA CAMBIANDO LA DIAGNOSI...
20160219 F. Malvestiti - DAL CARIOTIPO AL NGS: COME STA CAMBIANDO LA DIAGNOSI...Roberto Scarafia
 
Performance of square footing resting on laterally confined sand
Performance of square footing resting on laterally confined sandPerformance of square footing resting on laterally confined sand
Performance of square footing resting on laterally confined sandeSAT Publishing House
 
Analysis of three dimensional couette flow and heat
Analysis of three dimensional couette flow and heatAnalysis of three dimensional couette flow and heat
Analysis of three dimensional couette flow and heateSAT Publishing House
 
Optimization of l asparaginase production by
Optimization of l asparaginase production byOptimization of l asparaginase production by
Optimization of l asparaginase production byeSAT Publishing House
 

Viewers also liked (20)

Efficient contrast enhancement using gamma correction with multilevel thresho...
Efficient contrast enhancement using gamma correction with multilevel thresho...Efficient contrast enhancement using gamma correction with multilevel thresho...
Efficient contrast enhancement using gamma correction with multilevel thresho...
 
Geometric efficient matching algorithm for firewalls
Geometric efficient matching algorithm for firewallsGeometric efficient matching algorithm for firewalls
Geometric efficient matching algorithm for firewalls
 
The common challenges of mobile internet for up coming generation
The common challenges of mobile internet for up coming generationThe common challenges of mobile internet for up coming generation
The common challenges of mobile internet for up coming generation
 
Effect of basic pretreatment on saccharification of
Effect of basic pretreatment on saccharification ofEffect of basic pretreatment on saccharification of
Effect of basic pretreatment on saccharification of
 
Global issue based power generation expansion planning for a power system
Global issue based power generation expansion planning for a power systemGlobal issue based power generation expansion planning for a power system
Global issue based power generation expansion planning for a power system
 
Irrational node detection in multihop cellular
Irrational node detection in multihop cellularIrrational node detection in multihop cellular
Irrational node detection in multihop cellular
 
Optimization of process parameters for vinegar
Optimization of process parameters for vinegarOptimization of process parameters for vinegar
Optimization of process parameters for vinegar
 
Numerical study of natural convection in an enclosed
Numerical study of natural convection in an enclosedNumerical study of natural convection in an enclosed
Numerical study of natural convection in an enclosed
 
Health portal an android smarter healthcare
Health portal an android smarter healthcareHealth portal an android smarter healthcare
Health portal an android smarter healthcare
 
Performance analysis of aodv, olsr, grp and dsr routing
Performance analysis of aodv, olsr, grp and dsr routingPerformance analysis of aodv, olsr, grp and dsr routing
Performance analysis of aodv, olsr, grp and dsr routing
 
Design analysis of the roll cage for all terrain
Design analysis of the roll cage for all   terrainDesign analysis of the roll cage for all   terrain
Design analysis of the roll cage for all terrain
 
Ontology based clustering in research project
Ontology based clustering in research projectOntology based clustering in research project
Ontology based clustering in research project
 
E hdas e- healthcare diagnosis & advisory system
E  hdas e- healthcare diagnosis & advisory systemE  hdas e- healthcare diagnosis & advisory system
E hdas e- healthcare diagnosis & advisory system
 
A comparative study of biometric authentication based
A comparative study of biometric authentication basedA comparative study of biometric authentication based
A comparative study of biometric authentication based
 
Constructive concepts for reducing wear caused by the
Constructive concepts for reducing wear caused by theConstructive concepts for reducing wear caused by the
Constructive concepts for reducing wear caused by the
 
Fractals for complexity analysis of diabetic retinopathy in retinal vasculatu...
Fractals for complexity analysis of diabetic retinopathy in retinal vasculatu...Fractals for complexity analysis of diabetic retinopathy in retinal vasculatu...
Fractals for complexity analysis of diabetic retinopathy in retinal vasculatu...
 
20160219 F. Malvestiti - DAL CARIOTIPO AL NGS: COME STA CAMBIANDO LA DIAGNOSI...
20160219 F. Malvestiti - DAL CARIOTIPO AL NGS: COME STA CAMBIANDO LA DIAGNOSI...20160219 F. Malvestiti - DAL CARIOTIPO AL NGS: COME STA CAMBIANDO LA DIAGNOSI...
20160219 F. Malvestiti - DAL CARIOTIPO AL NGS: COME STA CAMBIANDO LA DIAGNOSI...
 
Performance of square footing resting on laterally confined sand
Performance of square footing resting on laterally confined sandPerformance of square footing resting on laterally confined sand
Performance of square footing resting on laterally confined sand
 
Analysis of three dimensional couette flow and heat
Analysis of three dimensional couette flow and heatAnalysis of three dimensional couette flow and heat
Analysis of three dimensional couette flow and heat
 
Optimization of l asparaginase production by
Optimization of l asparaginase production byOptimization of l asparaginase production by
Optimization of l asparaginase production by
 

Similar to Using transfer learning for video popularity prediction

Automated Image Captioning – Model Based on CNN – GRU Architecture
Automated Image Captioning – Model Based on CNN – GRU ArchitectureAutomated Image Captioning – Model Based on CNN – GRU Architecture
Automated Image Captioning – Model Based on CNN – GRU ArchitectureIRJET Journal
 
Preliminry report
 Preliminry report Preliminry report
Preliminry reportJiten Ahuja
 
On the Influence Propagation of Web Videos
On the Influence Propagation of Web VideosOn the Influence Propagation of Web Videos
On the Influence Propagation of Web Videosabidhavp
 
SENTIMENT ANALYSIS OF SOCIAL MEDIA DATA USING DEEP LEARNING
SENTIMENT ANALYSIS OF SOCIAL MEDIA DATA USING DEEP LEARNINGSENTIMENT ANALYSIS OF SOCIAL MEDIA DATA USING DEEP LEARNING
SENTIMENT ANALYSIS OF SOCIAL MEDIA DATA USING DEEP LEARNINGIRJET Journal
 
Classification of Sentiment Analysis on Tweets Based on Techniques from Machi...
Classification of Sentiment Analysis on Tweets Based on Techniques from Machi...Classification of Sentiment Analysis on Tweets Based on Techniques from Machi...
Classification of Sentiment Analysis on Tweets Based on Techniques from Machi...IRJET Journal
 
Temporal Exploration in 2D Visualization of Emotions on Twitter Stream
Temporal Exploration in 2D Visualization of Emotions on Twitter StreamTemporal Exploration in 2D Visualization of Emotions on Twitter Stream
Temporal Exploration in 2D Visualization of Emotions on Twitter StreamTELKOMNIKA JOURNAL
 
IRJET- Foster Hashtag from Image and Text
IRJET-  	  Foster Hashtag from Image and TextIRJET-  	  Foster Hashtag from Image and Text
IRJET- Foster Hashtag from Image and TextIRJET Journal
 
IRJET- Twitter Sentimental Analysis for Predicting Election Result using ...
IRJET-  	  Twitter Sentimental Analysis for Predicting Election Result using ...IRJET-  	  Twitter Sentimental Analysis for Predicting Election Result using ...
IRJET- Twitter Sentimental Analysis for Predicting Election Result using ...IRJET Journal
 
YouTube Trending Video Dashboard
YouTube Trending Video DashboardYouTube Trending Video Dashboard
YouTube Trending Video DashboardIRJET Journal
 
Twitter Sentiment Analysis: An Unsupervised Approach
Twitter Sentiment Analysis: An Unsupervised ApproachTwitter Sentiment Analysis: An Unsupervised Approach
Twitter Sentiment Analysis: An Unsupervised ApproachIRJET Journal
 
Efficient and effective video sharing in online Social network using revocati...
Efficient and effective video sharing in online Social network using revocati...Efficient and effective video sharing in online Social network using revocati...
Efficient and effective video sharing in online Social network using revocati...IRJET Journal
 
SOFTWARE BASED CALCULATION OF CAPACITY OUTAGE OF GENERATING UNITS
SOFTWARE BASED CALCULATION OF CAPACITY OUTAGE OF GENERATING UNITSSOFTWARE BASED CALCULATION OF CAPACITY OUTAGE OF GENERATING UNITS
SOFTWARE BASED CALCULATION OF CAPACITY OUTAGE OF GENERATING UNITSvivatechijri
 
FACE EXPRESSION IDENTIFICATION USING IMAGE FEATURE CLUSTRING AND QUERY SCHEME...
FACE EXPRESSION IDENTIFICATION USING IMAGE FEATURE CLUSTRING AND QUERY SCHEME...FACE EXPRESSION IDENTIFICATION USING IMAGE FEATURE CLUSTRING AND QUERY SCHEME...
FACE EXPRESSION IDENTIFICATION USING IMAGE FEATURE CLUSTRING AND QUERY SCHEME...Editor IJMTER
 
Real Time Sign Language Translation Using Tensor Flow Object Detection
Real Time Sign Language Translation Using Tensor Flow Object DetectionReal Time Sign Language Translation Using Tensor Flow Object Detection
Real Time Sign Language Translation Using Tensor Flow Object DetectionIRJET Journal
 
benchmarking image retrieval diversification techniques for social media
benchmarking image retrieval diversification techniques for social mediabenchmarking image retrieval diversification techniques for social media
benchmarking image retrieval diversification techniques for social mediaVenkat Projects
 
IRJET- Cost Comparison of different Grid Patterns of Floor Slab of Same Span
IRJET- Cost Comparison of different Grid Patterns of Floor Slab of Same SpanIRJET- Cost Comparison of different Grid Patterns of Floor Slab of Same Span
IRJET- Cost Comparison of different Grid Patterns of Floor Slab of Same SpanIRJET Journal
 
IRJET - Gender and Age Prediction using Wideresnet Architecture
IRJET - Gender and Age Prediction using Wideresnet ArchitectureIRJET - Gender and Age Prediction using Wideresnet Architecture
IRJET - Gender and Age Prediction using Wideresnet ArchitectureIRJET Journal
 
Sentiment Analysis on Twitter data using Machine Learning
Sentiment Analysis on Twitter data using Machine LearningSentiment Analysis on Twitter data using Machine Learning
Sentiment Analysis on Twitter data using Machine LearningIRJET Journal
 

Similar to Using transfer learning for video popularity prediction (20)

Automated Image Captioning – Model Based on CNN – GRU Architecture
Automated Image Captioning – Model Based on CNN – GRU ArchitectureAutomated Image Captioning – Model Based on CNN – GRU Architecture
Automated Image Captioning – Model Based on CNN – GRU Architecture
 
Planetdata simpda
Planetdata simpdaPlanetdata simpda
Planetdata simpda
 
PlanetData: Consuming Structured Data at Web Scale
PlanetData: Consuming Structured Data at Web ScalePlanetData: Consuming Structured Data at Web Scale
PlanetData: Consuming Structured Data at Web Scale
 
Preliminry report
 Preliminry report Preliminry report
Preliminry report
 
On the Influence Propagation of Web Videos
On the Influence Propagation of Web VideosOn the Influence Propagation of Web Videos
On the Influence Propagation of Web Videos
 
SENTIMENT ANALYSIS OF SOCIAL MEDIA DATA USING DEEP LEARNING
SENTIMENT ANALYSIS OF SOCIAL MEDIA DATA USING DEEP LEARNINGSENTIMENT ANALYSIS OF SOCIAL MEDIA DATA USING DEEP LEARNING
SENTIMENT ANALYSIS OF SOCIAL MEDIA DATA USING DEEP LEARNING
 
Classification of Sentiment Analysis on Tweets Based on Techniques from Machi...
Classification of Sentiment Analysis on Tweets Based on Techniques from Machi...Classification of Sentiment Analysis on Tweets Based on Techniques from Machi...
Classification of Sentiment Analysis on Tweets Based on Techniques from Machi...
 
Temporal Exploration in 2D Visualization of Emotions on Twitter Stream
Temporal Exploration in 2D Visualization of Emotions on Twitter StreamTemporal Exploration in 2D Visualization of Emotions on Twitter Stream
Temporal Exploration in 2D Visualization of Emotions on Twitter Stream
 
IRJET- Foster Hashtag from Image and Text
IRJET-  	  Foster Hashtag from Image and TextIRJET-  	  Foster Hashtag from Image and Text
IRJET- Foster Hashtag from Image and Text
 
IRJET- Twitter Sentimental Analysis for Predicting Election Result using ...
IRJET-  	  Twitter Sentimental Analysis for Predicting Election Result using ...IRJET-  	  Twitter Sentimental Analysis for Predicting Election Result using ...
IRJET- Twitter Sentimental Analysis for Predicting Election Result using ...
 
YouTube Trending Video Dashboard
YouTube Trending Video DashboardYouTube Trending Video Dashboard
YouTube Trending Video Dashboard
 
Twitter Sentiment Analysis: An Unsupervised Approach
Twitter Sentiment Analysis: An Unsupervised ApproachTwitter Sentiment Analysis: An Unsupervised Approach
Twitter Sentiment Analysis: An Unsupervised Approach
 
Efficient and effective video sharing in online Social network using revocati...
Efficient and effective video sharing in online Social network using revocati...Efficient and effective video sharing in online Social network using revocati...
Efficient and effective video sharing in online Social network using revocati...
 
SOFTWARE BASED CALCULATION OF CAPACITY OUTAGE OF GENERATING UNITS
SOFTWARE BASED CALCULATION OF CAPACITY OUTAGE OF GENERATING UNITSSOFTWARE BASED CALCULATION OF CAPACITY OUTAGE OF GENERATING UNITS
SOFTWARE BASED CALCULATION OF CAPACITY OUTAGE OF GENERATING UNITS
 
FACE EXPRESSION IDENTIFICATION USING IMAGE FEATURE CLUSTRING AND QUERY SCHEME...
FACE EXPRESSION IDENTIFICATION USING IMAGE FEATURE CLUSTRING AND QUERY SCHEME...FACE EXPRESSION IDENTIFICATION USING IMAGE FEATURE CLUSTRING AND QUERY SCHEME...
FACE EXPRESSION IDENTIFICATION USING IMAGE FEATURE CLUSTRING AND QUERY SCHEME...
 
Real Time Sign Language Translation Using Tensor Flow Object Detection
Real Time Sign Language Translation Using Tensor Flow Object DetectionReal Time Sign Language Translation Using Tensor Flow Object Detection
Real Time Sign Language Translation Using Tensor Flow Object Detection
 
benchmarking image retrieval diversification techniques for social media
benchmarking image retrieval diversification techniques for social mediabenchmarking image retrieval diversification techniques for social media
benchmarking image retrieval diversification techniques for social media
 
IRJET- Cost Comparison of different Grid Patterns of Floor Slab of Same Span
IRJET- Cost Comparison of different Grid Patterns of Floor Slab of Same SpanIRJET- Cost Comparison of different Grid Patterns of Floor Slab of Same Span
IRJET- Cost Comparison of different Grid Patterns of Floor Slab of Same Span
 
IRJET - Gender and Age Prediction using Wideresnet Architecture
IRJET - Gender and Age Prediction using Wideresnet ArchitectureIRJET - Gender and Age Prediction using Wideresnet Architecture
IRJET - Gender and Age Prediction using Wideresnet Architecture
 
Sentiment Analysis on Twitter data using Machine Learning
Sentiment Analysis on Twitter data using Machine LearningSentiment Analysis on Twitter data using Machine Learning
Sentiment Analysis on Twitter data using Machine Learning
 

More from eSAT Publishing House

Likely impacts of hudhud on the environment of visakhapatnam
Likely impacts of hudhud on the environment of visakhapatnamLikely impacts of hudhud on the environment of visakhapatnam
Likely impacts of hudhud on the environment of visakhapatnameSAT Publishing House
 
Impact of flood disaster in a drought prone area – case study of alampur vill...
Impact of flood disaster in a drought prone area – case study of alampur vill...Impact of flood disaster in a drought prone area – case study of alampur vill...
Impact of flood disaster in a drought prone area – case study of alampur vill...eSAT Publishing House
 
Hudhud cyclone – a severe disaster in visakhapatnam
Hudhud cyclone – a severe disaster in visakhapatnamHudhud cyclone – a severe disaster in visakhapatnam
Hudhud cyclone – a severe disaster in visakhapatnameSAT Publishing House
 
Groundwater investigation using geophysical methods a case study of pydibhim...
Groundwater investigation using geophysical methods  a case study of pydibhim...Groundwater investigation using geophysical methods  a case study of pydibhim...
Groundwater investigation using geophysical methods a case study of pydibhim...eSAT Publishing House
 
Flood related disasters concerned to urban flooding in bangalore, india
Flood related disasters concerned to urban flooding in bangalore, indiaFlood related disasters concerned to urban flooding in bangalore, india
Flood related disasters concerned to urban flooding in bangalore, indiaeSAT Publishing House
 
Enhancing post disaster recovery by optimal infrastructure capacity building
Enhancing post disaster recovery by optimal infrastructure capacity buildingEnhancing post disaster recovery by optimal infrastructure capacity building
Enhancing post disaster recovery by optimal infrastructure capacity buildingeSAT Publishing House
 
Effect of lintel and lintel band on the global performance of reinforced conc...
Effect of lintel and lintel band on the global performance of reinforced conc...Effect of lintel and lintel band on the global performance of reinforced conc...
Effect of lintel and lintel band on the global performance of reinforced conc...eSAT Publishing House
 
Wind damage to trees in the gitam university campus at visakhapatnam by cyclo...
Wind damage to trees in the gitam university campus at visakhapatnam by cyclo...Wind damage to trees in the gitam university campus at visakhapatnam by cyclo...
Wind damage to trees in the gitam university campus at visakhapatnam by cyclo...eSAT Publishing House
 
Wind damage to buildings, infrastrucuture and landscape elements along the be...
Wind damage to buildings, infrastrucuture and landscape elements along the be...Wind damage to buildings, infrastrucuture and landscape elements along the be...
Wind damage to buildings, infrastrucuture and landscape elements along the be...eSAT Publishing House
 
Shear strength of rc deep beam panels – a review
Shear strength of rc deep beam panels – a reviewShear strength of rc deep beam panels – a review
Shear strength of rc deep beam panels – a revieweSAT Publishing House
 
Role of voluntary teams of professional engineers in dissater management – ex...
Role of voluntary teams of professional engineers in dissater management – ex...Role of voluntary teams of professional engineers in dissater management – ex...
Role of voluntary teams of professional engineers in dissater management – ex...eSAT Publishing House
 
Risk analysis and environmental hazard management
Risk analysis and environmental hazard managementRisk analysis and environmental hazard management
Risk analysis and environmental hazard managementeSAT Publishing House
 
Review study on performance of seismically tested repaired shear walls
Review study on performance of seismically tested repaired shear wallsReview study on performance of seismically tested repaired shear walls
Review study on performance of seismically tested repaired shear wallseSAT Publishing House
 
Monitoring and assessment of air quality with reference to dust particles (pm...
Monitoring and assessment of air quality with reference to dust particles (pm...Monitoring and assessment of air quality with reference to dust particles (pm...
Monitoring and assessment of air quality with reference to dust particles (pm...eSAT Publishing House
 
Low cost wireless sensor networks and smartphone applications for disaster ma...
Low cost wireless sensor networks and smartphone applications for disaster ma...Low cost wireless sensor networks and smartphone applications for disaster ma...
Low cost wireless sensor networks and smartphone applications for disaster ma...eSAT Publishing House
 
Coastal zones – seismic vulnerability an analysis from east coast of india
Coastal zones – seismic vulnerability an analysis from east coast of indiaCoastal zones – seismic vulnerability an analysis from east coast of india
Coastal zones – seismic vulnerability an analysis from east coast of indiaeSAT Publishing House
 
Can fracture mechanics predict damage due disaster of structures
Can fracture mechanics predict damage due disaster of structuresCan fracture mechanics predict damage due disaster of structures
Can fracture mechanics predict damage due disaster of structureseSAT Publishing House
 
Assessment of seismic susceptibility of rc buildings
Assessment of seismic susceptibility of rc buildingsAssessment of seismic susceptibility of rc buildings
Assessment of seismic susceptibility of rc buildingseSAT Publishing House
 
A geophysical insight of earthquake occurred on 21 st may 2014 off paradip, b...
A geophysical insight of earthquake occurred on 21 st may 2014 off paradip, b...A geophysical insight of earthquake occurred on 21 st may 2014 off paradip, b...
A geophysical insight of earthquake occurred on 21 st may 2014 off paradip, b...eSAT Publishing House
 
Effect of hudhud cyclone on the development of visakhapatnam as smart and gre...
Effect of hudhud cyclone on the development of visakhapatnam as smart and gre...Effect of hudhud cyclone on the development of visakhapatnam as smart and gre...
Effect of hudhud cyclone on the development of visakhapatnam as smart and gre...eSAT Publishing House
 

More from eSAT Publishing House (20)

Likely impacts of hudhud on the environment of visakhapatnam
Likely impacts of hudhud on the environment of visakhapatnamLikely impacts of hudhud on the environment of visakhapatnam
Likely impacts of hudhud on the environment of visakhapatnam
 
Impact of flood disaster in a drought prone area – case study of alampur vill...
Impact of flood disaster in a drought prone area – case study of alampur vill...Impact of flood disaster in a drought prone area – case study of alampur vill...
Impact of flood disaster in a drought prone area – case study of alampur vill...
 
Hudhud cyclone – a severe disaster in visakhapatnam
Hudhud cyclone – a severe disaster in visakhapatnamHudhud cyclone – a severe disaster in visakhapatnam
Hudhud cyclone – a severe disaster in visakhapatnam
 
Groundwater investigation using geophysical methods a case study of pydibhim...
Groundwater investigation using geophysical methods  a case study of pydibhim...Groundwater investigation using geophysical methods  a case study of pydibhim...
Groundwater investigation using geophysical methods a case study of pydibhim...
 
Flood related disasters concerned to urban flooding in bangalore, india
Flood related disasters concerned to urban flooding in bangalore, indiaFlood related disasters concerned to urban flooding in bangalore, india
Flood related disasters concerned to urban flooding in bangalore, india
 
Enhancing post disaster recovery by optimal infrastructure capacity building
Enhancing post disaster recovery by optimal infrastructure capacity buildingEnhancing post disaster recovery by optimal infrastructure capacity building
Enhancing post disaster recovery by optimal infrastructure capacity building
 
Effect of lintel and lintel band on the global performance of reinforced conc...
Effect of lintel and lintel band on the global performance of reinforced conc...Effect of lintel and lintel band on the global performance of reinforced conc...
Effect of lintel and lintel band on the global performance of reinforced conc...
 
Wind damage to trees in the gitam university campus at visakhapatnam by cyclo...
Wind damage to trees in the gitam university campus at visakhapatnam by cyclo...Wind damage to trees in the gitam university campus at visakhapatnam by cyclo...
Wind damage to trees in the gitam university campus at visakhapatnam by cyclo...
 
Wind damage to buildings, infrastrucuture and landscape elements along the be...
Wind damage to buildings, infrastrucuture and landscape elements along the be...Wind damage to buildings, infrastrucuture and landscape elements along the be...
Wind damage to buildings, infrastrucuture and landscape elements along the be...
 
Shear strength of rc deep beam panels – a review
Shear strength of rc deep beam panels – a reviewShear strength of rc deep beam panels – a review
Shear strength of rc deep beam panels – a review
 
Role of voluntary teams of professional engineers in dissater management – ex...
Role of voluntary teams of professional engineers in dissater management – ex...Role of voluntary teams of professional engineers in dissater management – ex...
Role of voluntary teams of professional engineers in dissater management – ex...
 
Risk analysis and environmental hazard management
Risk analysis and environmental hazard managementRisk analysis and environmental hazard management
Risk analysis and environmental hazard management
 
Review study on performance of seismically tested repaired shear walls
Review study on performance of seismically tested repaired shear wallsReview study on performance of seismically tested repaired shear walls
Review study on performance of seismically tested repaired shear walls
 
Monitoring and assessment of air quality with reference to dust particles (pm...
Monitoring and assessment of air quality with reference to dust particles (pm...Monitoring and assessment of air quality with reference to dust particles (pm...
Monitoring and assessment of air quality with reference to dust particles (pm...
 
Low cost wireless sensor networks and smartphone applications for disaster ma...
Low cost wireless sensor networks and smartphone applications for disaster ma...Low cost wireless sensor networks and smartphone applications for disaster ma...
Low cost wireless sensor networks and smartphone applications for disaster ma...
 
Coastal zones – seismic vulnerability an analysis from east coast of india
Coastal zones – seismic vulnerability an analysis from east coast of indiaCoastal zones – seismic vulnerability an analysis from east coast of india
Coastal zones – seismic vulnerability an analysis from east coast of india
 
Can fracture mechanics predict damage due disaster of structures
Can fracture mechanics predict damage due disaster of structuresCan fracture mechanics predict damage due disaster of structures
Can fracture mechanics predict damage due disaster of structures
 
Assessment of seismic susceptibility of rc buildings
Assessment of seismic susceptibility of rc buildingsAssessment of seismic susceptibility of rc buildings
Assessment of seismic susceptibility of rc buildings
 
A geophysical insight of earthquake occurred on 21 st may 2014 off paradip, b...
A geophysical insight of earthquake occurred on 21 st may 2014 off paradip, b...A geophysical insight of earthquake occurred on 21 st may 2014 off paradip, b...
A geophysical insight of earthquake occurred on 21 st may 2014 off paradip, b...
 
Effect of hudhud cyclone on the development of visakhapatnam as smart and gre...
Effect of hudhud cyclone on the development of visakhapatnam as smart and gre...Effect of hudhud cyclone on the development of visakhapatnam as smart and gre...
Effect of hudhud cyclone on the development of visakhapatnam as smart and gre...
 

Recently uploaded

notes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.pptnotes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.pptMsecMca
 
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXssuser89054b
 
Call Girls In Bangalore ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Bangalore ☎ 7737669865 🥵 Book Your One night StandCall Girls In Bangalore ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Bangalore ☎ 7737669865 🥵 Book Your One night Standamitlee9823
 
Hostel management system project report..pdf
Hostel management system project report..pdfHostel management system project report..pdf
Hostel management system project report..pdfKamal Acharya
 
University management System project report..pdf
University management System project report..pdfUniversity management System project report..pdf
University management System project report..pdfKamal Acharya
 
Standard vs Custom Battery Packs - Decoding the Power Play
Standard vs Custom Battery Packs - Decoding the Power PlayStandard vs Custom Battery Packs - Decoding the Power Play
Standard vs Custom Battery Packs - Decoding the Power PlayEpec Engineered Technologies
 
UNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its PerformanceUNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its Performancesivaprakash250
 
Double Revolving field theory-how the rotor develops torque
Double Revolving field theory-how the rotor develops torqueDouble Revolving field theory-how the rotor develops torque
Double Revolving field theory-how the rotor develops torqueBhangaleSonal
 
Employee leave management system project.
Employee leave management system project.Employee leave management system project.
Employee leave management system project.Kamal Acharya
 
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...roncy bisnoi
 
data_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdfdata_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdfJiananWang21
 
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756dollysharma2066
 
Design For Accessibility: Getting it right from the start
Design For Accessibility: Getting it right from the startDesign For Accessibility: Getting it right from the start
Design For Accessibility: Getting it right from the startQuintin Balsdon
 
Unit 1 - Soil Classification and Compaction.pdf
Unit 1 - Soil Classification and Compaction.pdfUnit 1 - Soil Classification and Compaction.pdf
Unit 1 - Soil Classification and Compaction.pdfRagavanV2
 
COST-EFFETIVE and Energy Efficient BUILDINGS ptx
COST-EFFETIVE  and Energy Efficient BUILDINGS ptxCOST-EFFETIVE  and Energy Efficient BUILDINGS ptx
COST-EFFETIVE and Energy Efficient BUILDINGS ptxJIT KUMAR GUPTA
 

Recently uploaded (20)

(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7
(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7
(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7
 
notes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.pptnotes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.ppt
 
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
 
Cara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak Hamil
Cara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak HamilCara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak Hamil
Cara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak Hamil
 
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort ServiceCall Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
 
Call Girls In Bangalore ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Bangalore ☎ 7737669865 🥵 Book Your One night StandCall Girls In Bangalore ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Bangalore ☎ 7737669865 🥵 Book Your One night Stand
 
Hostel management system project report..pdf
Hostel management system project report..pdfHostel management system project report..pdf
Hostel management system project report..pdf
 
University management System project report..pdf
University management System project report..pdfUniversity management System project report..pdf
University management System project report..pdf
 
(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7
(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7
(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7
 
Standard vs Custom Battery Packs - Decoding the Power Play
Standard vs Custom Battery Packs - Decoding the Power PlayStandard vs Custom Battery Packs - Decoding the Power Play
Standard vs Custom Battery Packs - Decoding the Power Play
 
UNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its PerformanceUNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its Performance
 
Double Revolving field theory-how the rotor develops torque
Double Revolving field theory-how the rotor develops torqueDouble Revolving field theory-how the rotor develops torque
Double Revolving field theory-how the rotor develops torque
 
Employee leave management system project.
Employee leave management system project.Employee leave management system project.
Employee leave management system project.
 
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
 
data_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdfdata_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdf
 
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
 
Design For Accessibility: Getting it right from the start
Design For Accessibility: Getting it right from the startDesign For Accessibility: Getting it right from the start
Design For Accessibility: Getting it right from the start
 
Water Industry Process Automation & Control Monthly - April 2024
Water Industry Process Automation & Control Monthly - April 2024Water Industry Process Automation & Control Monthly - April 2024
Water Industry Process Automation & Control Monthly - April 2024
 
Unit 1 - Soil Classification and Compaction.pdf
Unit 1 - Soil Classification and Compaction.pdfUnit 1 - Soil Classification and Compaction.pdf
Unit 1 - Soil Classification and Compaction.pdf
 
COST-EFFETIVE and Energy Efficient BUILDINGS ptx
COST-EFFETIVE  and Energy Efficient BUILDINGS ptxCOST-EFFETIVE  and Energy Efficient BUILDINGS ptx
COST-EFFETIVE and Energy Efficient BUILDINGS ptx
 

Using transfer learning for video popularity prediction

  • 1. IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308 __________________________________________________________________________________________ Volume: 03 Special Issue: 03 | May-2014 | NCRIET-2014, Available @ http://www.ijret.org 355 USING TRANSFER LEARNING FOR VIDEO POPULARITY PREDICTION Akshatha M R1 , Prathima V R2 1 PG Student, Dept. of Computer Science and Engineering, RGIT, Karnataka, India 2 Assistant Professor, Dept. of Computer Science and Engineering, RGIT, Karnataka, India Abstract Knowledge gained from social streams can be used to address many multimedia problems which cannot be solved by using traditional multimedia techniques alone. Some portion of videos in video portals exhibit sudden (bursty) rise in popularity, an effect which is not captured by video domain features alone Cross domain real-time transfer learning framework is used which utilizes knowledge from social streams (e.g., Twitter) and improve popularity prediction in the video domain. OSLDA model is used to detect topics from social streams [3]. Social Transfer algorithm is used for classifying videos with topics which is then used to calculate the social prominence and finally leading to the improved popularity prediction in the video domain. The framework has the ability to scale with incoming tweets in real time. Keywords — Cross-domain media retrieval, Topic model, Twitter, Video popularity, YouTube ---------------------------------------------------------------------***--------------------------------------------------------------------- 1. INTRODUCTION Knowledge from social streams is used to solve many multimedia problems that could not be solved only by using traditional techniques. Social microblogs like Twitter is used to capture real time events faster because of its short text format [3]. Thus any real world event first originates in twitter and then it is searched online, which finally leads to increased views for videos related to that event. Social streams and traditional media are unevenly distributed on the internet depending on platform, popularity and bias [5]. Potential is limited within the domain where it resides. To predict sudden rise in popularity of videos we need to incorporate cross-domain information transfer mechanism which transfers information gained from social streams (Twitter) to video streams (YouTube). There exist some challenges in performing cross-domain popularity predictions using social streams.  Knowledge cannot be directly transferred from one domain to another because classification patterns and data distributions are difficult among domains.  It is challenging to extract relevant information from social streams like Twitter because of its noisy and short form nature.  An algorithm which can scale to the real-time nature of the social streams. Social media from disparate sources on the internet can be connected by building a common topic space. In particular Twitter is considered as the social stream and videos collected from a video search engine is considered to be social media in this work. OSLDA model is used to extract and update topic space in real time. Topic space acts like a bidirectional bridge between the video domain and twitter domain. Social Transfer algorithm allows for classifying videos with topics by using topic space [7]. The algorithm also allows for continuos updating the topic space and integration of fresh topics as newer tweet is encountered. Social prominence of each topic is calculated. Videos with social prominence will demonstrate sudden/bursty rise in popularity. 2. SOCIAL TRANSFER In Social Transfer, we have considered two datasets in the target domain: the training data set with labels and the test data set without labels which contains M and N instances respectively. Source domain consist of auxiliary data set which contains K tweets instances. The Single Transfer framework used for this purpose is represented as a transfer graph which is shown in fig 1. In cross-domain learning the auxiliary data and the target data share the same categories but are in different domains [4]. Cross domain learning to predict video popularity includes following steps: ( A ) learning topics from social streams ( B ) mapping the relationships among the auxiliary and target data by constructing the transfer graph ( C ) online spectral learning of the transfer graph. 2.1 Learning Topics From Social Streams OSLDA model is used to extract and learn topics from social streams populate and update topics in the topic space scaling with streaming tweets in real time. The reason behind building a topic space is to construct a platform upon which multiple
  • 2. IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308 __________________________________________________________________________________________ Volume: 03 Special Issue: 03 | May-2014 | NCRIET-2014, Available @ http://www.ijret.org 356 media applications can be forged. Topic space acts like a bidirectional bridge between tweets and videos. OSLDA model is used to enrich tweets with relevant video recommendations and empowering videos with social popularity estimated from social stream. 2.2 Transfer Graph Transfer learning makes use of the available auxiliary data to help the learning on the target data. Auxiliary data and the target data share some common relations between them. We can model the relations between auxiliary data and target data by constructing a Transfer graph. The main purpose of transfer graph is to capture the cross domain attributes of social streams and videos in the transfer learning task. The transfer graph G ( V , E ) consists of vertices representing instances, features and labels while edges denotes the relations between the end nodes, connecting the auxiliary and target data. Fig-1: Transfer graph for social transfer 2.3 Spectral Learning of the Transfer Graph Spectral analysis of the transfer graph G ( V, E ) is used to extract eigen vectors, which combines the principal component features from the training and auxiliary data. Traditional spectral classification methods focused only on the scenario that, the labeled data and the unlabeled data are drawn from the same domain. But, unfortunately many scenarios in the real world do not follow this requirement. In many real world applications, we make use of the labeled data from one domain to classify the unlabeled data in a different domain. Obtaining labeled data in one domain is difficult while there are plenty of labeled data from a related but different domain [6]. Previous approaches in transfer learning have suggested the use of normalized cut technique for eigen vector extraction [4]. But, since the normalized cut technique is incapable of scaling with the twitter stream, Power Iteration technique can be used for eigen vector extraction [5]. Power Iteration technique is very fast on large datasets, running over 1,000 times faster than an NCut technique [8]. The process of extracting eigen vectors from the Transfer graph using Power Iteration technique is as shown in the fig 2. To extract top q eigen vectors of the transfer graph G = ( V , E ), the graph must be converted into a Laplacian matrix. Since the topics are updated with time, we need to progressively incorporate these new topics into the transfer graph, which in effect recalculates the weights of edge/path between the features and the corresponding labels within the transfer graph. Rank update on the Laplacian Matrix is performed which adds negative weights between feature words that belong to different topics and adds positive weights between feature words that share the same topic. Rank update on the Laplacian Matrix can improve eigenvector extraction speed by spreading the eigen gap. Once the first q eigenvectors have been found by iteratively using the Power Iteration technique, we can form a combined feature representation that depends on both the auxiliary data and the training data. Traditional classification algorithm like SVM can then be used to train the classifier and then classify the test data in the eigen feature space. 3. SOCIAL POPULARITY Social Transfer is used in Socialized Query Suggestion for Video Searching and Video Recommendation [7]. Social Transfer can also be used for predicting social popularity of videos. The steps involved are: ( A ) finding social prominence of a video and estimating trend aware popularity ( B ) predicting which videos will demonstrate bursty nature. 3.1 Finding Social Prominence and Estimating TAP Trends remain socially prominent for a certain period of time, after which they suffer inevitable decay. Finding social prominence of a video requires calculating the trending score ( Tscore ) [5]. For some video v1, let a1 be the topic to which the video has maximum membership. Using Social Transfer Classification the membership measure can be easily retrieved. Then the social prominence of video v1 is Tscore a1. Trend Aware Popularity ( TAP ) can be obtained by fusing traditional popularity of a video ( based on its view counts ) and its social prominence. In a traditional video ranking system like in You Tube, the videos in the recommended list
  • 3. IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308 __________________________________________________________________________________________ Volume: 03 Special Issue: 03 | May-2014 | NCRIET-2014, Available @ http://www.ijret.org 357 get clicked more often resulting in subsequent higher view counts for them [1]. Therefore it is reasonable to fuse social prominence of a video with its traditional popularity. This fusion of social prominence of the video and traditional popularity factors like view counts is called TAP [2]. 3.2 Predicting Bursty Videos If a topic is trending in the social domain, then the video belonging to the same topic will gain popularity in other domains. TAP score reflects the social popularity as well as the traditional popularity of a video. The ratio of TAP to the Tscore value will give us the impact of the social signal in boosting the video popularity. If the value obtained is low, then the video has high impact of social prominence in comparison to the adjusted view count score. Thus for a certain video, if this ratio is significantly lower than for others, we predict the video will gain bursty popularity. Fig-2: The process of extracting eigen vectors from the Transfer graph using Power Iteration technique. 4. CONCLUSIONS This paper presents a novel cross-domain real time transfer learning approach based on social streams called Social Transfer. We demonstrate the use of Social learning in predicting the video popularity. Social Transfer can be applied to various multimedia applications which can be boosted by the knowledge acquired from cross-domain social data. Video only possesses tags entered by the user or extracted from the title. Tag enrichment by visual object understanding or by comment extraction will improve the prediction power of the model. REFERENCES [1]. R. Zhou, S. Khemmarat, and L. Gao, “The impact of youtube recommendation system on video views,” in Proc. Int. Conf. Internet Measurement, 2010. [2]. K. Filippova and K. B. Hall, “Improved video categorization from text metadata and user comments,” in Proc. ACM SIGIR Conf. Res. and Develop. in Inf. Retrieval, 2011. [3]. S. D. Roy, T. Mei, W. Zeng, and S. Li, “Empowering cross-domain Internet media with real-time topic learning from social streams,” in Proc. IEEE Int. Conf. Multimedia and Expo, 2012. [4]. W. Dai, O. Jin, G. Xue, Q. Yang, and Y. Yu, “Eigentransfer: a unified framework for transfer learning,” in Proc. Int. Conf. Mach. Learning, 2009. [5]. S. D. Roy, T. Mei, W. Zeng, and S. Li, “Towards cross- domain learning for social video popularity prediction,” in IEEE Transactions on multimedia, 2013. [6]. X. Ling, W. Dai, G.-R. Xue, Q. Yang, and Y. Yu, “Spectral domain transfer learning,” in Proc. ACM Conf. Knowledge Discovery and Data Mining, 2008 [7]. S. R. Deb, T. Mei, W. Zeng, and S. Li, “Socialtransfer: Cross-domain transfer learning from social streams for media applications,” in Proc. ACM Multimedia, 2012. [8]. F. Lin and W. W. Cohen, “Power iteration clustering,” in Proc. Int. Conf. Mach. Learning, 2010. [9]. [Online]. Available: http://trec.nist.gov/data/tweets/.