Recent content by falyusuf

  1. F

    Comp Sci Training YOLOv9 on custom dataset

    I have copied the code snippet for uploading the dataset directly from Roboflow for the YOLOv9 model. I installed YOLOv9 and its requirements as mentioned on the official website. Where might the problem be?
  2. F

    Comp Sci Training YOLOv9 on custom dataset

    !git clone https://github.com/SkalskiP/yolov9.git %cd yolov9 !pip3 install -r requirements.txt -q import os Home = os.getcwd() print(Home) !mkdir -p /kaggle/working/yolov9/weights !wget -P /kaggle/working/yolov9/weights -q https://github.com/WongKinYiu/yolov9/releases/download/v0.1/yolov9-c.pt...
  3. F

    Create a Mask-RCNN Model in Python for Smart Parking Systems

    Homework Statement: I am trying to write a Python code to do a project about smart parking system. I want to create a Mask RCNN model to detect the vehicles in the parking slots. My code is attached below, I got an error in the last line (creating Mask_RCNN model) and do not know how to solve...
  4. F

    Engineering Decision Tree Regression: Avoiding Overfitting in Training Data

    The decision tree in the following curve is too fine details of the training data and learn from the noise, (overfitting). Ref: https://scikit-learn.org/stable/auto_examples/tree/plot_tree_regression.html#sphx-glr-auto-examples-tree-plot-tree-regression-py I tried to remove the overfitting...
  5. F

    Automatic parking slots detection using Python

    Yes, we can choose any topics related to Deep Machine Learning. I can redo my previous project in a different way; by training a model using deep ML. However, I want to improve it even more by selecting the slots automatically and that's what I am looking for. Here's some of the results from my...
  6. F

    Automatic parking slots detection using Python

    Not yet. I searched for projects in this topic but still did not get any.
  7. F

    Automatic parking slots detection using Python

    Several related works have manually selected parking slots using different methods, such as selecting the region of interest (ROI) through mouse clicks or determining the coordinates of each parking slot through trials and errors (which I used in my previous course project). However, these...
  8. F

    Automatic parking slots detection using Python

    TL;DR Summary: How to automatically detect the parking slots using Python? I have a Deep Machine Learning course and would like to do my course project about "Available Parking Slots Detection using Deep Machine Learning Based on Image Processing". My plan is to split the project into two...
  9. F

    Engineering Power Flows and Losses in a line between two buses

    Question: Equations: My solution: Could someone verify my answer?
  10. F

    Engineering Find the reactive power before power factor correction

    Relevant Equations: My solution: Could someone please verify my answer?
  11. F

    Find the flux of a vector field

    Question: Equation: Attempt: Can someone verify my answer?
  12. F

    Engineering Find the flux due to a vector crossing an open surface

    Question: Equations: My attempt: Could someone confirm my answer please?
Back
Top