Skip to content
Open
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
34 changes: 34 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,40 @@ list the directories `ls`. You can switch to such a path with the `cd $(pwd -P)`
command.


For Windows, assuming you use Git for Windows:

```bash
# Download and install from: https://git-scm.com/download/win (includes Git LFS)
git lfs install

git clone git@github.com:apple/corenet.git
cd corenet
git lfs pull
```

The following venv command is optional, but recommended. Alternatively, you can create and activate a conda environment.

```bash
python -m venv venv
venv\Scripts\activate
pip install --editable .
```

To install optional dependencies for audio and video processing:
Via Chocolatey (install from https://chocolatey.org/install)

```bash
choco install ffmpeg
```

Or via Scoop (install from https://scoop.sh/)

```bash
scoop install ffmpeg
```

Note that on Windows you should use Git Bash, PowerShell, or Command Prompt. The backslash path separator (\) is used for virtual environment activation, and no case sensitivity adjustments are needed as Windows filesystem is case insensitive by default

## Directory Structure

This section provides quick access and a brief description for important CoreNet directories.
Expand Down
Binary file modified assets/cat.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified assets/dog.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified projects/byteformer/model_arch.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified projects/kv-prediction/model_arch.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified tests/data/dummy_silent_video.mov
Binary file not shown.
Binary file modified tests/data/dummy_video.mov
Binary file not shown.
362 changes: 3 additions & 359 deletions tutorials/clip.ipynb

Large diffs are not rendered by default.

546 changes: 3 additions & 543 deletions tutorials/object_detection.ipynb

Large diffs are not rendered by default.

258 changes: 3 additions & 255 deletions tutorials/semantic_segmentation.ipynb

Large diffs are not rendered by default.

Loading