Add team, remote support and v env docs

pull/103/head
JulioV 2020-11-06 17:51:56 -05:00
parent 6ac4c05772
commit 73753f4714
4 changed files with 121 additions and 0 deletions

View File

@ -0,0 +1,14 @@
# Remote Support
We use the Live Share extension of Visual Studio Code to debug bugs when sharing data or database credentials is not possible.
1. Install [Visual Studio Code](https://code.visualstudio.com/)
2. Open you RAPIDS root folder in a new VSCode window
3. Open a new Terminal `Terminal > New terminal`
4. Install the [Live Share extension pack](https://marketplace.visualstudio.com/items?itemName=MS-vsliveshare.vsliveshare-pack)
5. Press ++ctrl+p++ or ++cmd+p++ and run this command:
```bash
>live share: start collaboration session
```
6. Follow the instructions and share the session link you receive

View File

@ -0,0 +1,21 @@
# Virtual Environments
## Add new packages
Try to install any new package using `conda`. If a package is not available in one of `conda`'s channels you can install it with `pip` but make sure your virtual environment is active.
## Update your conda `environment.yaml`
After installing a new package you can use the following command in your terminal to update your `environment.yaml` before publishing your pipeline. Note that we ignore the package version for `libfortran` to keep compatibility with Linux:
```bash
conda env export --no-builds | sed 's/^.*libgfortran.*$/ - libgfortran/' > environment.yml
```
## Update and prune your conda environment from a `environment.yaml` file
Execute the following command in your terminal, see these docs for more [information](https://docs.conda.io/projects/conda/en/latest/user-guide/tasks/manage-environments.html#updating-an-environment)
```bash
conda env update --prefix ./env --file environment.yml --prune
```

81
docs/team.md 100644
View File

@ -0,0 +1,81 @@
# RAPIDS Team
If you are interested in contributing feel free to submit a pull request or contact us.
## Core Team
### Julio Vega (Designer and Lead Developer)
??? abstract "About"
Julio Vega is a postdoctoral associate at the Mobile Sensing + Health Institute. He is interested in personalized methodologies to monitor chronic conditions that affect daily human behavior using mobile and wearable data.
- *vegaju* at *upmc* . *edu*
- [Personal Website](https://juliovega.info/)
### Meng Li
??? abstract "About"
Meng Li received her Master of Science degree in Information Science from the University of Pittsburgh. She is interested in applying machine learning algorithms to the medical field.
- *lim11* at *upmc* . *edu*
- [Linkedin Profile](https://www.linkedin.com/in/meng-li-57238414a)
- [Github Profile](https://github.com/Meng6)
### Abhineeth Reddy Kunta
??? abstract "About"
Abhineeth Reddy Kunta is a Senior Software Engineer with the Mobile Sensing + Health Institute. He is experienced in software development and specializes in building solutions using machine learning. Abhineeth likes exploring ways to leverage technology in advancing medicine and education. Previously he worked as a Computer Programmer at Georgia Department of Public Health. He has a master's degree in Computer Science from George Mason University.
### Kwesi Aguillera
??? abstract "About"
Kwesi Aguillera is currently in his first year at the University of Pittsburgh pursuing a Master of Sciences in Information Science specializing in Big Data Analytics. He received his Bachelor of Science degree in Computer Science and Management from the University of the West Indies. Kwesi considers himself a full stack developer and looks forward to applying this knowledge to big data analysis.
- [Linkedin Profile](https://www.linkedin.com/in/kwesi-aguillera-29529823)
### Echhit Joshi
??? abstract "About"
Echhit Joshi is a Masters student at the School of Computing and Information at University of Pittsburgh. His areas of interest are Machine/Deep Learning, Data Mining, and Analytics.
- [Linkedin Profile](https://www.linkedin.com/in/echhitjoshi/)
### Nicolas Leo
??? abstract "About"
Nicolas is a rising senior studying computer science at the University of Pittsburgh. His academic interests include databases, machine learning, and application development. After completing his undergraduate degree, he plans to attend graduate school for a MS in Computer Science with a focus on Intelligent Systems.
### Nikunj Goel
??? abstract "About"
Nik is a graduate student at the University of Pittsburgh pursuing Master of Science in Information Science. He earned his Bachelor of Technology degree in Information Technology from India. He is a Data Enthusiasts and passionate about finding the meaning out of raw data. In a long term, his goal is to create a breakthrough in Data Science and Deep Learning.
- [Linkedin Profile](https://www.linkedin.com/in/nikunjgoel95/)
## Community Contributors
### Agam Kumar
??? abstract "About"
Agam is a junior at Carnegie Mellon University studying Statistics and Machine Learning and pursuing an additional major in Computer Science. He is a member of the Data Science team in the Health and Human Performance Lab at CMU and has keen interests in software development and data science. His research interests include ML applications in medicine.
- [Linkedin Profile](https://www.linkedin.com/in/agam-kumar)
- [Github Profile](https://github.com/agam-kumar)
### Yasaman S. Sefidgar
??? abstract "About"
- [Linkedin Profile](https://www.linkedin.com/in/ysefidgar/)
## Advisors
### Afsaneh Doryab
??? abstract "About"
- [Personal Website](https://sites.google.com/view/afsanehdoryab)
### Carissa Low
??? abstract "About"
- [Profile](https://www.moshi.pitt.edu/people/carissa-low-phd)

View File

@ -30,6 +30,7 @@ markdown_extensions:
custom_checkbox: True
- pymdownx.tilde
- attr_list
- pymdownx.keys
site_favicon: material/air-filter
extra:
social:
@ -79,4 +80,8 @@ nav:
- Phone WiFI Connected: features/phone-wifi-connected.md
- Phone WiFI Visible: features/phone-wifi-visible.md
- Frequently Asked Questions: faq.md
- Developers:
- Remote Support: developers/remote-support.md
- Virtual Environments: developers/virtual-environments.md
- Team: team.md
- Citation: citation.md