diff --git a/README.md b/README.md index 4d6f1fd..828d2dc 100644 --- a/README.md +++ b/README.md @@ -110,6 +110,7 @@ If you do not find matching version of CUDA and Python above, you need to build ```bash git clone https://github.com/CentML/DeepView.Predict + cd DeepView.Predict ``` 4. Get the pre-trained models used by DeepView.Predict @@ -171,7 +172,7 @@ print("Predicted time on V100:", pred.run_time_ms) python3 example.py ``` -See [experiments/run_experiment.py](https://github.com/CentML/DeepView.Predict/tree/main/experiments) for other examples of Habitat usage. +See [experiments/run_experiment.py](https://github.com/CentML/DeepView.Predict/tree/main/experiments) for other examples of DeepView.Predict usage.

Release History

@@ -200,11 +201,11 @@ more information.

Research Paper

-DeepView.Profile began as a research project in the [EcoSystem Group](https://www.cs.toronto.edu/ecosystem) at the [University of Toronto](https://cs.toronto.edu). The accompanying research paper appeared in the proceedings of [USENIX +DeepView.Predict began as a research project in the [EcoSystem Group](https://www.cs.toronto.edu/ecosystem) at the [University of Toronto](https://cs.toronto.edu). The accompanying research paper appeared in the proceedings of [USENIX ATC'21](https://www.usenix.org/conference/atc21/presentation/yu). If you are interested, you can read a preprint of the paper [here](https://arxiv.org/abs/2102.00527). -If you use DeepView.Profile in your research, please consider citing our paper: +If you use DeepView.Predict in your research, please consider citing our paper: ```bibtex @inproceedings{habitat-yu21, diff --git a/analyzer/setup.py b/analyzer/setup.py index 4e26abf..1ce2212 100644 --- a/analyzer/setup.py +++ b/analyzer/setup.py @@ -11,7 +11,7 @@ ################################################################### -NAME = "habitat-predict" +NAME = "deepview-predict" PACKAGES = find_packages() META_PATH = os.path.join("habitat", "__init__.py") README_PATH = "README.md"