#moviefights
Explore tagged Tumblr posts
clips-u-watch · 1 year ago
Text
The Karate Kid | Finds out
0 notes
aptcode-blog · 29 days ago
Text
Bollywood Movie Recommendations: Math vs. Machine Learning (Cosine Similarity in Action!)
Tumblr media
Bollywood Movie Recommendations: Math vs. AI (Cosine Similarity!) Problem Statement: With the ever-growing number of Bollywood movies, users often struggle to find films that match their preferences. Traditional recommendation methods, such as manual curation or simple genre-based filtering, fail to capture nuanced similarities between movies. This blog explores how mathematical approaches like Cosine Similarity and machine learning models can enhance Bollywood movie recommendations by analyzing factors such as genres, actors, directors, and user ratings. We aim to compare the effectiveness of both approaches in delivering accurate and personalized movie suggestions. Solving Bollywood Movie Recommendations Using Math (Cosine Similarity) We will calculate the similarity between two users' movie preferences step by step using pure math, without programming. Step 1: Define User Ratings as Vectors We represent user movie preferences as vectors in n-dimensional space (where each dimension represents a movie). Let's assume two viewers Dinesh & Jyoti watched movies (Fighter, Dunki ,Animal , Sam Bahadur and 12th Fail) and gave rating as below table. And based on this we want to recommend movies to another users Manish. MovieFighter (2024)Dunki (2023)Animal (2023)Sam Bahadur (2023)12th Fail (2023)Dinesh (A)54532Jyoti (B)43421 Dinesh → A = (5, 4, 5, 3, 2) - Called vector A Jyoti → B = (4, 3, 4, 2, 1) - Called vector B Step 2: Apply the Cosine Similarity Formula The formula for cosine similarity between two vectors A and B is: cos(θ) = (A ⋅ B) / (‖A‖ ⋅ ‖B‖) where: - A⋅B = Dot product of A and B - ∣∣A|| = Magnitude (length) of A - |B∣∣ = Magnitude (length) of B Step 3: Compute the Dot Product The dot product of two vectors is: Dinesh → A = (5, 4, 5, 3, 2) - vector A Jyoti → B = (4, 3, 4, 2, 1) - vector B A⋅B = (5×4)+(4×3)+(5×4)+(3×2)+(2×1) = 20+12+20+6+2=60 Step 4: Compute the Magnitudes The magnitude of a vector is: # Magnitude of vector A: ||A|| = sqrt(5² + 4² + 5² + 3² + 2²) = sqrt(25 + 16 + 25 + 9 + 4) = sqrt(79) ≈ 8.89 # Magnitude of vector B: ||B|| = sqrt(4² + 3² + 4² + 2² + 1²) = sqrt(16 + 9 + 16 + 4 + 1) = sqrt(46) ≈ 6.78 Step 5: Compute Cosine Similarity # Step 5: Compute Cosine Similarity cos(θ) = 60 / (8.89 × 6.78) = 60 / 60.3 ≈ 0.995 Step 6: Interpret the Result Since 0.995 is very close to 1, the two users have very similar movie tastes. 👉 If User 1 liked "Animal", it is very likely that User 2 will also like "Animal", so we recommend it to them. Conclusion: How We Solved This Using Math? - We represented user ratings as vectors. - Used cosine similarity formula. - Computed dot product and magnitudes. - Found a similarity of 0.995, meaning their movie tastes are very close. This is the core math behind Netflix & Prime Video recommendations! 🚀 Would you like me to extend this with real IMDb ratings or explore other machine learning metrics? 🎬 Solving Bollywood Movie Recommendations Using Programming Language Python (Cosine Similarity) from numpy import dot from numpy.linalg import norm # Movie ratings for Dinesh and Jyoti Dinesh = # Fighter, Dunki, Animal, Sam Bahadur, 12th Fail Jyoti = # Compute cosine similarity cosine_similarity = dot(Dinesh, Jyoti) / (norm(Dinesh) * norm(Jyoti)) print("Cosine Similarity:", cosine_similarity) Output : Cosine Similarity: 0.9953109657524404
Tumblr media
Why It’s Useful? If the similarity is close to 1, users have similar preferences, and we can recommend movies watched by one user to the other. Now you can see cosine similarity calculation is very easy programmatically. Now we can recommend similar movies to Manish. Conclusion: Bollywood Movie Recommendations Using Math & Machine Learning 🎬📊 In this example, we used mathematical metrics (cosine similarity) to analyze movie preferences and recommend Bollywood films based on user ratings. Key Takeaways: - Mathematics in Recommendations – By treating user movie ratings as vectors and applying cosine similarity, we measured how closely two users' preferences aligned. - Machine Learning in Action – In real-world applications, this concept extends to collaborative filtering in machine learning, where algorithms recommend movies based on patterns in user behavior. - Bollywood Movie Example – If two users rated movies like Animal (2023) and Dunki (2023) similarly, they are likely to enjoy similar future releases like Azaad (2025) or Deva (2025). - Scaling Up – In practical applications (Netflix, Prime Video), machine learning models process large datasets using deep learning (e.g., neural networks) for more accurate, personalized recommendations. By combining mathematical techniques with ML models, recommendation engines enhance user experience by suggesting the best movies based on real data. 🚀🍿 Justification of the Statement: "If two users rated movies like Animal (2023) and Dunki (2023) similarly, they are likely to enjoy similar future releases like Azaad (2025) or Deva (2025)." This statement is justified based on the principles of collaborative filtering and cosine similarity in machine learning and recommendation systems. Here’s why: 1️⃣ Concept of User Similarity in Recommendations - If User A and User B have rated movies like Animal (2023) and Dunki (2023) similarly, their preferences are likely aligned. - When a new movie (Azaad (2025) or Deva (2025)) is released, if one of them likes it, the other user is statistically likely to enjoy it too. This forms the basis of collaborative filtering, where recommendations are made based on patterns in user behavior. 2️⃣ Mathematical Justification: Cosine Similarity We can calculate cosine similarity between users' rating vectors: MovieAnimal (2023)Dunki (2023)Azaad (2025)Deva (2025)User A54??User B5454 If the similarity score (cosine similarity) between User A and User B is close to 1, then their future ratings for Azaad (2025) and Deva (2025) are likely to be very similar. 3️⃣ Real-World Examples: How Netflix and Amazon Prime Use This - Platforms like Netflix, Prime Video, and Hotstar use collaborative filtering + deep learning models to recommend content. - If you like action-thrillers (Animal), the system suggests similar highly-rated action movies (e.g., Deva). - If you like emotional or patriotic movies (Dunki), you may get recommendations for period dramas (Azaad). 4️⃣ Machine Learning Implementation In real-world ML models, we would use: ✅ Collaborative Filtering (User-User or Item-Item Similarity) ✅ Content-Based Filtering (Movie Genre, Cast, Director, etc.) ✅ Hybrid Models (Combining Both Approaches with Deep Learning) For example, a Neural Collaborative Filtering (NCF) model would predict ratings for Azaad (2025) or Deva (2025) based on historical data of similar users. Conclusion ✔️ If two users have similar past preferences, they are more likely to enjoy similar movies in the future. ✔️ This is the core principle behind movie recommendation engines used by Netflix, Prime Video, and YouTube. ✔️ Mathematical metrics (cosine similarity) + Machine Learning (collaborative filtering) provide accurate movie suggestions. Read the full article
0 notes
aroravicky · 6 years ago
Video
instagram
While Shooting for my Next with @pratiushmma & @force.square productions . Fight Design by #teamforcesquare . . . . . . . . . . . . . . #fightdesign #actiondesign #fightconcept #actionconcept #fightchoreography #forcesquare #fights #actionscene #actionscenes #stunt #moviefights #moviefight #martialartsincinema #martialartsindia #indianmartialarts #bollywoodaction #cinematography (at Andheri West) https://www.instagram.com/p/B1iQVvcnFkE/?igshid=s42dqub4mm6c
2 notes · View notes
Photo
Tumblr media
Who would win? A. Jean Claude Van Damme B. Steven Seagal I grew up watching and loving their movies. Comment below #whowouldwin #fight #moviefight #movies #moviefights #vandamme #jeanclaudevandamme #jcvd #stevenseagal #seagal #moviesgamesbeyond https://www.instagram.com/p/CFJ7cnWFXMv/?igshid=1chdv88smfws7
0 notes
movinghumor · 5 years ago
Photo
Tumblr media
Me:"I can remember this" . . . . . . . . . . #movieclips #movieworld #movieaction #movieactress #movieauditions #amovieposteraday #amovieaday #amovieguy #movieblog #moviebloopers #moviebay2 #moviedirectors #moviedialogue #movieeffectsvfx #movieedits #movieeffects #moviefans #moviefights #movieguns #moviegasm #moviehits #moviehotties #moviehitstrailer #moviehorror #moviekiss (at Los Angeles County, California) https://www.instagram.com/p/B5VRLRkFSa4/?igshid=17uy81ckohj9w
0 notes
zacharycoffin · 5 years ago
Photo
Tumblr media
The first movie i ever acted in was as an FBI Agent. A good cop! But then after that, it was allllll #evilwhiteguy -- I guess I can see why! 😂 . Pic from the excellent recent @force.square #ActionWorkshop 📸 @sartajsangha Join me for the next one in November? . . #actiontraining #stuntstraining #fighttraining #bollywoodaction #stuntsinindia #moviefights #forcesquare #actionworkshop #filmfighting ##forcesquare #teamforcesquare #actor #ZacharyCoffin (at Mumbai Movement Academy) https://www.instagram.com/p/B3JXEojp_Zz/?igshid=154899xm5hxzq
0 notes
vi-dan · 7 years ago
Photo
Tumblr media
Woah look at this sexy new gloves!!! Thanks to @urbntiger_com for those epic gifts!!! NEW videos are coming soon!! 😍😍😍 . . . . . #jcstuntteam #jackiechan #stuntteam #stunts #stuntman #stuntdouble #action #actionfilm #actionscene #fight #fightscene #martialarts #boxing #boxingtraining #boxinggloves #stuntfight #cosplay #wushu #kungfu #moviefight #fighting @legends_of_martial_arts @fighting_mix (hier: Düsseldorf, Germany) https://www.instagram.com/p/BnRXWjrF5OB/?utm_source=ig_tumblr_share&igshid=1gtevngis3374
2 notes · View notes
rlain-kholin · 8 years ago
Video
Having some fun for our day in LA before seeing #ScreenJunkies #Moviefights with @quesofundido4 (at Skyspace Los Angeles)
0 notes
aroravicky · 6 years ago
Photo
Tumblr media
It’s more fun when you’re not the only one having it. . . Great times at the Action Workshop by Team @force.square . . #actiontraining #fighttraining #combattraining #filmaction #stunttraining #fightdesign #weaponstraining #swordtraining #drills #combatdrills #cabletraining #moviefights #filmfighting #actionworkshop (at Mumbai, Maharashtra) https://www.instagram.com/p/B2dq_e_nK6k/?igshid=zt2b6gbjilg8
0 notes
hardcore-gaming-101 · 5 years ago
Audio
Lockdown Longplay - Spider-Man SNES (feat. Matt D. Wilson)
As a reward to all of us humans fighting for humanity by staying safe and staying home, HG101 brings you Spider-Man for the SNES, featuring special guest Matt D. Wilson (War Rocket Ajax, Moviefighters, Copernicus Jones Robot Detective) in this, the second thrilling episode of Lockdown Longplay!
1 note · View note
zacharycoffin · 6 years ago
Photo
Tumblr media
Can't remember if I landed on my feet! 🤪😂 But #best 😊 . Thanks-o-mucho to @vickyarora @alokpawaskar @aashiram @amitchaurasiya39 @sartajsangha & #teamforcesquare -- Reposted from @force.square (@get_regrann) - The only Impossible Journey is the one that you never Begin. . . Wire work at the ACTION WORKSHOP by #teamforcesquare . 📸 @sartajsangha . #cablestraining #wirework #actiontraining #stuntstraining #fighttraining #bollywoodaction #stuntsinindia #moviefights #forcesquare #actionworkshop #filmfighting #improv - #regrann #actor #ZacharyCoffin (at Mumbai Movement Academy) https://www.instagram.com/p/B2gmch4pKM0/?igshid=1ucutb1ly29ic
0 notes
vi-dan · 7 years ago
Video
#throwback a 20min choreo + shoot session for the AMAZING actress @svenja.jung ! She is a big timer now, she doesnt need a showreel anymore 😏 Fighters: @koahuynh @shawn_bu @pd.newgate @minn_huynh @st__na Shot on @ursamini #46 ! LOOK AT THE DYNAMIC RANGE 😱 . . . #jcstuntteam #jackiechan #stuntteam #stunts #stuntman #action #actionfilm #actionscene #fight #fightscene #martialarts #stuntfight #cosplay #wushu #kungfu #moviefight #fighting @martialarts_moviefights @wayofmartialarts @amc_tv @djiglobal @filmmakersworld @cameramayhem @cinematography.world @legends_of_martial_arts @fighting_mix @amc @martialartsincinema @maactioncinema #womanpower #womenfight #womanfighter @womanpower @fightingforfilm (hier: Cologne, Germany) https://www.instagram.com/p/BnBogwGFr3O/?utm_source=ig_tumblr_share&igshid=1p78sg3gbqczg
2 notes · View notes
oddspeechpatterns · 5 years ago
Text
So where’s the action moviefight scene set to Carol of the Bells??
1 note · View note
im-thinking-darbys · 6 years ago
Text
Just wanted to let @theisb and @superheroeswearingjackets know that when my brother asked me to pick a movie last night I chose Uncle Drew based on the @moviefighters recommendation and, despite neither of us not about basketball in the least, we both loved it and laughed our asses off
1 note · View note
rodprojects · 3 years ago
Video
Very short but very dynamic fighting video from stunt choreography training. #fight #fightstyl #martialartsfans #martialarts #kungfu #kungfustyle #fightingvideo #actionvideo #shorts #actingshorts #actionshirtfilm #actionshortmovie #actionshorts #coolvideo #awesomwvideo #amazingvideo #coolfightingchoreography #coolstuntchireograohy #stunttrainjng #stuntchoreography #fightchoreography #fingtpractice #fightworkout #onlyprofessionals #actionstyle #stuntstyle #freestylefight #streetfight #moviefight #filmfight (at Riverside Bangkok เรือสำราญ ห้องพัก เพื่อความสุขของคุณ) https://www.instagram.com/p/CZkD3yOBeMj/?utm_medium=tumblr
0 notes
dr0wwarr10r · 6 years ago
Text
@moviefighters @theisb I live in Oklahoma City, thunderstruck was produced by the Oklahoma City tourism board with taxpayer money. There is a lot of animosity towards KD here these days. And don’t forget they used to be the Seattle SuperSonics. FYI OKC is trying to get a NFL team now so here’s hoping for a sequel for you to watch in the near future.
0 notes