Skip to content
View Zakaria-pro's full-sized avatar
  • ENSIAS
Block or Report

Block or report Zakaria-pro

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
Zakaria-pro/README.md

π‡πžπ₯π₯𝐨 𝐭𝐑𝐞𝐫𝐞, 𝐟𝐞π₯π₯𝐨𝐰 <πšπšŽπšŸπšŽπš•πš˜πš™πšŽπš›πšœ/>!

  • πŸ‘‹ My name is Zakariae Hamedoun
  • πŸ‘€ I’m interested in Web & Mobile Developement

SKILLS :

Javascript / Typescript :

lamgs lamgs l

l langs l l

Web Frameworks :

l

IOT

l l

Machine Learning & Image Processing

l l l l

DESIGN :

Blender Adobe Illustrator Canva Adobe Premiere pro

Pinned

  1. Data_Acquisition Data_Acquisition
    1
    path = '/kaggle/input/insulation-joint-training-set-prorail/trainset_insulation_joint/labels.csv'
    2
    df = pd.read_csv(path, sep=';')
    3
    print(df)
    4
    
                  
    5
    # This part is just to join the filepath of images  with the name of images 
  2. Data_understanding Data_understanding
    1
    #Put all the images into a list
    2
    listOfImageNames = []
    3
    for dirname, _, filenames in os.walk('/kaggle/input/insulation-joint-training-set-prorail/trainset_insulation_joint/images/'):
    4
        for filename in filenames:
    5
            #print(os.path.join(dirname, filename))
  3. Load the restnet50 model Load the restnet50 model
    1
    Input_shape = (224,224,3)
    2
    resnet50_model = keras.applications.ResNet50(include_top=False, weights="imagenet", input_shape=Input_shape)
    3
    #resnet50_model.summary()
    4
    #, pooling='max'
    5
    #, pooling='avg'