Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/c17hawke/dvc-nlp-simple-usecase
DVC-NLP-Simple-usecase
https://github.com/c17hawke/dvc-nlp-simple-usecase
Last synced: 20 days ago
JSON representation
DVC-NLP-Simple-usecase
- Host: GitHub
- URL: https://github.com/c17hawke/dvc-nlp-simple-usecase
- Owner: c17hawke
- License: mit
- Created: 2021-10-30T02:51:22.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-11-03T11:31:35.000Z (over 3 years ago)
- Last Synced: 2024-12-06T22:37:24.020Z (3 months ago)
- Language: HTML
- Size: 10 MB
- Stars: 5
- Watchers: 2
- Forks: 9
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# dvc-NLP-simple-usecase
DVC NLP project## Reference repository:
* [official reference repo](https://github.com/iterative/example-get-started)* [DVC STUDIO](https://studio.iterative.ai/)
* [MY View](https://studio.iterative.ai/user/c17hawke/views/DVC-NLP-Simple-usecase-3xolnsi26a)
* [Bag of Words- Krish Naik](https://youtu.be/D2V1okCEsiE)
* [TF-IDF- Krish Naik](https://youtu.be/D2V1okCEsiE)
## STEPS -
### STEP 01- Create a repository by using template repository
### STEP 02- Clone the new repository
### STEP 03- Create a conda environment after opening the repository in VSCODE
```bash
conda create --prefix ./env python=3.7 -y
``````bash
conda activate ./env
```
OR
```bash
source activate ./env
```### One shot create and activate environment
```bash
conda create --prefix ./env python=3.7 -y && source activate ./env
```### STEP 04- install the requirements
```bash
pip install -r requirements.txt
```### STEP 05- initialize the dvc project
```bash
dvc init
```### STEP 06- commit and push the changes to the remote repository
### extra commands -
```bash
echo "*.log" >> logs/.gitignore
``````bash
git rm --cached logs/running_logs.log
```updated by rohan