Python textboxJobb

Filter

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

    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

    ...hantera kort i en kortlek. programmet ska innehålla en klass, kort, med medlemsvariablerna färg, (till exempel spader) och valör (till exempel knekt), en konstruktor som initierar medlemsvariablerna och egenskaper för att hämta och sätta värden till dem. Både färgen och valören ska vara av typen string. användargränssnitt kan se ut som nedan. ( Label - Textbox Label - textbox button -- button listview button - textbox) (ungefärlig bild, ) När man skriver in färg och valör och klickar/väljer Lägg till ska ett kortobjekt skapas och lagras i en lista (List<kort^>^), informationen ska också läggas till som en ny rad i den stora tex...

    $22 (Avg Bid)
    $22 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

    As an investor seeking to streamline my algorithmic trading operations, I am in need of an able Python Developer who specializes in automation tasks. This role requires an individual with: - Mastery of Python and experience with automation tasks, most especially within the investment and stock market scenario. - Skilled and knowledgeable in stock market terminology with experience in use of Websockets for API integration Suitable candidates are expected to have good communication skills to effectively understand and implement required changes in a timely fashion. Help me maximize my trading potential with your Python expertise!

    $178 (Avg Bid)
    $178 Snittbud
    9 bud

    ...can create a bot that will be used for automated trading on Binary.com. Key Functionalities: - The bot will be designed to execute trades based on predefined strategies. This means it should be able to analyze market conditions and place trades automatically as per the set strategy. Ideal Skills and Experience: - Proficient in Python: Since Python is my preferred programming language for this bot, you should have demonstrable experience in programming with Python. - Knowledge of Binary Trading: A good understanding of binary trading platforms and how they operate is a considerable plus. - Experience with Automated Trading: Prior experience in developing bots for automated trading is highly preferred. - Familiarity with : Given that the bot will be used on , e...

    $204 (Avg Bid)
    $204 Snittbud
    5 bud
    UDP/IP NETWORK PYTHON EXPERT 6 dagar left
    VERIFIERAD

    .The scope of this project includes: 1. Data Transmission: You should be able to help in enhancing our network to ensure that it delivers data more optimally, focusing particularly on text-based data, as this is what our UDP/IP network primarily handles. 2. Error Detection and Correction: The hiree will also have to devise new methods for detecting and correction errors within our system. We've been facing some challenges in this area that need resolution. 3. Scalable Solutions: Our network system currently connects between 10 and 50 devices. While working on this project, it is important to keep scalability in mind to accommodate potential future growth.

    $57 (Avg Bid)
    $57 Snittbud
    5 bud
    Python Project 9 dagar left

    Hi Miloud S., I noticed your profile and would like to offer you my project. We can discuss any details over chat.

    $40 (Avg Bid)
    $40 Snittbud
    1 bud

    I'm in need of a full-time, mid-level software developer to join our e-commerce company. You should be proficient in Python, Java, and PHP. Your primary responsibilities will include: - Coding and programming: Developing robust, scalable software solutions for our e-commerce platform. - Database management: Ensuring the efficient operation of our databases and managing related processes. - Bug fixing and troubleshooting: Identifying and addressing software issues to maximize performance. Your experience should ideally span 2-5 years, giving you a good understanding of the nuances of software development. In addition to your technical prowess, you should be able to work efficiently within a team and communicate effectively. Your input will be crucial in enhancing our e-commer...

    $24 / hr (Avg Bid)
    $24 / hr Snittbud
    50 bud

    ...Response: GPT-3 generates a poem, and the webhook formats the response. Dialogflow Fulfillment: The webhook sends the formatted poem back to Dialogflow. Google Assistant: Reads the poem aloud to the user. Tools and Technologies: Google Assistant SDK: For setting up and configuring Google Assistant. Dialogflow: For natural language processing and managing conversations. Node.js/Python: For writing the webhook server. OpenAI GPT-3 API: For generating content based on user input. Example Code Snippet: javascript const express = require('express'); const bodyParser = require('body-parser'); const { OpenAIApi, Configuration } = require('openai'); const app = express(); (()); const configuration = new Configuration({ apiKey...

    $552 (Avg Bid)
    $552 Snittbud
    19 bud

    I am in need of a skilled Machine Learning Developer...complexity, featuring multiple variables. The primary goal of the model will be to understand the relationships between these variables. Key Responsibilities: - Utilize the provided dataset to develop a causal model - Ensure that the model is capable of effectively illustrating relationships between variables - Optimize the model for performance Ideal Candidate: - Proficient in Machine Learning and Python - Experience with building causal models - must have worked on techniques like robust synthetic control, dowhy, econml, trigamite, DECI and other double ML/causal techniques - Strong analytical and problem-solving skills - Ability to work with moderate to complex datasets - Strong understanding of relationship modeling in da...

    $67 (Avg Bid)
    $67 Snittbud
    4 bud

    ...doctors' information and disease descriptions. Requirements: Programming Language: Preferably Python. Libraries: Experience with web scraping libraries like BeautifulSoup, Selenium, and data processing libraries like Pandas. Output Format: Ability to export data into an Excel file using Pandas or similar libraries. Error Handling: Robust error handling to manage failed requests and parsing errors. Compliance: Adherence to the websites' terms of service and rate limits to avoid being blocked. Project Scope: Input: A list of CRM numbers and a list of CID numbers. Process: Automate the lookup and data extraction process. Output: An Excel file with the compiled data. Skills Required: Web Scraping Python Programming Data Processing Automation Excel File Generation ...

    $21 (Avg Bid)
    $21 Snittbud
    6 bud
    El Pianista 6 dagar left
    VERIFIERAD

    Buenas tardes. Necesito un desarrollo que ...para continuar". d) La solución solo responde el éxito/fracaso, debiendo recibir desde el cliente los valores necesarios para proceder (clave, tiempos involucrados o el que defina técnicamente) lo mismo para la generación de la relación. También debe permitir integrarse completamente a una aplicación, por lo que en ese caso todo deberá ser manejado en esa solución (también en Python). Debe ser desarrollado en python. Debe permitir que se integre a otra solución que tiene las claves. De preferencia, se interactúa en español. Se reciben sugerencias de como operar, lo anterior en cuando a como hacerlo con la aplicación en donde...

    $159 (Avg Bid)
    $159 Snittbud
    7 bud

    I'm looking for an expert in numerical analysis who can help me with a range of tasks. Here's what the job involves: - Solving Linear Equations - Interpolation - Integration While I haven't specified a programming language in the options, I'm currently working on this project by hand. If you're proficient in Python, MATLAB, or C++, your insight into these languages might be helpful. The project is urgent and needs to be completed ASAP. If you're skilled in numerical analysis and can deliver quality work under tight deadlines, I'd love to hear from you.

    $22 (Avg Bid)
    $22 Snittbud
    16 bud
    Chrome Extension modify -- 2 6 dagar left
    VERIFIERAD

    I'm looking for a developer to create a Chrome extension that will communicate with a server. The extension should be able to: - Extract the first value from the first document that is loaded - Select...Every instance& chrome extension has to connect to the server and if we change the radio button and drop-down on the server it has to be clicked as order wise. If first loaded document Click on 1st value which I had entered in server If second loaded document click on second value Ideal skills and experiences include: - Proficiency in developing Chrome extensions - Thorough understanding of Python for server-side development - Experience with creating APIs for efficient communication between client and server - Strong problem-solving skills to ensure seamless data extract...

    $4 / hr (Avg Bid)
    $4 / hr Snittbud
    9 bud
    Chrome Extension modify 6 dagar left
    VERIFIERAD

    I'm looking for a developer to create a Chrome extension that will communicate with a server. The extension should be able to: - Extract the first value from the first document that is loaded - Select...Every instance& chrome extension has to connect to the server and if we change the radio button and drop-down on the server it has to be clicked as order wise. If first loaded document Click on 1st value which I had entered in server If second loaded document click on second value Ideal skills and experiences include: - Proficiency in developing Chrome extensions - Thorough understanding of Python for server-side development - Experience with creating APIs for efficient communication between client and server - Strong problem-solving skills to ensure seamless data extract...

    $11 / hr (Avg Bid)
    $11 / hr Snittbud
    11 bud

    I am in need of a Python developer with expertise in hardware oriented programming to add some additional functionality to an already written script of mine. The existing functions also need to be double-checked for correctness. Key requirements include: - Modify the existing Python script to incorporate the additional features required - Review the current script and ascertain that all existing functions are properly written and functioning as they should - Build a Debian OS image for COM (Computer-On-Module) installation that can be used to implement the updated python script seamlessly. Success in this role will require: - Proven experience with Python, specifically in writing and improving scripts with a focus towards integration with hardware - Solid kn...

    $551 (Avg Bid)
    $551 Snittbud
    28 bud

    Dough one Sources is looking candidates for Senior Business Analyst – VBA, Advance Excel. Job Role: Senior Business Analyst Job Location: Remote E...Technical knowledge of VBAs, Macro, MS Office skills to drive automation opportunities. • Well-versed with dynamic loops, data extraction from images. • Work with users and team members at all levels for performance improvement and suggestions. • Understand and prepare Ad hoc reports. • Identify the opportunities of automating reports, snapshots and dashboards using advanced formulas, Advanced Excel, Python and other techniques • Consolidate, sort, organize and summarize data using basic mathematical operations • Interpret data and metrics using charts, tables, Dashboard and other graphics in Microsof...

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

    I'm in need of a seasoned AI developer to assist with a project that involves a variety of AI tasks. The ideal candidate should be proficient in Python and Java, with a solid understanding and experience in the following areas: - Natural Language Processing - Machine Learning - Computer Vision The project will involve a mix of training machine learning models and using pre-trained models. The output of the project will be a functional AI system that integrates these three areas seamlessly. Ideal candidates will have a deep comprehension of AI-related algorithms, excellent problem-solving skills, and an ability to work both independently and as part of a team.

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

    I have a Python notebook containing well-structured code that effectively translates a sample of a large dataset from English to Arabic. However, the current code cannot handle the entire dataset due to its size. using : model_name = 'Helsinki-NLP/opus-mt-en-ar' Tasks: - Modify the existing Python code in the provided notebook to translate the entire dataset from English to Arabic. - Ensure the translated data is saved in two formats: Comma-Separated Values (CSV), and Apache Parquet (.parquet) - Provide the CSV and parquet files after saving (most run and give results)

    $22 (Avg Bid)
    $22 Snittbud
    12 bud

    Hello, We are seeking an experienced Python developer to help maintain and enhance our Telegram bot. Your responsibilities will include fixing bugs and adding new services as requested. The bot is already fully developed, so you will be notified of any new features we want to implement or bugs that need fixing. We are looking for someone with extensive experience in hosting environments, including virtual private servers, cPanels, domains, etc. Experience with Telegram bots and the Telegram API key is also required. If you believe you are a good fit for this role, please let us know. Our services are sold via cryptocurrency through the company "Cryptomus," using their API key. Additionally, experience with "SolusVM" is required, as you will need to work with t...

    $156 (Avg Bid)
    $156 Snittbud
    3 bud

    I am in search of a proficient individual in crafting an impressive resume for a Sen...requirements: - Knowledge and understanding of the AI industry, especially machine learning - An understanding of the programming languages utilized in AI, specifically Python Ideal skills and experience: - Previous experience developing resumes for Senior-level roles in tech industries. - Proficiency in Python, ideally within the context of AI and machine learning - An understanding of the relevance and applicability of various programming languages and machine learning in the AI field could be a great advantage in writing this resume. Overall, I require a resume that candidly but effectively highlights my skills in Python programming and machine learning in the context of a se...

    $62 (Avg Bid)
    $62 Snittbud
    14 bud

    I'm seeking an experienced Python freelancer to implement RLlib's PPO for a custom multi-agent environment, where agents act independently. Your tasks will be: - Solving the issue with the learning process. Despite configuring the simplest setting with just one agent, the model fails to find the optimal action. Additionally, the model seems unable to distinguish between the optimal actions for agents with the same action space but different endowments. Ideal skills include proficiency in Python, familiarity with RLlib's PPO algorithm, and previous work dealing with agent-based environments. Experience in crafting efficient reward functions is a plus.

    $159 (Avg Bid)
    $159 Snittbud
    27 bud

    I'm looking to have a custom aimbot script made for a game that was released in 2004. This game has no anti-cheat, making the developmen...Gunbound scripts. The aim of this project is to create a basic aimbot script. I'm open to programming language suggestions, as long as it's optimal for the task at hand. I'm not interested in additional features at this stage, just a simple script to enhance aiming in the game. Ideal Skills: - Proficiency in coding custom aimbot scripts - Experience in Gunbound or similar game - Proficient in C++, Python, or AutoHotkey (preferred, but not mandatory) - Strong understanding of game mechanics Please provide details of your similar previous projects when bidding. Your bid should also include a rough estimate of the time it wi...

    $13 (Avg Bid)
    $13 Snittbud
    4 bud
    Python Debugging Specialist -- 2 6 dagar left
    VERIFIERAD

    I'm looking for a Python developer who can help me debug my code. The project involves: - Debugging logic errors: The Python code has some underlying logic errors that are causing the program to behave unexpectedly. I need someone who can identify the root cause of these issues and provide solutions. The ideal candidate should have: - Proficiency in Python: You should be well-versed in Python programming, with a strong understanding of Python syntax. - Experience with debugging: Previous experience in debugging Python code, particularly with logic errors, would be advantageous. - Problem-solving skills: You should be able to think critically and logically to identify the issues in the code and propose effective solutions. Please note that...

    $22 (Avg Bid)
    $22 Snittbud
    14 bud

    ...Theory Background History of AI Machine Learning and Data Mining Neural Networks Reinforcement Learning Speech-to-Text and Text-to-Speech (and Deep Learning in this Relation) Robotics Limits of AI, Deepfake, and Ethics Practical Guide - Tools ChatGPT for Beginners Image Creation Tools with AI (DALL-E, MidJourney, Assistants - Market Overview) & Computer Vision Data Analysis in Enterprises with AI Python - Introduction and First Overview Additional Books Natural Language Processing (NLP) AI in Healthcare Autonomous Vehicles and AI AI in Finance and Trading Please start your offer with the answer to this question: What is 3+4? In your offer, explain why you are qualified for this project. Ideally, you are either a technical expert with AI knowledge, a writer with a strong AI ...

    $530 (Avg Bid)
    $530 Snittbud
    59 bud

    use Oracle PL SQL teach me how to install free Oracle DB on my local windows 11 acceptance: I can run your code on my computer ; all code work on my computer when I run it by myself You have 2 days you provide code to simulate input data (both code versions: python and sql)-> transactions data *****you provide SQL code to calculate per day summary for each day for each product for each store for 3 years SIMULATION data for 3 years 100 products 20 stores 5 USA states random dates and prices promotion for 30 promotions per year , each promotion happen for 7 to 15 products, for example promotion at may 10, 2023 happen for product ids: 34, 65, 12, 78, 5, 23, 41. When 34 for 20%; 65 for 30%; 12 for 40%; 78 for 10%; 5 for 15%; 23 for 70%; 41 for 30% randomly for each pro...

    $50 (Avg Bid)
    $50 Snittbud
    7 bud
    AD Meta data capture 6 dagar left
    VERIFIERAD

    Active Directory Expert to create a Python script and test data to capture all meta data linked to and which describes the confined parameters of an AD account, AD RMS (Rights management Services) group policy GPO etc. and export to a MS Excel File. More information attached.

    $31 (Avg Bid)
    $31 Snittbud
    4 bud

    I'm looking for a machine learning expert to create a sentiment classification model for customer reviews. The main objective of this project is to classify customer reviews into one of three categories: Positive, Negative,...sentiment of reviews into Positive, Negative, or Neutral. Ideally, you should have: - Proven experience in machine learning, particularly in sentiment analysis - A strong understanding of natural language processing and text analytics - Previous experience working with customer review data - A track record of building accurate and efficient classification models - Familiarity with platforms like Python, R, and relevant ML libraries If you have experience in similar projects, please share your previous work and let me know how you would approach this sp...

    $16 / hr (Avg Bid)
    $16 / hr Snittbud
    13 bud

    I require a skilled developer to create a Windows-based low level keyboard emulator primarily for gaming purposes. Key Requirements: - OS Compatibility: The emulator should work on Windows systems only. - Emulation Focus: The main target of this project is to mimic keyboard inputs for gaming applicati...emulator should press the Z1 key when the Caps Lock LED is on, and stop when it is off. Friends who want to provide a solution with 'keybd_event' and 'SendInput'; this method does not work. A lower-level approach is required Conditions: Notes: The keyboard emulator must work in the game. The project must be compatible with Windows 10. The project should use one of the following languages: C++, Python, or Pascal. Important Information: Macro usage in the game i...

    $21 (Avg Bid)
    $21 Snittbud
    6 bud

    I'm in need of an all-round developer who has strong experience in both Python and PHP, specifically for the creation of an e-commerce website. The desired professional should be well-versed in crafting custom web solutions as well as knowledgeable in leveraging the WordPress CMS beneficially. Skills and Experience Required: - Demonstrated expertise in Python and PHP web development. - Proven experience in developing successful e-commerce websites. - Proficiency with WordPress CMS. - Understanding of e-commerce website security essentials. - Articulate in communicating project progress and potential hurdles. Freelancers who can showcase previous work on similar projects will be given priority. I look forward to your enticing bids and am eager to form a productive pa...

    $11 / hr (Avg Bid)
    $11 / hr Snittbud
    15 bud

    ...recognising handwritten digits - The primary focus will be on mathematical problems - Ensure accuracy and adaptability to various handwriting styles - Configure the algorithm to output recognized digits as digital numbers Ideal skills & experience: - Proficiency in machine learning algorithms and principles - Extensive experience with handwriting recognition software - Demonstrate capabilities in Python, TensorFlow or similar platforms - Have a deep understanding of Optical Character Recognition (OCR) - Familiarity with mathematical problems and their structures The end goal is to develop a practical, efficient, and accurate automaton that simplifies the process of converting handwritten mathematical problems into digital numbers. I am looking for someone who can attentive...

    $35 (Avg Bid)
    $35 Snittbud
    6 bud