Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update format.yml #14

Merged
merged 2 commits into from
Jan 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 9 additions & 6 deletions .github/workflows/format.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Ultralytics πŸš€, AGPL-3.0 license
# Ultralytics Format Workflow
# This workflow automatically formats code and documentation in pull requests and pushes to main branch
# Ultralytics πŸš€ - AGPL-3.0 license
# Ultralytics Actions https://github.com/ultralytics/actions
# This workflow automatically formats code and documentation in PRs to official Ultralytics standards

name: Ultralytics Actions

Expand All @@ -14,7 +14,10 @@ jobs:
format:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Run Ultralytics Formatting Actions
- name: Run Ultralytics Formatting
uses: ultralytics/actions@main
with:
python: true
docstrings: true
markdown: true
spelling: true
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,13 @@ Currently, we do not provide a public dataset alongside this repository; the met
To run the code in this repository, you will need the following:

- **Python 3.7+**: Install Python and use pip to set up the necessary libraries:

```
pip3 install -U -r requirements.txt
```

The `requirements.txt` file includes key Python packages such as:

- `numpy`
- `scipy`
- `torch` (PyTorch)
Expand All @@ -30,14 +33,19 @@ To run the code in this repository, you will need the following:
- `bokeh` (optional, for visualization)

- **MATLAB 2018a or newer**: Besides Python, some scripts require MATLAB. Clone the common functions repository and add it to your MATLAB path with the following commands:

```
git clone https://github.com/ultralytics/functions-matlab
```

Then in MATLAB:

```
>> addpath(genpath('/functions-matlab'))
```

Ensure you have the following MATLAB toolboxes installed:

- `Statistics and Machine Learning Toolbox`
- `Signal Processing Toolbox`

Expand All @@ -46,6 +54,7 @@ To run the code in this repository, you will need the following:
The repository contains various methods for vehicle speed estimation. If you're interested in leveraging these techniques or require more information on running the code, please feel free to reach out.

<!-- Sample results image -->

<img src="https://github.com/ultralytics/velocity/blob/master/results.jpg">

# πŸ“š Citation
Expand All @@ -59,6 +68,7 @@ If our work assists you in your research or project, please consider citing it u
We welcome contributions from the community! Whether you're fixing bugs, adding new features, or improving documentation, your input is invaluable. Take a look at our [Contributing Guide](https://docs.ultralytics.com/help/contributing) to get started. Also, we'd love to hear about your experience with Ultralytics products. Please consider filling out our [Survey](https://ultralytics.com/survey?utm_source=github&utm_medium=social&utm_campaign=Survey). A huge πŸ™ and thank you to all of our contributors!

<!-- Ultralytics contributors -->

<a href="https://github.com/ultralytics/yolov5/graphs/contributors">
<img width="100%" src="https://github.com/ultralytics/assets/raw/main/im/image-contributors.png" alt="Ultralytics open-source contributors"></a>

Expand Down