-
-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
89 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,4 +5,5 @@ node_modules | |
build | ||
dist | ||
.env | ||
.idea | ||
.idea | ||
.DS_Store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,23 @@ | ||
## CVPM - Computer Vision Package Manager | ||
# CVPM - Computer Vision Package Manager | ||
|
||
![CVPM](https://img.shields.io/github/license/mashape/apistatus.svg) | ||
[![Go Report Card](https://goreportcard.com/badge/github.com/unarxiv/cvpm)](https://goreportcard.com/report/github.com/unarxiv/cvpm) | ||
[![Build Status](https://travis-ci.org/unarxiv/CVPM.svg?branch=master)](https://travis-ci.org/unarxiv/CVPM) | ||
|
||
## Documentation | ||
|
||
Full documentation can be found [here](https://cvpm.autoai.org). | ||
|
||
## Contributing | ||
|
||
If you found a security bugs, please do not post it in issues or any other public forum. You can send me [email](mailto:xiaozhe.yaoi@qq.com) directly. | ||
|
||
## Affiliated Project | ||
|
||
This project is inspired from [CVTron](https://docs.cvtron.org). | ||
|
||
## FAQs | ||
|
||
Q: Where can I find useful models? | ||
|
||
A: There are three places. The first one, which is we recommend most, is our [model hub](https://hub.autoai.org), where you can download, purchase, search models. The second one is GitHub, in GiHub, you can search for CVPM_Available in readme file, which indicates that repository is compatible with CVPM. The third one is our [forum](https://forum.cvtron.xyz), where you can discuss performance of models, and ask for others models. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Introduction | ||
|
||
# Welcome |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# Getting Started | ||
|
||
## Prerequisite | ||
|
||
CVPM requires Python 3 and Pip. Before your installation, please make sure you have both in your system. | ||
|
||
You can download Python 3 from [here](https://www.python.org/). | ||
|
||
## Automatically Installation | ||
|
||
## Manually Installation | ||
|
||
### Download Executable Binary File | ||
|
||
Go to our [release page](https://github.com/unarxiv/CVPM/releases) to download latest binary file. | ||
|
||
Place the binary into your ```PATH```. | ||
|
||
If your Python and Pip command are not in your ```PATH```, RUN ```cvpm config``` to set your python and pip location. | ||
|
||
### Install CVPM Python Dependency | ||
|
||
RUN ```cvpm install cvpm:stable``` or ```cvpm install cvpm:test```. It helps you to install cvpm python dependency into your system. | ||
|
||
### Install Packages | ||
|
||
RUN ```cvpm install vendor/repo``` to install a package from [model hub](https://hub.autoai.org). | ||
|
||
Or, RUN ```cvpm install https://github.com/vendor/repo``` to install a package from GitHub. Make sure the repo you are going to install is CVPM Available. | ||
|
||
### Run it! | ||
|
||
Before you run any of your installed repo, a daemon process must be enabled. Note that you only need to enable it once by running | ||
```cvpm daemon install```. It may requires you administrator permission to install on most systems. | ||
|
||
Some repos may have more than one solver in it, therefore, you have to know the exact solver name to run. By running ```cvpm run vendor/repo/solver```, you can start a service. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Introduction | ||
|
||
# Welcome |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# 快速上手 |