Yes sir please. Some algorithms are remaining in this like Gradient boosting for classification, xgboost, cat boost, dbscan. Pls pls continue the series.
If you are getting error "ModuleNotFoundError: No module named 'sklearn.neighbors._dist_metrics'" then try installing lower version of sklearn using "pip install scikit-learn==0.24.2"
brother your video is very helpful but having some error "subprocess-exited-with-error" while installing sklearn. can you you do something about it. my python version is 3.8
I am facing some problem at 22:39.The api is not working perfectly.l, showing an error like" ValueError: dtype='numeric' is not compatible with arrays of bytes/strings. Convert your data to numeric. Please give me a solution
Does anyone know the answer to these two questions? 1- Is using Postman only for testing the model on the local server or is it necessary to build a mobile application in android studio? 2- Does only the application developer have access to Heroku? Or with the release of this application in app stores, anyone can get an output by logging in application?
hello sir...can we use it if we are using cloud firestore to store data??i mean building an android app on kotlin but making use of the technique you mentioned in the video to store the resulting data on the cloud firestore?
import pickle import io # Your input string containing the pickled model input_string = ... # Convert the input string to a bytes-like object bytes_io = io.BytesIO(input_string.encode('utf-8')) # Load the pickled model from the bytes-like object model = pickle.load(bytes_io)
can you please the part when you converted a machine learning model to a pickle file and pasted to the pycharm because when i do that in text format that file was not supported in pycharm
Hello If i have train model decision tree on text data and generate model.pkl, encoder.pkl, vectorizer.pkl now i want to convert it into coremlmodel how can i do this?? and how can we use this on IOS side?
I'm trying to use React Native to fetch from my python api (which is running on localhost) not heraku, but it's not able to fetch from the api at all, on postman it's working fine... So do I need to deploy it on heraku to work or is there another way?
Also, you'll need to use a test dataset to discover min/max values of the input tô quantize it during inference, along with the output values of the regression by computing min/max values from using the test dataset.
sir, i want to integrate pytesseract in flutter app. how can we do that?? is there any other way to read text from image folder other than google ml kit???
sir i am getting the below error while testing the api in postman: ValueError: dtype='numeric' is not compatible with arrays of bytes/strings.Convert your data to numeric sir tell me where i made mistake
sir always getting this error please tell me solution . ---------------------------------- Application error An error occurred in the application and your page could not be served. If you are the application owner, check your logs for details. You can do this from the Heroku CLI with the command heroku logs --tail
Error: The term heroku is not recognised as the name of a cmdlet, function , script file,... " . It is showing while running heroku login in pycharm . Can anyone help me out
Hi Sir, I am facing a problem while importing pickle and loading pickle file on heroku. I've added pickle in requirements.txt file. Can you please help me?
If your Video is in a foreign language kindly make sure your title is in THAT language too so others don't waste their time and so that you don't come up when other languages are searched
I regret i cannot like it 100 times... Very informative video and good way of teaching😊
Brother how to copy file from jupyta and paste in pycharm
1st export it by pickle bro then it will have extension pkl something like that@@assamvoice7100
Sir please continue the 100 days of ml playlist. This is a very helpful and rare content no one teaches the topics in such detailed way.
yes sir please
Yes sir please. Some algorithms are remaining in this like Gradient boosting for classification, xgboost, cat boost, dbscan. Pls pls continue the series.
Agree
@@raghavagrawal6263 lt's greatfull
Ye hui na koi tagdi cheez … maza aa Gaya dada …
Very helpful video for my final project sir. Very Very thank you. Have a good day
Thank you very much, your teaching style is excellent, Even i was completely new for Android but i understood this project completely
This is an outstanding video helped me in completing my Final year project.... thank you so much for this👑❤️
the way you are teaching is so amazing.... keep doing this
Aap bahut hi badhiya padate ho as compared to others so plz carry on rakho na wo 100 days wali python ki series
Exceptional way of teaching 💯👏❤️
Thank you so much, with the help of this video I got to know how ML work in Android app..
Thank u so much sir u helped me a lot in my final yr project🎉❤❤
Thank You Sir. It will help me in my semester Project
You are literally Amazing ! 😇
thanks a lot sir , this was exactly what i needed
Hello sir, this is very helpful..but can you just suggest where to deploy flask app as heroku is paid now.
Thank you!
Sir..please reply!!
Try render
Thank you so much sir 💯
Rather than you can convert your model into the tflite and easily implement in android application
Thank You very much!
sir svm v use krsakte hai na? for sentiment analysis..and using it in a app...same process se h jayega na??
THANKS, YOU ARE A LIFE SAVER!!
Shaandaar, mzedar
Sir, Have you deal with deep learning image classification flask web app to android application?
If you are getting error "ModuleNotFoundError: No module named 'sklearn.neighbors._dist_metrics'" then try installing lower version of sklearn using "pip install scikit-learn==0.24.2"
pip install scikit-learn==1.3.2
python -c "import sklearn; print(sklearn.__version__)" this try for terminal
brother your video is very helpful but having some error "subprocess-exited-with-error" while installing sklearn. can you you do something about it. my python version is 3.8
Sir Please Recommendation system or Machine Learning or Deep learning k more project bnyeee plz.
I am facing some problem at 22:39.The api is not working perfectly.l, showing an error like" ValueError: dtype='numeric' is not compatible with arrays of bytes/strings. Convert your data to numeric. Please give me a solution
change line 19 to input_query = np.array([[cgpa, iq, profile_score]], dtype=float)
@@tori8818 thank you so much.. this helped me a lot.
Sir how to convert deep learning model into hybrid app. Please make video on this topic. Thank you!
Does anyone know the answer to these two questions?
1- Is using Postman only for testing the model on the local server or is it necessary to build a mobile application in android studio?
2- Does only the application developer have access to Heroku? Or with the release of this application in app stores, anyone can get an output by logging in application?
Bro heroku is not working
I need an alternative
hello sir...can we use it if we are using cloud firestore to store data??i mean building an android app on kotlin but making use of the technique you mentioned in the video to store the resulting data on the cloud firestore?
Bhai aap python programming kai video kyu nahi dal rahe ho playlist mai 100 days ki series mai
Great teacher
sir i have run same program but i didnt got output instead app is closing automatically
Thank you so much sir, :)
At 19:35
What to write when we are having the input string
Instead of 'rb'?
model=pickle.load(open('model.pkl' ,'rb'))
same question... Have you got answer bro
import pickle
import io
# Your input string containing the pickled model
input_string = ...
# Convert the input string to a bytes-like object
bytes_io = io.BytesIO(input_string.encode('utf-8'))
# Load the pickled model from the bytes-like object
model = pickle.load(bytes_io)
sir agar hum image classification ke liye kar sakthe hey toh same process chalega kya ?
can you please the part when you converted a machine learning model to a pickle file and pasted to the pycharm because when i do that in text format that file was not supported in pycharm
Hello If i have train model decision tree on text data and generate model.pkl, encoder.pkl, vectorizer.pkl now i want to convert it into coremlmodel how can i do this?? and how can we use this on IOS side?
as heroku is paid can you make it on some other server
Render
Thanks sir...
sir, possible if I not use FLASK in android but make an own API in Cloud Google so we can use get API from that?
I'm trying to use React Native to fetch from my python api (which is running on localhost) not heraku, but it's not able to fetch from the api at all, on postman it's working fine... So do I need to deploy it on heraku to work or is there another way?
can you please share that how to make an android app for a DL model?
Sir I need to pass integer and string values with the array to the API. Please can you tell me how can I do it?
Did you got any soln?
If I have no idea about the android studio, then will I be able to prepare a project by watching this video in 2 days?
Yes
Node js website ko kayse convert mL model convert kare ge???
Sir heroku is asking for money … is there no free option available
Hi sir, I need an app with continuous video input and I want to sample the images with gap 1 min . how to write the code
Can a Transformer based model be implemented similarly?
heroku is not free Now ....Do we have any alternative?
I am doing Rnn model...do the approach will be same?
What is model.pkl?
I have done a ML project in python in spider on anaconda software.. I have to convert it into Android app.. Can you tell me any idea?
Hi I am getting below error after installing scikit-learn
ModuleNotFoundError: No module named 'sklearn.neighbors._dist_metrics' . Please help
Hi. How do I do this for a linear regression model deployment?? I'm asking because the values of linear regression are float.
can quantize the array of weights by min/max to int8 or int16 and quantize the input during inference.
Also, you'll need to use a test dataset to discover min/max values of the input tô quantize it during inference, along with the output values of the regression by computing min/max values from using the test dataset.
sir, i want to integrate pytesseract in flutter app. how can we do that??
is there any other way to read text from image folder other than google ml kit???
Tensorflow Lite se nhi ho skta?
Please create Recommandation System in Android Studio
using tflite?
@@campusx-official yes
sir i am getting the below error while testing the api in postman:
ValueError: dtype='numeric' is not compatible with arrays of bytes/strings.Convert your data to numeric
sir tell me where i made mistake
got any solution?
@@kushagrasingh6361 nope
change line 19 to input_query = np.array([[cgpa, iq, profile_score]], dtype=float)
can you please tell how to send image file to heroku instead of text data in android studio ?
Thank you bro
sir krishna naik ap k bhai h?
Thank you sor
Heroku is not free anymore. What to do?
sir
requirements.txt file with python hamarah pass option show nai ho rha
Cool
Only android app me convert karna defuclt laga
Heroku is no longer free, what steps to take?
sir always getting this error please tell me solution .
----------------------------------
Application error
An error occurred in the application and your page could not be served. If you are the application owner, check your logs for details. You can do this from the Heroku CLI with the command
heroku logs --tail
im having the same error. did u find any fix?
thank you for nice video
Sir how to copy pickle file in pycharm
while signing up in heruko it is giving errors
Can you please make a project on Tensorflow lite + flutter ..🔥
will try
@@campusx-official please sir . its very helpful.
offline nahi hoga?
Video quality is very Poor. Please solve this problem
wait for sometime. The HD quality is being processed
Pre recieve hook decline error how to solve this
Error: The term heroku is not recognised as the name of a cmdlet, function , script file,... " . It is showing while running heroku login in pycharm . Can anyone help me out
Have you found the answer? Bcs I am going through the same thing too.
@@zoroslvr just restart your compiler, that'll work . Revert to me if it is still not solved
Hi Sir,
I am facing a problem while importing pickle and loading pickle file on heroku. I've added pickle in requirements.txt file. Can you please help me?
Do it manually. Means go to file for copy paste using my computer
sir can we do same for neural networks
Geeting error at 22.30 min sending request throw post man that input X contains NaN
while creating the input query variable convert the variables got through post request to data type explicitly before feeding it to the model
Application error on heroku
how did u create model.pkl
Great ❤❤❤❤❤
Hello sir
I am not getting any link after debugging how to get the link ?
Follow the steps
Will it work on Kotlin?
Sir aap values kam karke vi dikha dete, mera serf '1' hi answer a raha hey, 0 nhi mil raha hay
Bhai Mera bhi same ho raha he ? , Terepass koi solution he
@rahulbiswas3824 kuch pata he tho bata de
Sir*
can you please convert car prediction ml model to an android app
You can do it yourself after watching this video
Does it apply FOR kotlin as well??
please help me
If your Video is in a foreign language kindly make sure your title is in THAT language too so others don't waste their time and so that you don't come up when other languages are searched
Nice video sir, i have an issue : ModuleNotFoundError: No module named 'sklearn.neighbors._dist_metrics'...please solve this problem
sir i get Error i.e,No module named 'sklearn.neighbors._dist_metrics'
did u solved this error, if yes ? then how
@@mohitrathore9307 no bro
@@mohitrathore9307 did you got
pip install sklearn , in your conda environment, that'll work
@@wongziao9432 did you try is it working in your system
This is an outstanding video helped me in completing my Final year project.... thank you so much for this👑❤️
hi bro
bro i want to deploy liver disease prediction using machine learning in android ...please tell bro