• How much of your job can you delegate to AI?
    www.macworld.com
    MacworldAI tools are easy to use, difficult to master. Sure, anyone can give a basic prompt ChatGPT, but theyll get a pretty basic response back. If you want to use AI like a pro, then check out the ChatGPT and Automation E-Degree.This 25-hour deep dive goes into expert-level methods to use AI to amplify your creativity, enhance your communication, and automate all those annoying, repetitive jobs you dont want to do.This e-degree, courtesy of Eduonix Learning Solutions, gives you unlimited access to 12 courses, totaling over 25 hours of instruction. Its your ticket to mastering ChatGPT and 20+ other AI tools designed to crush real-world challenges in marketing, business, and coding.Youll hop into practical applications and learn to bend ChatGPT to your will, customizing it for different industries like a digital chameleon. Automate those tedious tasks and reclaim your precious time.Working with data? You can use AI to transform it into eye-catching visuals thatll make your presentations pop.March 30 at 11:59 p.m. PT is the deadline to get the ChatGPT and Automation E-Degree on sale for $19.97.ChatGPT & Automation E-Degree $19.97See DealStackSocial prices subject to change.
    0 Reacties ·0 aandelen ·63 Views
  • Apple Watch charging without the drama
    www.macworld.com
    MacworldCharging your Apple Watch shouldnt be a daily scavenger hunt for cables and outlets. With the PowerBand for Apple Watches, you get a built-in MagSafe-compatible charger right in your watchbandso you can charge anytime, anywhere without the hassle.For a limited time, you can snag this sleek, ultra-thin charging band for just $39.99 (regularly $49).PowerBand isnt your typical clunky charging solution. Its just has a seamless MagSafe charger built right into the band. It magnetically attaches to your Apple Watch for precise, reliable wireless chargingall while maintaining a slim, comfortable fit.The USB connector is right in the watch band itself. When youre not charging, the connector stays fully concealed in its protective cover, blending perfectly into the modern, minimalist design.Just plug in, snap your watch into place, and let the PowerBand do its thing. No clutter. No fumbling for cables. Just effortless charging whenever you need it.With MagSafe-compatible charging, PowerBand eliminates the frustration of traditional charging docks. Just connect it to any USB outlet, and youve got instant, reliable powerperfect for travel, office use, or as a backup charger.Dont miss getting the PowerBand while its just $39.99 for a limited time.PowerBand: Apple Watch Band with Built-In MagSafe Charger $39.99Get It HereStackSocial prices subject to change.
    0 Reacties ·0 aandelen ·58 Views
  • 0 Reacties ·0 aandelen ·32 Views
  • 0 Reacties ·0 aandelen ·30 Views
  • 0 Reacties ·0 aandelen ·32 Views
  • 0 Reacties ·0 aandelen ·35 Views
  • 0 Reacties ·0 aandelen ·37 Views
  • Sonys Soneium blockchain teams up with Line mini apps on Web3
    venturebeat.com
    Soneium, powered by Sony Block Solutions Labs, is collaborating with Line to bring four successful mini-apps onchain in coming months.Read More
    0 Reacties ·0 aandelen ·42 Views
  • Google calls Gemma 3 the most powerful AI model you can run on one GPU
    www.theverge.com
    A little over a year after releasing two open Gemma AI models built from the same technology behind its Gemini AI, Google is updating the family with Gemma 3. According to the blog post, these models are intended for use by developers creating AI applications capable of running wherever theyre needed, on anything from a phone to a workstation with support for over 35 languages, as well as the ability to analyze text, images, and short videos. The company claims that its the worlds best single-accelerator model, outperforming competition from Facebooks Llama, DeepSeek, and OpenAI for performance on a host with a single GPU, as well as optimized capabilities for running on Nvidias GPUs and dedicated AI hardware. Gemma 3s vision encoder is also upgraded, with support for high-res and non-square images, while the new ShieldGemma 2 image safety classifier is available for use to filter both image input and output for content classified as sexually explicit, dangerous, or violent.To go deeper into those claims, you can check out the 26-page technical report.Last year it was unclear how much interest there would be in a model like Gemma, however, the popularity of DeepSeek and others shows there is interest in AI tech with lower hardware requirements. Despite its claims of advanced capabilities, Google also says, Gemma 3s enhanced STEM performance prompted specific evaluations focused on its potential for misuse in creating harmful substances; their results indicate a low risk level.What exactly constitutes an open or open source AI model remains a topic of debate, and with Googles Gemma, that has focused on the companys license that restricts what people are allowed to use it for, which has not changed with this new release. Google is continuing to promote Gemma with Google Cloud credits, and the Gemma 3 Academic program will allow academic researchers to apply for $10,000 worth of credits to accelerate their research.
    0 Reacties ·0 aandelen ·38 Views
  • A Step by Step Guide to Build an Interactive Health Data Monitoring Tool Using Hugging Face Transformers and Open Source Model Bio_ClinicalBERT
    www.marktechpost.com
    In this tutorial, we will learn how to build an interactive health data monitoring tool using Hugging Faces transformer models, Google Colab, and ipywidgets. We walk you through setting up your Colab environment, loading a clinical model (like Bio_ClinicalBERT), and creating a user-friendly interface that accepts health data input and returns interpretable disease predictions. This step-by-step guide highlights the capabilities of advanced NLP models in healthcare and makes these powerful tools accessible, even for those new to machine learning and interactive programming.!pip install transformers torch ipywidgetsFirst, we install three essential libraries: transformers for working with state-of-the-art NLP models, torch for deep learning computations, and ipywidgets for creating interactive widgets within Colab.from transformers import AutoTokenizer, AutoModelForSequenceClassification, pipelineimport ipywidgets as widgetsfrom IPython.display import display, clear_outputNow we import essential modules: it brings in classes and functions from the Hugging Face Transformers library for model handling and text classification. We also import ipywidgets and IPython display functions to create and manage interactive outputs within Google Colab.# Using a publicly available clinical modelmodel_name = "emilyalsentzer/Bio_ClinicalBERT"tokenizer = AutoTokenizer.from_pretrained(model_name)model = AutoModelForSequenceClassification.from_pretrained(model_name)health_monitor = pipeline("text-classification", model=model, tokenizer=tokenizer)We load a publicly available clinical model, emilyalsentzer/Bio_ClinicalBERT, along with its tokenizer, and set up a text classification pipeline named health_monitor for processing and analyzing clinical health data.# Broad Disease Mappingbroad_disease_mapping = { "LABEL_0": "No significant condition", "LABEL_1": "Cardiovascular Diseases (e.g., hypertension, heart disease)", "LABEL_2": "Metabolic and Endocrine Disorders (e.g., diabetes, thyroid issues)", "LABEL_3": "Respiratory Diseases (e.g., asthma, COPD)", "LABEL_4": "Neurological Conditions (e.g., stroke, epilepsy)", "LABEL_5": "Infectious Diseases (e.g., influenza, COVID-19)", "LABEL_6": "Oncological Conditions (e.g., cancers)", "LABEL_7": "Gastrointestinal Disorders (e.g., IBS, Crohns disease)", "LABEL_8": "Musculoskeletal Disorders (e.g., arthritis, osteoporosis)", "LABEL_9": "Immunological/Autoimmune Disorders (e.g., lupus, rheumatoid arthritis)"}We create a dictionary that maps the models generic output labels (like LABEL_0) to specific, broad disease categories. It helps translate the models predictions into meaningful clinical interpretations, covering conditions from cardiovascular diseases to autoimmune disorders.# Function to Analyze Health Datadef analyze_health_data(input_text): prediction = health_monitor(input_text)[0] disease_prediction = broad_disease_mapping.get(prediction["label"], "Unknown Condition") output_str = ( f"Raw Model Output: {prediction}n" f"Interpreted Prediction: {disease_prediction}n" f"Confidence Score: {prediction['score']*100:.2f}%" ) return output_strAbove function analyze_health_data, takes clinical text as input, and processes it using the health_monitor pipeline. It retrieves the models prediction, then maps the generic label (like LABEL_0) to a specific disease category from the broad_disease_mapping dictionary. Finally, it formats the raw prediction, the interpreted disease category, and the confidence score into a readable string before returning it.# Interactive Interface Using ipywidgetsinput_text = widgets.Textarea( value='Enter patient health data here...', placeholder='Type the clinical notes or patient report', description='Health Data:', disabled=False, layout=widgets.Layout(width='100%', height='100px'))We create an interactive text area widget using ipywidgets. It provides a pre-populated prompt, a placeholder for guidance, and a specified layout, allowing users to input clinical notes or patient reports in a user-friendly interface.# Button widget to trigger the analysisanalyze_button = widgets.Button( description='Analyze', disabled=False, button_style='', # Options: 'success', 'info', 'warning', 'danger' or '' tooltip='Click to analyze the health data', icon='check')Then we create a button widget using ipywidgets. The button is labeled Analyze and includes a tooltip (Click to analyze the health data) and an icon (check) to enhance user experience. This button will trigger the health data analysis function when clicked, allowing the model to process the input clinical text.# Output widget to display the resultsoutput_area = widgets.Output()def on_analyze_button_clicked(b): with output_area: clear_output() input_data = input_text.value result = analyze_health_data(input_data) print(result)analyze_button.on_click(on_analyze_button_clicked)display(input_text, analyze_button, output_area)Finally, we create an output widget to display the analysis results and define a callback function (on_analyze_button_clicked) triggered when the Analyze button is clicked. The function clears any previous output, retrieves the input data from the text area, processes it using the analyze_health_data function, and prints the result in the output area. Finally, the buttons click event is linked to this function, and all widgets (input area, button, and output display) are rendered together for interactive use.Sample Input and OutputIn conclusion, this tutorial has shown how to seamlessly integrate state-of-the-art NLP tools with an interactive interface to analyse clinical health data. You can create a system that interprets and categorises health information into actionable insights by leveraging Hugging Faces pre-trained models and the simplicity of Google Colab and ipywidgets.Here is the Colab Notebook. Also,dont forget to follow us onTwitterand join ourTelegram ChannelandLinkedIn Group. Dont Forget to join our80k+ ML SubReddit. Asif RazzaqWebsite| + postsBioAsif Razzaq is the CEO of Marktechpost Media Inc.. As a visionary entrepreneur and engineer, Asif is committed to harnessing the potential of Artificial Intelligence for social good. His most recent endeavor is the launch of an Artificial Intelligence Media Platform, Marktechpost, which stands out for its in-depth coverage of machine learning and deep learning news that is both technically sound and easily understandable by a wide audience. The platform boasts of over 2 million monthly views, illustrating its popularity among audiences.Asif Razzaqhttps://www.marktechpost.com/author/6flvq/Reka AI Open Sourced Reka Flash 3: A 21B General-Purpose Reasoning Model that was Trained from ScratchAsif Razzaqhttps://www.marktechpost.com/author/6flvq/A Coding Implementation of Web Scraping with Firecrawl and AI-Powered Summarization Using Google GeminiAsif Razzaqhttps://www.marktechpost.com/author/6flvq/A Step by Step Guide to Build a Trend Finder Tool with Python: Web Scraping, NLP (Sentiment Analysis & Topic Modeling), and Word Cloud VisualizationAsif Razzaqhttps://www.marktechpost.com/author/6flvq/Meet Manus: A New AI Agent from China with Deep Research + Operator + Computer Use + Lovable + Memory Parlant: Build Reliable AI Customer Facing Agents with LLMs (Promoted)
    0 Reacties ·0 aandelen ·40 Views