Тёмный
Clarifai
Clarifai
Clarifai
Подписаться
Clarifai is an artificial intelligence company that excels in visual recognition, solving real-world problems for businesses and developers alike. Founded in 2013 by Matthew Zeiler, a foremost expert in machine learning, Clarifai has been a market leader since winning the top five places in image classification at the ImageNet 2013 competition, and predicts more than 1.4 billion concepts in photos and videos every month. Clarifai’s powerful image and video recognition technology is built on the most advanced machine learning systems and made easily accessible by a clean API, empowering developers all over the world to build a new generation of intelligent applications. The company has amassed a suite of clients that range from Fortune 500 companies to startups and small development teams, including Buzzfeed, Trivago, 500px, StyleMePretty, and many more.
Clarifai and Deepgram Partnership 🎉
3:54
5 месяцев назад
Label Faster with AI Assist
3:28
10 месяцев назад
Clarifai Python SDK: Getting Started Tutorial
4:09
11 месяцев назад
Transfer Learning with LLMs
9:32
Год назад
Clarifai NER Demo
1:03
Год назад
Text Summarization Demo
3:11
Год назад
Text to Speech
1:07
Год назад
Model Evaluation Demo
3:04
Год назад
Комментарии
@alifadl386
@alifadl386 3 дня назад
That's great!
@kesava425
@kesava425 22 дня назад
Is clarifai is free to use?
@theworldsai
@theworldsai 17 дней назад
Hi, Yes, you can get started for free. Sign up here: clarifai.com/signup
@makabongwemetuso6977
@makabongwemetuso6977 Месяц назад
Hey Andrew, thanks for the clear and concise demo. I did this yesterday, and within under an hour I was able to finish this project 😎 Clarifai is a remarkable tool!!
@RaulDiaz-bl9gw
@RaulDiaz-bl9gw 2 месяца назад
I get this: "I'm sorry, but it seems that the context information you mentioned is missing" even though I am using: rag_agent.upload(file_path=r'bavykina-et-al-2019-turning-a-methanation-co-catalyst-into-an-in-co-methanol-producer.pdf',chunk_size= 1024, chunk_overlap= 200)
@theworldsai
@theworldsai 17 дней назад
Hi, could you reach out to us on Discord here? discord.gg/UWKpu8mX4y
@oddedits_v1
@oddedits_v1 2 месяца назад
i think this site is not workin anymore
@tylerdurden4285
@tylerdurden4285 3 месяца назад
Good looking product. Please use a different voice for presentation as its way to heavy on vocal fry.
@evanmarcinkevage8806
@evanmarcinkevage8806 3 месяца назад
This is an absolutely incredible video. I'm currently doing an internship as an Electrical Engineering undergraduate at my university regarding using lasers to cause misclassification in image recognition Neural Networks. This video alongside your other content has been incredibly useful and mind opening for me! I hope you read this comment, and if you want to respond I'd love to ask questions.
@Hi_bro14
@Hi_bro14 4 месяца назад
Upload this tutorial video
@meetarpitjain
@meetarpitjain 5 месяцев назад
Getting an error llama index, installed pip install llama-index-core==0.10.1. Now getting Import error:ImportError: cannot import name 'get_default_fs' from 'llama_index.core.readers.file.base' (/usr/local/lib/python3.10/dist-packages/llama_index/core/readers/file/base.py) ImportError: Unable to import PDFReader How to resolve this issue?
@theworldsai
@theworldsai 4 месяца назад
Hi Arpit, try updating the Clarifai and llama-index dependencies: pip install clarifai==10.3.1 and pip install llama-index-core==0.10.24
@meetarpitjain
@meetarpitjain 4 месяца назад
@@theworldsai Thanks for replying. Was this fixed on 10.3.1. I could not find the details of this release on your website. Please share the link where can I find the updates on 10.3.1
@theworldsai
@theworldsai 4 месяца назад
@@meetarpitjain please check this: pypi.org/project/clarifai/10.3.1/
@tonic_1
@tonic_1 5 месяцев назад
very cool partnership !
@Jupiter-Optimus-Maximus
@Jupiter-Optimus-Maximus 6 месяцев назад
I've probably seen 1001 AI videos by now, but your videos are definitely among the very best. My master's thesis thanks you.🙂 Just one small thing, please don't be so fast, I'm already playing your videos at 60%. 😂 Don't you have to breathe? Like every 10 minutes or so? 😄 I'm just kidding, please have mercy for idiots like me. 🤗
@DreamsAPI
@DreamsAPI 6 месяцев назад
Tried uploading my training data in json but it is not supported.
@theworldsai
@theworldsai 6 месяцев назад
Kindly reach out to us and share your query on our Discord channel: discord.gg/UWKpu8mX4y
@ahmadtalhaansari4456
@ahmadtalhaansari4456 7 месяцев назад
Here is the code import streamlit as st from PIL import Image import pandas as pd import base64 from clarifai_grpc.channel.clarifai_channel import ClarifaiChannel from clarifai_grpc.grpc.api import service_pb2_grpc stub = service_pb2_grpc.V2Stub(ClarifaiChannel.get_grpc_channel()) st.title("Classifier Demo") st.header("Step 1: Enter an API key") key = st.text_input("API Key") if key == '': st.warning("An API Key has not been entered.") st.stop() else: st.write("API Key has been uploaded.") file_data = st.file_uploader("Upload Image") if file_data == None: st.warning("File needs to be uploaded.") st.stop() else: image = Image.open(file_data) st.image(image) from clarifai_grpc.grpc.api import service_pb2, resources_pb2 from clarifai_grpc.grpc.api.status import status_code_pb2 # Create an application on Clarifai and put its ID here. YOUR_APPLICATION_ID = "???" # This is how you authenticate. metadata = (("authorization", f"Key {key}"),) request = service_pb2.PostModelOutputsRequest( # This is the model ID of a publicly available General model. You may use any other public or custom model ID. model_id="aaa03c23b3724a16a56b629203edc62c", user_app_id=resources_pb2.UserAppIDSet(app_id=YOUR_APPLICATION_ID), inputs=[ resources_pb2.Input( data=resources_pb2.Data(image=resources_pb2.Image(base64=file_data.getvalue())) ) ], ) response = stub.PostModelOutputs(request, metadata=metadata) if response.status.code != status_code_pb2.SUCCESS: print(response) raise Exception(f"Request failed, status code: {response.status}") names = [] confidences = [] for concept in response.outputs[0].data.concepts: names.append(concept.name) confidences.append(concept.value) # st.write( "%12s: %.2f" % (concept.name, concept.value)) df = pd.DataFrame({ "Concept Name" : names, "Concept Confidences" : confidences }) st.dataframe(df)
@justinstorm
@justinstorm 7 месяцев назад
That really clarifai’d things 🥁
@WilSon-ob9qd
@WilSon-ob9qd 8 месяцев назад
Please continue this with a 3rd part...I love your presentation and it's easy to understand
@smsarmad8479
@smsarmad8479 8 месяцев назад
@Clarifai where is the next session?
@bcnidiomas6528
@bcnidiomas6528 9 месяцев назад
very nice
@coyotesays7463
@coyotesays7463 9 месяцев назад
hi I am not abe to add PAT
@mdazreefu3898
@mdazreefu3898 10 месяцев назад
Hi, can you do that to moving images/video ?
@theworldsai
@theworldsai 9 месяцев назад
Hi, Yes you can use AI Assist for both moving images and video. Check out the documentation here: docs.clarifai.com/portal-guide/annotate/label-types/. Reach out to us in discord, if you need any help: discord.gg/NxVt2cEF8u
@howardlevenson
@howardlevenson 10 месяцев назад
Very impressive demonstration.
@MyCs95-yz8ke
@MyCs95-yz8ke 11 месяцев назад
is this model support Arabic?
@burhonabdullayev9372
@burhonabdullayev9372 Год назад
hi how are bro can you give me your codes
@skyhappy
@skyhappy Год назад
Does Clarifai allow me to deploy it?
@luis96xd
@luis96xd Год назад
This is such an interesting platform, I will start creating apps with it! Thanks 😁💯👏
@lolstalk
@lolstalk Год назад
That's cool, but how to upload model
@relaxation-connection
@relaxation-connection Год назад
would I need to upload all files for this to work? I have terabytes of video files
@波兰第二中锋
@波兰第二中锋 Год назад
part3 update plsi need it
@CrispinCourtenay
@CrispinCourtenay Год назад
Some of your sheep are goats ;-)
@AdamRossD
@AdamRossD Год назад
Definitely some cows in the mix too
@gabtrex
@gabtrex Год назад
how can i implement it into a python script to analyze images
@yehiaibrahim1381
@yehiaibrahim1381 Год назад
Hi, i want to build a device that uses image recognition API to help the blind for my school project and idk how to start can you help me ?
@illiadubrovin8995
@illiadubrovin8995 11 месяцев назад
same here
@om...varunparihar1028
@om...varunparihar1028 Год назад
How to integrate it.what is the yearly subscription for buy
@andrewl6539
@andrewl6539 Год назад
It looks amazing. Get to the top quicker - Promo`SM !!
@icomment2226
@icomment2226 Год назад
Thank you. For a newbie in the EOIR industry, this video is helpful. Please make more.
@je-freenorman7787
@je-freenorman7787 Год назад
Are pills good?
@jeremebattaile4725
@jeremebattaile4725 2 года назад
PЯӨMӨƧM 🌺
@silviacobelo1
@silviacobelo1 2 года назад
Very interesting webinar
@convolutionalnn2582
@convolutionalnn2582 2 года назад
What are maths require for computer vision research scientist?
@ayoubchaari6883
@ayoubchaari6883 2 года назад
Documentation please
@Stephanie-ny2et
@Stephanie-ny2et 2 года назад
The equations def made me tear up laughing out loud! 🤣🤩 thanks for the heads up. Lol
@accurasincyoutubechannel3798
@accurasincyoutubechannel3798 2 года назад
One of the key challenges for insurance companies is to maintain a balance between costs attached to claims assessment and processing efficiency which directly impacts client satisfaction levels. To contextualize, organize, and draw true meaning from data, insurers are turning to artificial intelligence (AI) to augment the capabilities of their business experts.
@Mary-bc8my
@Mary-bc8my 2 года назад
What is the difference between building a workflow for data labeling and using an AI assistant?
@flloyd
@flloyd 2 года назад
Finally, Someone who listens
@globaleestore3046
@globaleestore3046 2 года назад
i cant seem to access the module option in my page how can i fix that
@aboudezoa
@aboudezoa 2 года назад
If there is model already can detect the objects I need why to start from scratch and label my data
@theworldsai
@theworldsai 2 года назад
This is a great quesiton. This is because many users need to create custom models that recognize objects not recognized by a general model. You may want to create a model that recognizes specific brands or styles of shoes for example.
@aboudezoa
@aboudezoa 2 года назад
@@theworldsai 👍🏼 thank you
@abdshomad
@abdshomad 2 года назад
Can we get the link to the Google Doc and Google Slides shown during this presentation? It would be great!
@lihanou
@lihanou 2 года назад
Where can I find more materials on pruning?
@kyrilcouda
@kyrilcouda 2 года назад
i would like to see some too
@affrinsultana3285
@affrinsultana3285 2 года назад
did you find any?
@quonxinquonyi8570
@quonxinquonyi8570 2 года назад
@@affrinsultana3285 there is a Cornell course on youtube by professor muhammad abdulfatheh named as machine learning hard ware....also an iit course on youtube named “ computer architecture for ai” ca4ai has also mentioned this pruning technique but not in detail...check out both, will help you definitely
@unitedwecode
@unitedwecode 2 года назад
Seems promising! Keep up the great work innovating.
@gaboceron100
@gaboceron100 2 года назад
First :) keep on it Clarifai!
@meetpurohit1030
@meetpurohit1030 3 года назад
Documentation