Python Forum

Full Version: About Machine Learning
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
help me Machine Learning with real world problem like How to make model,how train model,how to evaluate about accuracy. Any book, web resources or anything that help me.
https://www.tensorflow.org/

You're welcome :)
(Sep-12-2017, 04:59 PM)rajeev1729 Wrote: [ -> ]help me Machine Learning with real world problem like How to make model,how train model,how to evaluate about accuracy. Any book, web resources or anything that help me.

Machine Learning For Dummies
Book by John Mueller and Luca Massaron
I think you should read this book, if you learn or know about machine learning and project then I suggest you, you can join an industrial training company. I am a b.tech student I completed my industrial training in CETPA. you can join such type of company, they work on real world project
I want to rename multiple images name inside folder but after rename 1st it give error like File not found 'fire1.jpg'->'fire1.jpg'. please help.
# importing os module 
import os 
  
# Function to rename multiple files 
def main(): 
    i = 0
      
    for filename in os.listdir("xyz"): 
        dst ="Hostel" + str(i) + ".jpg"
        src ='xyz'+ filename 
        dst ='xyz'+ dst 
          
        # rename() function will 
        # rename all the files 
        os.rename(src, dst) 
        i += 1
  
# Driver Code 
if __name__ == '__main__': 
      
    # Calling main() function 
    main()