
Closed
Posted
Hi — I have an existing SaaS product called Northquill.ai. Northquill takes an existing PowerPoint presentation plus narration and creates a finished narrated MP4. The particularly important use case is NOT AI-generated narration. It is taking one existing continuous long-form recording and automatically determining when the presentation should advance through the original slides. My real-world stress test is approximately: - 4 hours of continuous existing narration - roughly 150 PowerPoint slides - no existing timestamp map Northquill already has an AI alignment/review workflow, but it consistently fails at this scale. The biggest problems are: - suggested timings lean heavily toward approximately equal splitting of the total audio across the slides; - the AI does not understand the semantic relationship between narration and individual slides well enough; - some slides may legitimately remain on screen for seconds while others may remain for several minutes; - the slide thumbnails in the existing review interface are currently failing to load; - the review step exists, but too many of the AI recommendations need correction. I do NOT want a simple improvement to the equal-duration heuristic or an LLM guessing timestamps. I believe this is closer to a monotonic multimodal sequence-alignment problem. A potential architecture would involve: PowerPoint slide text / notes / visual concepts + WhisperX or equivalent word-level transcription / forced alignment + semantic matching between transcript sections and slides + high-confidence anchor detection + ordered/monotonic sequence alignment across the full deck + natural sentence / pause / silence boundary detection + confidence scoring + human review only for uncertain transitions + a deterministic timing map used for the final video render. The original continuous audio should ideally remain intact. The output of the alignment system should primarily be accurate slide-change events rather than 150 separately cut audio files. I am looking for someone to review the EXISTING Northquill codebase rather than rebuild the product from scratch. For a first paid milestone, I would like to: 1. Review the current architecture and identify why its recommendations gravitate toward equal duration. 2. Diagnose the broken slide thumbnails/review UI. 3. Run the real ~4-hour / ~150-slide dataset through an improved alignment approach. 4. Compare the proposed slide boundaries to manually established correct transitions. 5. Produce a recommendation and proof of concept before making larger architectural changes. The goal is that Northquill should do the hard alignment itself, with the human review step correcting exceptions rather than manually rebuilding the timeline. If you were approaching this problem, I would especially like to hear how you would solve the long-sequence semantic alignment portion rather than simply which AI APIs you would use.
Project ID: 40685106
133 proposals
Remote project
Active 9 hours ago
Set your budget and timeframe
Get paid for your work
Outline your proposal
It's free to sign up and bid on jobs
133 freelancers are bidding on average $35 USD/hour for this job

Hello, I trust you're doing well. I am well experienced in machine learning algorithms, with nearly a decade of hands-on practice. My expertise lies in developing various artificial intelligence algorithms, including the one you require, using Python, and similar tools. I have worked with pytorch, and tensorflow to develop DL models, .I hold a doctorate from Tohoku University and have a number of publications in the same subject. My portfolio, which showcases my past work, is available for your review. Your project piqued my interest, and I would be delighted to be part of it. Let's connect to discuss in detail. Warm regards. please check my portfolio link: https://www.freelancer.com/u/sajjadtaghvaeifr
$35 USD in 40 days
7.2
7.2

Hi. You’re dealing with a drift issue common in sequence alignment where the model defaults to a uniform distribution because it lacks global temporal constraints. I can refactor your alignment logic to enforce monotonicity while maintaining semantic coherence. I recently solved a similar synchronization task for a video-based pattern recognition system by implementing Dynamic Time Warping (DTW) constrained by a semantic cost matrix. Instead of simple LLM guessing, I would use **cross-modal embeddings (CLIP/WhisperX)** to generate a similarity matrix between slide content and audio segments, then apply a Viterbi algorithm to find the optimal path. This ensures slide transitions align with natural sentence boundaries rather than arbitrary time splits. Are you using a vector database for slide-to-audio semantic lookups, or is the current implementation purely heuristic-based?
$30 USD in 7 days
6.1
6.1

As an experienced designer with over 6+ years in the field, my creativity and skills in animation and video editing would put me at the right position to take on this project. I understand that the most crucial aspect of your project lies within refining the alignment between your narration and slides. And, it needs a sophisticated approach beyond mere API use. I assure you of just that. In reviewing your Northquill codebase, I will devote enough attention to understand why the recommended timings gravitate towards equal duration, as well as diagnose and fix the problem with slide thumbnails and review UI. My goal is to reimagine and align your existing architecture to allow for a more efficient process that can handle the big dataset you've described while delivering accurate slide-change events. At each stage, I would make sure to compare our proposed slide boundaries with manually established correct transitions for accuracy. Furthermore, leveraging advanced techniques such as semantic matching, high-confidence anchor detection and deterministic timing maps would be key components in my approach to optimize sequence alignment and maintain the integrity of the original audio continuousity. Rest assured, I am driven by client satisfaction; therefore, my 100% commitment will be deployed to ensure your project receives not only an upgrade but a dependable architectural change sould your feedback indicate it's necessary.
$25 USD in 1 day
6.0
6.0

Hello!, I am a Florida-based senior software engineer, and I’d love to help refine the AI alignment in Northquill.ai. From your description, the main issue is likely not adding more AI, but making the current system follow the right intent, stay on-brand, and produce consistent results inside your SaaS flow. My approach would be simple and tactical: review the current PowerPoint intake and AI pipeline, find where the alignment drifts, tighten the prompt/model logic and validation rules, then test it against real examples until the output is stable and predictable. I’m very detail-focused with AI systems, so I pay attention to the things that usually get missed: prompt structure, edge cases, response quality, and how the AI fits the product experience. That’s usually what separates a working demo from something you can actually ship with confidence. A few relevant examples of work I’ve done: - AI workflow tool for internal document processing - SaaS dashboard with LLM-assisted content generation - Automation system for structured data extraction and review - Product recommendation engine integrated into an e-commerce app Quick questions: 1) What exactly is misaligned today: tone, structure, content accuracy, or all three? 2) Do you want only the AI logic improved, or also the surrounding SaaS flow and validation? 3) Do you have a few good and bad sample outputs I can compare against? If you want, I can start by diagnosing the current flow and telling you exactly where
$50 USD in 4 days
5.6
5.6

Equal-duration drift across 150 slides and 4 hours of narration usually means the system is over-weighting deck length and under-weighting anchor evidence from the transcript. I’d approach this as an ordered alignment problem: extract slide text/notes/visual cues, generate word-level timing, detect strong semantic anchors, then run a monotonic alignment pass with pause/sentence boundaries and confidence scoring instead of letting an LLM “guess” transitions. I’ve worked on AI workflow debugging, review-layer fixes, and sequence-matching problems where the real issue was not model access but weak alignment logic between long-form source material and structured targets. Your thumbnail failure and over-correction review step also suggest there may be both pipeline and UI-state issues worth tracing together instead of treating them as separate bugs. A small proof layer I’d include is transition-confidence tagging so human review is focused only where the alignment is uncertain. - Is the current codebase primarily Python on the backend, and what stack is driving the review UI? - Do you already have one manually corrected 4-hour/150-slide ground-truth sample available for boundary comparison? - Is slide text/notes extraction already implemented, or is that part of what is currently weakening alignment?
$25 USD in 40 days
5.5
5.5

With more than 16 years of experience in various domains, my expertise offers a unique blend primed for solving complex tasks like Northquill synchronization. Having immersed myself in AI Model Development, machine learning (ML), and video editing across numerous projects, I fully comprehend the nuances of multimodal sequence alignment problems that your project entails. I won't resort to simple improvements like equal-duration heuristics or LLM guessing timestamps; instead, I will creatively combine a range of approaches for pinpoint accuracy. My contributions don't end with improved alignment algorithms. Diagnosing and fixing the broken slide thumbnails and revamping the review UI are equally crucial parts I'm adept at handling. Drawing from my strong foundation in technical writing and software development, I will navigate your existing codebase diligently to identify all shortcomings before proceeding towards bigger architectural changes. In addition to my technical proficiency, my communication skills and linguistic versatility make me a well-rounded candidate. This is particularly relevant because I understand this task demands more than just knowledge of AI APIs — it calls for fresh ideas on solving the long-sequence semantic alignment part. Choosing me would mean gaining an efficient collaborator who can transform your requirements into results with precision and creativity.
$25 USD in 40 days
4.6
4.6

Equal-duration drift usually means the scorer is falling back to a prior when semantic similarity is weak across long spans, so the aligner has nothing to anchor on. I'd run WhisperX word-level output against per-slide text plus notes and visual OCR, embed both, then solve it as a monotonic DTW over similarity scores with high-confidence anchors pinned first and low-confidence gaps flagged for review. Thumbnail failure is likely a stale render path or CORS on the asset URL, quick to isolate once I see the repo. I can jump in straight away. 1. What's the current backend stack and where does slide text/notes extraction happen today? 2. Do you already have a manually corrected ground-truth timing map for the 4-hour deck I can score against? Looking forward to it. Shayan
$34 USD in 40 days
4.5
4.5

Hello, I’ve read your details and clearly understand that you are looking for monotonic semantic alignment across 4 hours of narration and 150 slides, accurate transition detection, and a reliable review workflow rather than equal-duration splitting or LLM timestamp guessing. This is absolutely doable for me, let's chat and take this forward. My approach is to audit the existing Northquill pipeline, then use WhisperX word-level timestamps with slide text, notes, and visual embeddings to build anchor candidates and solve the full deck as a constrained monotonic sequence-alignment problem. I’ll combine semantic similarity, anchor confidence, sentence boundaries, pauses, and silence detection to produce deterministic slide-change events while preserving the original audio. I’ll also diagnose the thumbnail issue and validate the approach against your manually established transitions. As final deliverables you will receive the architecture diagnosis, thumbnail/review UI fix, improved alignment proof of concept, deterministic timing map, confidence scoring, comparison against correct boundaries, and recommendations for the larger architectural changes. One thing I'd like to confirm before we start: will you provide the manually verified transition map for the 4-hour test dataset as the ground truth for evaluation? Let's have a quick chat and I can walk you through the alignment strategy. Best Regards, Imran
$25 USD in 40 days
4.3
4.3

I understand Northquill's goal: move beyond equal-duration timing for a 4-hour narration across ~150 slides, preserving the original audio and enabling hands-off alignment with human review for only edge cases. My approach combines deep multimodal alignment with a robust review UI fix and a clear PoC path. - Architecture review to diagnose why the current system converges on uniform timing and identify data flow bottlenecks in the alignment and review pipeline. - Monotonic, multimodal alignment: fuse slide text/notes/visual concepts with word-level transcription via forced alignment, then perform semantic matching to boundaries and anchor high-confidence transitions. - Deterministic timing map generation that maintains audio integrity, uses confidence scoring, and minimizes unnecessary segmentation. Human review targets only uncertain transitions. - UI reliability: diagnose thumbnail loading, stabilize the review interface, and ensure deterministic state for faster validation. - PoC plan: run the ~4h/150-slide dataset, compare proposed boundaries to ground-truth transitions, and deliver a concrete architectural recommendation plus a proof of concept. Deliverables: architecture review report, fixed UI reproducibility steps, PoC alignment script with sample results, and a concrete rollout plan. Budget: $0 (auto-pricing constraints). Timeline: 2-3 weeks for a working PoC with evaluation milestones. Portfolio reference: https://www.freelancer.com/u/zarminagull189 , samples
$25 USD in 27 days
3.7
3.7

Hi I would be happy to assist with Refine AI Alignment in Northquill Platform. My expertise covers AI automation, AI Agents, workflow optimization, chatbot development, OpenAI integrations, n8n automation, and custom business solutions. I focus on delivering cost-effective and scalable systems that reduce manual effort and increase operational efficiency. Every solution is tailored to meet specific business requirements and objectives. I look forward to learning more about your project. Best Regards, Naseeb A.
$25 USD in 36 days
3.5
3.5

The biggest problem is splitting long narration across many slides; the AI suggests timings that are too even. I would build this using Python, likely with libraries like Librosa for audio analysis and potentially a pre-trained speech recognition model, perhaps Whisper if accuracy is paramount. I'd segment the audio based on pauses and speech rate, then map these segments to slide transitions. The goal is to identify natural breaks in the narration that correspond to a shift in topic or visual focus. I will assume that "AI alignment" here means aligning the audio cues to the presentation slides, not aligning AI behavior to human values. What is the desired accuracy for slide transition points? Send an invite to discuss the approach further. 8 reviews on here, everything delivered on time and on the agreed price so far, plus Preferred Freelancer status.
$42 USD in 7 days
3.4
3.4

Hi there, we have recently completed a similar project and would love to share some references. Your project on refining AI alignment for Northquill sounds right up our alley, and we would love to exceed your expectations. Understanding the need for precise slide transitions and effective semantic matching is crucial. We have multiple 5-star reviews on similar projects and rank in the top 1% among 75 million users! Our approach will focus on developing a robust alignment solution that respects the natural flow of your existing audio while enhancing the accuracy of slide transitions. While we might be new to Freelancer, we have over 9 years of experience off-site, and I truly appreciate you taking your time to review our proposal. I would love to discuss this project more. Kind regards, Trichelle
$35 USD in 14 days
3.5
3.5

Hello!! The project goal is to refine and align the Northquill platform so the existing AI/model functionality, application workflow, and user experience work together consistently and reliably. The focus will be on improving the current implementation rather than unnecessarily rebuilding working components. * What parts of the current Northquill platform need the most refinement or alignment? * Which AI/model components and APIs are already integrated? * Do you have specific bugs, accuracy issues, or workflow mismatches that should be addressed first? The work can include reviewing the existing architecture, refining AI/model behavior, improving prompts and data flow, fixing integration issues, aligning frontend and backend workflows, improving validation and error handling, and testing the complete user journey. Existing functionality will be preserved wherever possible. Relevant AI-powered platforms have been worked on with LLM integrations, API-driven workflows, structured data processing, RAG, backend services, and production-focused testing. Let us chat and review the current Northquill implementation and priorities so we can make the platform more stable, consistent, and ready for the next stage. Best regards Farhin B
$26 USD in 40 days
3.8
3.8

Hi, I can help improve Northquill’s existing alignment pipeline without rebuilding the product. I’d approach this as a monotonic multimodal sequence-alignment problem: extract slide text/notes and visual features, generate word-level WhisperX alignment, identify high-confidence semantic anchors, then use ordered sequence alignment with sentence/pause boundaries to determine slide transitions. Each transition would receive a confidence score, with human review focused only on uncertain sections. I can also diagnose the thumbnail/review UI issue and benchmark the approach against your real 4-hour/150-slide dataset in the first milestone. This would give you a deterministic timing map while keeping the original continuous audio intact.
$25 USD in 40 days
3.3
3.3

Slide-to-audio alignment is a monotonic sequence problem — I’d solve it with WhisperX forced alignment + TF-IDF/sentence-transformer semantic matching + DTW-based monotonic path finding, not an LLM guessing timestamps. Hi, The equal-duration bias is a classic symptom of treating alignment as a classification problem instead of a sequence alignment problem. My approach for the 4hr/150-slide case: • WhisperX for word-level timestamps + silence/pause boundary detection • Sentence-transformer embeddings for slide content vs transcript segments • Monotonic DTW or Needleman-Wunsch to enforce ordered, non-backtracking alignment • Anchor detection at high-confidence matches to constrain the search space for uncertain regions • Confidence scoring to surface only low-confidence transitions for human review Phase 1 (fixed milestone): Codebase audit → root cause of equal-duration bias + broken thumbnails diagnosis → POC alignment run on your 4hr dataset → comparison against your manually correct transitions. Timeline: 5-7 days for Phase 1 deliverables. What stack is the existing alignment module built on? That’ll tell me how invasive the fix needs to be.
$25 USD in 40 days
3.2
3.2

A 4-hour narration against 150 slides breaks most systems when they treat alignment like uniform partitioning with light semantic hints. I’d tackle it as constrained sequence alignment: timed transcript first, slide evidence extraction second, then anchor detection plus monotonic decoding so short slides can pass quickly and dense slides can legitimately hold for minutes without forcing the whole deck into a balanced split. I’ve handled debugging work where an existing AI-assisted workflow looked close on small cases but collapsed at production scale because confidence, ordering, and review logic were not designed for long sequences. Your request for a recommendation plus proof of concept is the right first step, because it lets us isolate whether the main bottleneck is scoring, segmentation, UI review flow, or a combination of all three. I can also document where the current system is biasing toward equal duration so the next architecture decision is evidence-based, not guesswork. - Is there already word-level timing in the current pipeline, or would WhisperX/forced alignment be introduced during this phase? - How are slide images/thumbnails currently produced from PowerPoint files? - Do you want the POC to output slide-change timestamps in a deterministic map format your renderer already consumes?
$25 USD in 40 days
2.7
2.7

Hello, I understand the core challenge with Northquill. You are not looking for another LLM-based timestamp guesser or an improved equal-duration split. The goal is to accurately align one continuous long-form narration with the correct PowerPoint slides while preserving the original audio. I would approach this as a monotonic multimodal sequence-alignment problem: extract slide text/notes and visual signals, generate word-level transcript alignment, calculate semantic relevance between transcript segments and slides, identify high-confidence anchors, then perform ordered sequence alignment across the entire deck. Sentence boundaries, pauses and silence would be used to refine transition points, with confidence scores sending only uncertain transitions to human review. For the first milestone, I can review the existing Northquill codebase, identify why the current alignment drifts toward equal durations, diagnose the broken thumbnail/review UI, run the real 4-hour/150-slide dataset, and compare the results against manually verified transitions. From that evidence, I can recommend the best production architecture before making major changes. I’m comfortable working with an existing codebase and would focus on improving the actual alignment engine rather than rebuilding what already works. Thanks
$25 USD in 40 days
5.1
5.1

Dear Sir, We can help with the Nextcloud plugin development, integration, and long-term support required for the Treuhand Dashboard. Your requirement is not just a standard file-sharing setup; it needs a structured Nextcloud backend layer that can work smoothly with Keycloak, middleware, metadata, permissions, events, and your external dashboard. Our approach would be to first evaluate your current architecture, Keycloak setup, target Nextcloud version, dashboard requirements, and middleware flow. After that, we can design and develop custom Nextcloud apps using the PHP/OCP framework, including SSO integration, event listeners, metadata handling, webhook/API communication, background jobs, group-based access control, and clean documentation for future maintenance. Portfolio: https://www.freelancer.com/u/Jurasicutomation Technical questions for the client: Which Nextcloud version are you planning to use for staging and production? Should metadata be managed inside Nextcloud, or should the middleware/database remain the main source of truth? Are Keycloak groups and roles already defined for students, lecturers, members, backoffice users, STS, and THS? Best regards, Jurasicutomation
$25 USD in 40 days
2.4
2.4

Hi, ✔️The key here is understanding that the challenge is not just timing but semantic alignment of narration with slides. An issue I see is that current models often default to equal duration splits, which can be misleading in a long-form presentation like yours. I understand the importance of accurately aligning slide changes with narration to ensure the content flows naturally. What usually matters most here is recognizing that some slides require extended visibility while others do not, making the need for precise detection critical. With years of experience in AI alignment and multimodal processing, I've helped bring clarity to complex datasets. You can expect an accurate timing map that reflects the true intent of the presentation while minimizing your need for manual adjustments. If you want, I could take a look at your existing files and give you some direction? Best, Kurt.
$25 USD in 7 days
2.4
2.4

Hi there! You need your WooCommerce store moved from coming-soon mode to a fully working shop. The main challenge is making product data, payments, shipping, promotions, and order emails work together without errors. I have experience with WordPress, WooCommerce, product imports, payment gateways, shipping configuration, coupons, and eCommerce workflows. I can work directly in the admin and carefully verify each part before launch. I will import and check your CSV products, images, prices, attributes, stock, and categories. I will configure Stripe and PayPal, set up shipping zones and adjustable free-shipping rules, enable discounts and sale pricing, and test emails and refunds. I will also complete the $1 end-to-end test order and provide a short handover so you can manage future campaigns yourself. check our work https://www.freelancer.com/u/ayesha86664 Is your CSV ready, and are the Stripe and PayPal accounts already available? Let me know if you’re interested & we can discuss it. Best Regards Ayesha
$25 USD in 40 days
1.9
1.9

Seattle, United States
Payment method verified
Member since Sep 1, 2026
$173 USD
$15-25 USD / hour
₹1500-12500 INR
$10-30 USD
₹400-750 INR / hour
₹12500-37500 INR
$30-250 USD
₹1500-12500 INR
$250-750 USD
₹1500-12500 INR
min $50 USD / hour
$15-35 USD / hour
$8-15 USD / hour
₹600-1500 INR
₹12500-37500 INR
₹600-1500 INR
$25-50 USD / hour
₹12500-37500 INR
₹1500-12500 INR
$15-25 USD / hour