Blender python librariesJobb

Filter

Mina senaste sökningar
Filtrera:
Budget
till
till
till
Typ
Kompetens
Språk
    Jobbstat
    2,000 blender python libraries jobb har hittats, med prissättning USD

    ...in a digital world. In this role, you will be responsible for creating half entertaining games and half thrilling winning chances that will keep our users engaged and coming back for more. We are looking for someone with a long experience in graphic interactivity on the web, or simply someone who has built web games in the past. To be considered for this role, you should have experience with libraries such as Phaser, , or similar tools for canvas/webgl rendering. You should also have a solid work experience with JavaScript or TypeScript as well as build tools. A drive to tweak game mechanics and effects to reach that extra step that the designer could not predict is also essential. Bonus points will be awarded if you have experience working with data-driven interactive React

    $1063 (Avg Bid)
    $1063 Snittbud
    15 bud

    Hej, Jag har en idé om en multiplayer sudoku spelapp. Jag har fått offerter på 25000 usd för att utveckla spelet men jag vill inte satsa dessa pengar. Jag vill istället skapa spelet själv, men saknar kompetens att göra det. Jag har erfarenhet av programmering i Python, men inte spel. Jag vill ha någon som sätter upp en arbetsplan, där varje steg beskrivs, därefter ger mig viss guidning för att komma genom varje steg. Jag vill alltså både utveckla spelet och lära mig att utveckla själv. Jag behöver någon med erfarenhet av att utveckla multiplayer-spel (design kommer vara relativt enkel) för iphone/android. Dessutom villig att lära ut (skicka länkar/tips på litte...

    $17 / hr (Avg Bid)
    $17 / hr Snittbud
    2 bud
    Project for Raja S. Avslutades left

    Hej, har ett pågående projekt. Vi har kört fast så skulle behöva ett andra öga på projektet. Innefattar python, flask, webscraping.

    $45 / hr (Avg Bid)
    $45 / hr Snittbud
    1 bud

    Uppgiften är att bygga en slumpgenerator i programmeringsspråket python i miljön google colab. Slumpgenreatorn ska kunna läsa in information(i det här fallet namn ifrån ett google spreadsheet och slumpa ut dem här namnen i basgrupper(6 basgrupper, 6 i varje grupp, där vissa grupper blir färre personer) i spreadsheatet. Så alla basgrupperna och elever får bra placeringar. progrmmaet ska och kunna t.e.x slumpa om placeringar och basgrupper i klassrummet om man vill det. Jag kanske inte har förklarat uppgiften så väl, så jag kan enkelt bara dela instruktionerna där allting är väl skrivet så ni får en ökad förståelse för uppgiften.

    $248 (Avg Bid)
    $248 Snittbud
    2 bud

    Hemsida ska ta in en del information från användare och spara de i databas. I hemsidan kan man se hela tabellen i databasen och kan ändra om man vill. Man kan även lägga in nya rekord i databasen. I python programmet som jobbar på bakgrunden skulle jag kunna läsa in de värdena från databasen och föra till en algorithm som är också skriven i python.

    $181 (Avg Bid)
    $181 Snittbud
    2 bud

    Jag jobbar med att sälja plåt och vi skickar certifikat till våra kunder på stålet, jag skulle vilja ha en portal där de kan söka efter certifikatet och ladda ner pdf filen på egen hand. Se länk nedan på liknande lösning. Jag vill kunna lägga upp pdf filerna antingne på onedrive eller köra ftp mot en server. Vi har redan en server som kör lite python grejer så den kan säkert användas för att placera detta i. Vår hemsida är och den är byggd med wordpress.

    $1097 (Avg Bid)
    $1097 Snittbud
    9 bud

    ITSM Delivery söker Integrationsutvecklare för vår kund. Krav: Java Scala Python R Biztalk Erfarenhet av IBM MQ-server och Biztalk som meddelandesystem att integrera till. Erfarenhet av att bygga near-realtime-instrumentpaneler för att stödja affärsverksamheten. Målet är att använda Spark streaming. Erfarenhet - 6 år. Start: augusti, 2019 Ort: Stockholm / Solna Vi erbjuder: Mycket kreativ och dynamisk miljö, vilket ger en hälsosam professionell utmaning till proffs. Långsiktiga projekt och mysig atmosfär. Det här är ett heltidsjobb i Stockholm, ingen frilansmöjlighet. Ta gärna kontakt med mig för mer information.

    $53 / hr (Avg Bid)
    $53 / hr Snittbud
    3 bud
    Uppehåll av hemsida Avslutades left

    Hjälp med kontroll av hemsida. Program som används. MongoDB SailsJS Elastic Search Python MVC - generellt API

    $402 (Avg Bid)
    $402 Snittbud
    2 bud

    sKils: -Docker Hub -Git -Python -Django -AWS -Redis -S3 -NodeJS -Go

    $17 (Avg Bid)
    $17 Snittbud
    9 bud
    Web development Avslutades left

    Jag vill fixa till en webbsida Pandas Python django

    $555 (Avg Bid)
    $555 Snittbud
    1 bud
    Software in Python Avslutades left

    Good programming skills

    $30 (Avg Bid)
    $30 Snittbud
    1 bud
    Programmering i Python Avslutades left

    Hej, Kolla bifogade filer för ytterligare information! Mvh t1f0

    $50 - $50
    $50 - $50
    0 bud

    Hej, har du möjlighet att hjälpa mig med tre deluppgifter i Python? Ämnet är, som nämns i rubriken, sortering och sökning. Deadline fredag 8.5.2015 kl. 22:00 Information om projektet finns bifogat som filer. Med vänlig hälsning, t1f0

    $30 - $30
    $30 - $30
    0 bud
    Vigenerechiffer Python Avslutades left

    Uppgift 1: Din uppgift är nu att skapa ett program med vilket du kan kryptera och dekryptera text som endast innehåller stora bokstäver enligt Vigenere-algoritmen. För att göra det behöver du en tabell, som du t.ex. kan generera med följande funktion: def make_cipher(): cipher = [] i = 0 j = 0 # Väljer bokstäverna A-Z for char in [:26]: ([i:26]+[:j]) i += 1 j += 1 return cipher Förutom funktionen make_cipher behöver du igen två funktioner för att kryptera resp. dekryptera ett meddelande. def encrypt(key, msg): cipher = make_cipher() # ...mer kod def decrypt(key, msg): cipher = make_cipher() # ...mer kod Uppgift 2: Testa programmet med exemplet på ...

    $15 (Avg Bid)
    $15 Snittbud
    1 bud

    for och sekvenser (python) 1) Skriv ett program som tar hand om röstberäkningen i ett val. Kandidaterna numreras 2-7, och vi lagrar varje kandidats sammanlagda röstantal i en lista (rösterna för nr. 2 ska lagras i position 2, rösterna för nr. 3 i position 3 etc). Tänk noga på hur stor lista du behöver! Varje element ska 0-ställas innan man börjar mata in de enskilda rösterna (ingen valfusk här!). För övningens skull antar vi att antalet röstberättigade är 10 personer, av vilka alla röstar (men de kan rösta blankt eller ge proteströster, så varje given röst måste kontrolleras!). Sist ska varje kandidats röstantal skrivas ut 2) För att göra r...

    $15 - $15
    $15 - $15
    0 bud

    hej jag en kurs programmering( python ) som är databaserad och behöver hjälp med. Det är för nybörjare . Pris kan vi komma överens om . hör av dig så fort som möjligt Med vänlig hälsning,

    $155 (Avg Bid)
    $155 Snittbud
    1 bud
    Programkurs att göra Avslutades left

    hej jag en kurs programmering( python ) som är databaserad och behöver hjälp med. Det är för nybörjare . Pris kan vi komma överens om . hör av dig så fort som möjligt Med vänlig hälsning,

    $150 (Avg Bid)
    $150 Snittbud
    1 bud
    uppgift python Avslutades left

    olika delmoment: Kodskelett Innan programmet skrivs ska en specifikation i form av ett kodskelett lämnas in. Syftet är att du ska tänka igenom problemet innan du försöker lösa det. Prototyp När ditt kodskelett har blivit godkänt så är det dags att börja arbeta med en prototyp av programmet. En prototyp är en första körbar version av programmet som innehåller den mest grundläggande funktionaliteten. Syftet med att lämna in en prototyp är att vi ska kunna ge tips och råd om förbättringar och ändringar redan innan programmet är helt klart. Beskrivning av upgiften: Varudeklaration: Filhantering. Str¨anghantering. Hantering av datastrukturer samt s¨ok...

    $27 (Avg Bid)
    $27 Snittbud
    2 bud
    Skriv lite programvara Avslutades left

    Programmeringsspråk: Openwrt (ev. kan Python vara möjligt) Plattform: Carambola2 Applikation: Vid power-on ska enheten kolla GPIO pinnar, koppla upp mot ett av några förutbestämda WiFi-nät och skicka ett e-post och sedan göra sig beredd på power-down. Slutapplikationen är olika, men enkla och ska helst kunna skrivas i ett ANSI-C program som kallar på det som beskrevs ovan, Alternativt en kort intensivkurs att programmera slutapplikationen i Openwrt. WiFi inställningar, e-postadress, e-posstmeddelande och ev. övriga inställningar ska kunna konfigureras via t.ex. USB från en PC (Teraterm duger). Om möjligt vore det bra att kunna ändra dessa inställningar genom att t.ex. skicka e...

    $29 - $245
    $29 - $245
    0 bud

    Jag har pågående arbete relaterat till vårat tidigare projektpython programming'

    $20 / hr (Avg Bid)
    $20 / hr Snittbud
    1 bud
    uppgift python Avslutades left

    olika delmoment: Kodskelett Innan programmet skrivs ska en specifikation i form av ett kodskelett lämnas in. Syftet är att du ska tänka igenom problemet innan du försöker lösa det. Prototyp När ditt kodskelett har blivit godkänt så är det dags att börja arbeta med en prototyp av programmet. En prototyp är en första körbar version av programmet som innehåller den mest grundläggande funktionaliteten. Syftet med att lämna in en prototyp är att vi ska kunna ge tips och råd om förbättringar och ändringar redan innan programmet är helt klart. Beskrivning av upgiften: Varudeklaration: Filhantering. Str¨anghantering. Hantering av datastrukturer samt s¨ok...

    $138 (Avg Bid)
    $138 Snittbud
    1 bud

    I'm looking for a Python developer with experience in deep learning and specifically TensorFlow for a denoising project. Key Details: - The project involves implementing a denoising code using the noise2void method. - The noisy images are in PNG format. - The denoising code should be developed using Python and integrated with TensorFlow. Ideal Candidate: - Proficient in Python and deep learning with a focus on TensorFlow. - Experience in denoising algorithms is a plus. - Familiarity with image processing in Python.

    $84 (Avg Bid)
    $84 Snittbud
    1 bud

    Hello, I am looking for python developer who can make small module there i can upload my data and make search Please bid if you can start now Small Job / Quick Job

    $5 / hr (Avg Bid)
    $5 / hr Snittbud
    7 bud

    We are in need of a highly skilled and experienced Python Developer who specializes in Large Language Models (LLM) and Retrieval Augmented Generation (RAG) tasks. Key Tasks: -Your main responsibility will be to create a custom AI Chatbot by combining LLM (Large Language Model) with RAG (Retrieval-Augmented Generation) using custom data. General Requirements: - Demonstrable proficiency in Python and understanding of LLM and RAG is a generally necessary. - Familiarity with Chatbot modeling, data analysis, model building, web scraping, data extraction, and task automation will be regarded as additional advantages. This project provides an excellent opportunity for individuals deeply interested in language models and augmented generation. Interested and qualified bidders are a...

    $372 (Avg Bid)
    $372 Snittbud
    4 bud

    I am in need of a skilled Python developer to assist with compiling a Python project into an executable file for Windows. Key Responsibilities: - Compile a Python desktop application into an executable file that can be run on Windows. Ideal Skills and Experience: - Proficiency in Python programming. - Experience with compiling Python applications into executable files. - Knowledge of Windows development environments and tools. This is a straightforward task, but I require someone with experience in compiling Python programs for Windows, as I am keen on ensuring the final product is suitable for distribution and use on Windows operating systems.

    $34 (Avg Bid)
    $34 Snittbud
    26 bud

    A 3D modeller to enhance an existing 3D character, fix the body rig, and add facial blendshapes and visemes for lip-syncing. Additionally, the task involves rigging a piec...if necessary, to balance quality and performance. - Making any adjustments to the rig and animations for optimal in-game performance. - Delivering the final optimized character in a format compatible with Unity or Unreal Engine. The ideal candidate for this job should have prior experience in game development and character optimization for game engines. Proficiency in 3D modeling software like Blender or Maya is necessary. A strong understanding of both visual quality and technical constraints in game development is essential. Good communication skills and the ability to understand and implement feedback are al...

    $203 (Avg Bid)
    $203 Snittbud
    6 bud
    3D Product Rendering Specialist 6 dagar left
    VERIFIERAD

    I'm in need of a 3D graphic designer who specializes in photorealistic product rendering. The primary use of these renderings will be in producing marketing materials for my company. Key Skills and Experience: - Extensive experience in photorealistic product rendering, with a strong portfolio showcasing past work in this area - Proficiency in 3D modeling software such as Blender, Maya, or 3ds Max - Adept at understanding and translating branding guidelines into 3D visual assets - Excellent attention to detail and ability to ensure consistency with established color schemes and fonts The ideal candidate should be able to take our existing branding guidelines, which include specific color schemes and fonts, and apply them to the 3D renderings of our products. We're lookin...

    $19 / hr (Avg Bid)
    $19 / hr Snittbud
    37 bud

    As the project owner, I'm looking for an experienced freelancer with proficient skills in Blender who can animate a range of mechanical objects. The project details include: * Crafting high animations for general use and presentations. * Texturing intricate mechanical objects like showroom and cars in a realistic manner. * Implementing seamless and smooth animation techniques to enhance the overall impact. Ideal expertise would include: * Proficiency in Blender for animation and texturing. * Prior projects involving mechanical objects. * Skills in creating realistic and medium-detailed animations. * Keen eye for details and aesthetics. I'm excited to view your portfolio of previous work in Blender, particularly those involving mechanical objects and ani...

    $292 (Avg Bid)
    $292 Snittbud
    11 bud
    Excel to Gmail Email Sender 6 dagar left
    VERIFIERAD

    I'm looking for a skilled developer who can create a program that will fac...include: - Using Gmail as the email service provider. - The emails will be sent to multiple recipients with the same content. - The frequency of sending emails is irregular. The main responsibilities of the program are: - Extracting email addresses and any other necessary information from the spreadsheet. - Attaching a PDF to each email. - Sending out the emails. Ideal skills: - Proficiency in Python or similar programming language. - Experience in working with Gmail API. - Proven track record in developing email automation tools. Please note that while personalization is not currently required, the program should be built in a way that adding personalization features in the future would be a straig...

    $95 (Avg Bid)
    $95 Snittbud
    57 bud

    I need a python programme to download historical prices on daily basis of a list of stocks from the BSE India (Bombay Stock Exchange) website. Data should be stored in csv or excel file. Retrieve data accurately and efficiently.

    $51 (Avg Bid)
    $51 Snittbud
    10 bud

    I'm looking for a skilled software developer with proficiency in Java, Python, and C# to create a mobile application. The main goal of this project is to design and develop a mobile application with a seamless user interface and user-friendly experience. Key functionalities that the application should have include: - Efficient product catalog and search system to allow users to easily find and browse through available products - Intuitive user registration and login features to ensure a personalized experience for users The ideal candidate for this project should have a proven track record of developing mobile applications, with a strong understanding of Java, Python, and C#. Experience in e-commerce development and a keen eye for user experience design would be highl...

    $419 (Avg Bid)
    $419 Snittbud
    17 bud

    PROBLEM STATEMENT Development is being done on local environment without any staging environment, thus deploying on production may result in errors due to different configurations/libraries. SOLUTION Create a replica of EC2 production server (to be called "development") on AWS, that can be used for development and later for staging (once containerisation and CI/CD pipeline is configured) CONTRACTORS ANTICIPATED TASKS (high level): 1. Take backup of production instance on AWS. 2. Create new instance from the backup. 3. Configure and verify that code can pulled into the instance from bitbucket. 4. Setup required networking, database, monitoring, and Authorisation configurations. 5. Verify that the instance serves web application just like production and reflects any deve...

    $589 (Avg Bid)
    $589 Snittbud
    1 bud

    Description: We are seeking an e...service. Analyze data related to rental amounts, property types, locations, and amenities. Provide detailed reports comparing market trends, prices, and available amenities. Create visualizations that clearly illustrate market dynamics. Requirements: Proven experience in data collection and analysis, particularly in real estate or similar markets. Strong proficiency with data analytics tools (Excel, Python, R, etc.). Ability to interpret large amounts of data and to multi-task. Strong analytical skills with attention to detail. Excellent communication and presentation skills. Project Scope: The project will commence immediately upon hire and is expected to last approximately 4 weeks. The analyst will provide weekly updates and a comprehensive fin...

    $138 (Avg Bid)
    $138 Snittbud
    26 bud

    ...completing this project: 1. Develop a web scraping script using Python (e.g., BeautifulSoup, Scrapy) to extract data from relevant grant databases and websites (if possible, considering anti-scraping measures). Sites to be scraped: 2. Design a database schema to store the extracted data. 3. Write scripts to clean, transform, and load the data into the database. 4. Design a WordPress directory listing interface with search filters to display the grant information. 5. Develop a user interface to query and display the grant information based on customer criteria 6. Create a Python plugin for WordPress to automate the scraping work, using tools like WP-Python or PyWP. This plugin would allow for scheduled scraping, data

    $14 / hr (Avg Bid)
    $14 / hr Snittbud
    68 bud
    PHP 7.3.3 to PHP 8 Update 6 dagar left
    VERIFIERAD

    I'm seeking an experienced PHP developer to update my application from PHP 7.3.3 to at least PHP 8. - The application currently has user registrat...developer to update my application from PHP 7.3.3 to at least PHP 8. - The application currently has user registration and login features. - It also integrates with a database. The main reason for this update is to ensure compatibility with newer libraries, when updating even to 7.4 it does not load. The ideal developer for this project should have: - Proficiency in PHP, specifically in updating versions. - Familiarity with user registration, login systems, and database integration. - Experience in ensuring compatibility with third-party libraries and frameworks. - Ability to troubleshoot and problem-solve in case of any...

    $31 (Avg Bid)
    $31 Snittbud
    51 bud

    As the owner of an advanced security level website, I am seeking professional ha...professional hacking services to conduct thorough penetration testing. The key focus areas would be: - User Authentication Process: Probe for any weak links in our login and authentication systems. - Data Encryption: Assess the robustness of our data encryption protocols. - Server Security: Evaluate potential weaknesses in our server security. Ideal applicants would have significant experience with Python-based hacking tools and a proven track record in cybersecurity. Knowledge of advanced security measures and the ability to recommend improvements after testing is highly desirable. Please provide evidence of your skills and previous work in your application. Make sure your proposals are competitive...

    $698 (Avg Bid)
    $698 Snittbud
    12 bud
    Git and Python Tutor for ML and AI 6 dagar left
    VERIFIERAD

    I'm a beginner looking for a tutor to help me learn and understand Git and Python, with a focus on branching, version control, Python syntax and functions, as well as building Machine Learning (ML) and Artificial Intelligence (AI) models. My preferred learning style is through hands-on projects. The ideal candidate should have the following skills and experience: - Proficiency in Git and Python - Experience with version control, branching and merging - Strong understanding of Python syntax and functions - Background in building ML and AI models - Ability to teach through hands-on projects.

    $24 / hr (Avg Bid)
    $24 / hr Snittbud
    55 bud
    VCF File Conversion & Parsing 6 dagar left
    VERIFIERAD

    I'm in need of a freelancer who can help me parse my VCF file a...my VCF file and convert it to a different format. The main goal of this task is to extract the genotype information from the file. input will be VCF file (from ONT whole genome run) and csv file with columns containing rsID, chromosome number, position. output will be same as input csv file, with extra column showing genotype from VCF at the given position can run on Mac shell so either perl or python would be fine. Ideal Skills & Experience: - Proficient in parsing VCF files and understanding genotype data - Experience in converting files to various formats like CSV, TXT, and XLS - Attention to detail to ensure accurate extraction of the data - Knowledge of any data validation methods would be a plus. shou...

    $456 (Avg Bid)
    $456 Snittbud
    74 bud

    ...electronic music released to digital streaming platforms, such as iTunes, Spotify, etc. The sources of their fans traffic varies from search engines, social media, to the streaming platforms previously highlighted. The primary revenue opportunities for this stream are generated through royalties and merchandise sales () (3) Media and Entertainment clients, including music libraries, publishers, sync agents, and music supervisors. The sources of this traffic varies greatly by market opportunities. These folks are sent into a private section of the website requiring account registration and verification, before they are allowed to listen to custom selected music in our catalog. The revenue opportunities here will also be royalty generated. The ideal candidate / team would

    $113 / hr (Avg Bid)
    $113 / hr Snittbud
    12 bud

    I'm in need of a Python GUI software to automate sending messages through Google Voice. The software should be able to perform the following functions: - Send messages to individual contacts on Google Voice - Support precise date and time scheduling for these messages -Automated Sending with customized message example: message example {name} and {adsress} -Custom delay settings for each message -Multiple Profile Sender (custom threads) with multiple Proxy support (enable/disable proxy) -Auto login accounts - Auto Skip Terminated Accounts -License system for users -Sending reports Ideal Skills and Experience: - Proficient in Python programming - Experience in developing GUI applications - Familiarity with Google Voice API is a definite plus - Strong understanding of me...

    $235 (Avg Bid)
    $235 Snittbud
    13 bud

    I'm seeking an experienced professional in the field of Electrode Impedance Tomography to work on a project with a focus on analyzing tissue conductivity. Key Requirements: - Ability to conduct Electrode Impedance Tomography with a focus on tissue conductivity - Experience in interpreting and analyzing the collected data - Strong background in medical imaging and/or related fields P...Impedance Tomography to work on a project with a focus on analyzing tissue conductivity. Key Requirements: - Ability to conduct Electrode Impedance Tomography with a focus on tissue conductivity - Experience in interpreting and analyzing the collected data - Strong background in medical imaging and/or related fields Proven experience with Electrode Impedance Tomography using EIDORS (Matlab) or pyEIT ...

    $115 (Avg Bid)
    $115 Snittbud
    20 bud

    I'm in need of a Python Jupyter expert who can support me in the development of a machine learning model. Here are the specifics: - **Task**: The primary task revolves around machine learning, specifically model development. - **Current Project Stage**: The project is currently focused on model development, so we've already completed the data collection phase. - **Model Type**: The model type we're focusing on is classification. Ideal candidates should have solid experience in machine learning, particularly in classification models. Expertise with Python and Jupyter is also a must. If you have a good handle on data analysis and statistics, that would be a huge plus.

    $149 (Avg Bid)
    $149 Snittbud
    28 bud

    ...The designs should be versatile and fit together seamlessly to allow for a wide variety of possible base configurations - 3 different variations such as Wood, Stone and Metal. - Set but not limited to: Foundations, Walls with and without windows frame, windows, Door frame and door, ladder, stairs, ceilings. Ideal skills for this project include: - Proficient in 3D modeling software such as Blender, Maya, or 3ds Max - Experience in creating assets for games, particularly modular structures - Strong understanding of texture mapping and detailing to create visually appealing designs - Ability to work well independently and adhere to project deadlines - Ability to create the structures for the Unity game engine on all pipeline (Builtin, Render & HD) If you have a passion for ...

    $205 (Avg Bid)
    $205 Snittbud
    32 bud

    ...- Implementing UI component libraries to enhance user experience Functionalities: - Add a blue rectangle around my face which continous moves along with my face and above that there will be text showing my emotion. - Add AI voice (right now im using google voice which is robotic) - Use chatgpt api for conversation with the chatbot (leave blank for api keys, i will provide it myself, right now im using predefined inputs and outputs) Ideal Skills and Experience: - Proficient in UI/UX design and web application development - Experience with Python and relevant web development libraries - Prior experience in developing chatbots or similar AI-driven applications - Strong understanding of user behavior and interactivity - Ability to implement UI component libraries...

    $67 (Avg Bid)
    $67 Snittbud
    4 bud
    Reconocimiento facial con WebCam 6 dagar left
    VERIFIERAD

    Se requiere un sistema diseñado en Python que trabaje en sistema operativo Wndows, el cual a través del uso del WebCam pueda hacer reconocimiento de rostros comparando el rostro en la cámara vs el rostro almacenado en formato digital en una base de datos en SQL Server 2016+. El resultados debe ser un True o False. El sistema debe trabajar localmente (No en la nube).

    $140 (Avg Bid)
    $140 Snittbud
    15 bud

    I'm looking for a proficient NLP programmer to help me implement a Spell Checki...The ideal candidate should have expertise in NLP and should be comfortable working with the following requirements: - Expertise in NLP: Proficiency with BERT model in particular - Programming Language: Comfortable working with Python - Accuracy Expectation: The spell checking algorithm should provide balanced accuracy and performance, particularly for large texts. The project's main goal is to deliver an efficient and effective spell checker that can handle large datasets. This will require a nuanced understanding of NLP, particularly the BERT model, as well as Python programming skills. The balance between accuracy and performance is crucial, as the spell checking algorithm should ...

    $43 (Avg Bid)
    $43 Snittbud
    8 bud

    Timeseries forecasting with Python

    $28 (Avg Bid)
    $28 Snittbud
    19 bud
    Python Tutor for Kids Needed now 6 dagar left
    VERIFIERAD

    I need a Junior Python Coder who may teach the kids I shall prefer the Female Coders I need work for long term

    $7 / hr (Avg Bid)
    $7 / hr Snittbud
    19 bud

    ...shuttle moving through a tube, aiming to revolutionize how people and goods travel. The animation will serve as an introduction to our invention to the general public, highlighting its unique features and benefits. *Requirements:* - Experience in creating engaging animations, preferably with a portfolio showcasing similar projects. - Proficiency in Blender, as the models for the shuttle and environment are pre-designed and available in Blender format. - Ability to convey the concept of futuristic transportation vividly and convincingly to a general audience. - Creativity in animation to ensure the final video is intriguing and easily understandable. - Excellent communication skills to effectively collaborate and bring our vision to life. The final deliverable should be ...

    $150 (Avg Bid)
    $150 Snittbud
    69 bud

    I'm looking for ...looking for an experienced programmer to assist with the design and development of a Windows Remote Access Trojan (RAT). - SPECIFIC FUNCTIONALITY: The RAT should be specifically designed for system control, enabling legitimate access and manipulation of systems when necessary. - DEVELOPMENT SKILLS REQUIRED: A comprehensive understanding of Windows OS, solid coding skills (particularly in C++ & Python), and a deep familiarity with system's internals and protocols are necessary. - SECURITY ASPECTS: The freelancer should also possess a strong understanding of security practices to ensure our software is robust and secure against external threats. Please note, that this is strictly for ethical, white-hat purposes, including penetration testing and s...

    $95 (Avg Bid)
    $95 Snittbud
    8 bud