Building Microsoft's What-Dog AI in under 100 Lines of Code
This tutorial shows you how to build a dog breed identifier similar to Microsoft's What-Dog AI, but using Diffbot's Image API. The entire application is less than 100 lines of code and leverages Imgur for image hosting to minimize costs.
Key Features:
- Uses a simple image upload form and PHP for processing.
- Diffbot's Image API analyzes uploaded images and returns breed suggestions based on identified tags.
- While not perfect, the resulting application demonstrates the accessibility and potential of modern AI for image recognition.
Getting Started:
- Diffbot Account: Obtain a free 14-day API token from Diffbot.com.
-
Composer Setup: Use the following
composer.json
to install the necessary libraries:
{ "require": { "swader/diffbot-php-client": "^2", "php-http/guzzle6-adapter": "^1.0" }, "minimum-stability": "dev", "prefer-stable": true, "require-dev": { "symfony/var-dumper": "^3.0" } }
<code>Run `composer install`. The `minimum-stability` setting accommodates a beta dependency.</code>
- Imgur Account: Create an Imgur account and obtain a Client ID for anonymous image uploads.
Code Structure (index.php):
The core logic resides in index.php
. The code first handles image uploads via an HTML form (omitted for brevity, focusing on the PHP backend). Imgur is used for hosting, saving on server costs. The uploaded image URL is then sent to Diffbot's Image API.
<?php require 'vendor/autoload.php'; $token = 'YOUR_DIFFBOT_TOKEN'; // Replace with your Diffbot token $imgur_client = 'YOUR_IMGUR_CLIENT_ID'; // Replace with your Imgur Client ID if ($_SERVER['REQUEST_METHOD'] == 'POST') { // Handle image upload (using $_FILES) or URL submission (using $_POST['url']) // ... (Image upload to Imgur using Guzzle, obtaining the image URL) ... if (!isset($url) || empty($url)) { die("Image upload or URL submission failed."); } $diffbot = new Swader\Diffbot\Diffbot($token); $imageDetails = $diffbot->createImageAPI($url)->call(); $tags = $imageDetails->getTags(); echo "<img src=\"{$url}\" style="max-width:90%"500\" alt="Building Microsoft's What-Dog AI in under 100 Lines of Code" ></img>"; if (empty($tags)) { echo "<h4 id="No-breed-identified">No breed identified.</h4>"; } else { echo "<h4 id="Suggested-Breed-s">Suggested Breed(s):</h4>"; foreach ($tags as $tag) { echo "- <a href=\"https://www.bing.com/images/search?q=" . urlencode($tag['label']) . "\" target=\"_blank\">" . $tag['label'] . "</a><br>"; } } } ?> <!-- HTML form for image upload or URL input -->
Functions (Helper Functions):
The code uses helper functions (not shown above) to create links to Bing image search results for each suggested breed.
Testing and Results:
The tutorial includes several test images and their results, highlighting both successes and failures of the breed identification. The accuracy is comparable to Microsoft's What-Dog AI, demonstrating the feasibility of building a similar application with Diffbot.
Conclusion:
This tutorial showcases the ease of integrating AI-powered image analysis into a simple web application. While the accuracy isn't perfect, it highlights the potential of readily available APIs for building powerful image recognition features. Remember to replace placeholder tokens and IDs with your own.
The above is the detailed content of Building Microsoft's What-Dog AI in under 100 Lines of Code. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Alipay PHP...

JWT is an open standard based on JSON, used to securely transmit information between parties, mainly for identity authentication and information exchange. 1. JWT consists of three parts: Header, Payload and Signature. 2. The working principle of JWT includes three steps: generating JWT, verifying JWT and parsing Payload. 3. When using JWT for authentication in PHP, JWT can be generated and verified, and user role and permission information can be included in advanced usage. 4. Common errors include signature verification failure, token expiration, and payload oversized. Debugging skills include using debugging tools and logging. 5. Performance optimization and best practices include using appropriate signature algorithms, setting validity periods reasonably,

Session hijacking can be achieved through the following steps: 1. Obtain the session ID, 2. Use the session ID, 3. Keep the session active. The methods to prevent session hijacking in PHP include: 1. Use the session_regenerate_id() function to regenerate the session ID, 2. Store session data through the database, 3. Ensure that all session data is transmitted through HTTPS.

How to debug CLI mode in PHPStorm? When developing with PHPStorm, sometimes we need to debug PHP in command line interface (CLI) mode...

The application of SOLID principle in PHP development includes: 1. Single responsibility principle (SRP): Each class is responsible for only one function. 2. Open and close principle (OCP): Changes are achieved through extension rather than modification. 3. Lisch's Substitution Principle (LSP): Subclasses can replace base classes without affecting program accuracy. 4. Interface isolation principle (ISP): Use fine-grained interfaces to avoid dependencies and unused methods. 5. Dependency inversion principle (DIP): High and low-level modules rely on abstraction and are implemented through dependency injection.

How to automatically set the permissions of unixsocket after the system restarts. Every time the system restarts, we need to execute the following command to modify the permissions of unixsocket: sudo...

Static binding (static::) implements late static binding (LSB) in PHP, allowing calling classes to be referenced in static contexts rather than defining classes. 1) The parsing process is performed at runtime, 2) Look up the call class in the inheritance relationship, 3) It may bring performance overhead.

Sending JSON data using PHP's cURL library In PHP development, it is often necessary to interact with external APIs. One of the common ways is to use cURL library to send POST�...
