File size: 947 Bytes
8261ee3 c876b0b 8261ee3 c876b0b 8261ee3 c876b0b 8261ee3 c876b0b 8261ee3 c876b0b 8261ee3 c876b0b 8261ee3 c876b0b 8ac6150 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 |
## Install Git LFS
```
brew install git-lfs
```
or download from https://git-lfs.github.com/
## Update global git config
```
$ git lfs install
```
## Update system git config
```
$ git lfs install --system
```
## Clone the Repo
### Entire Clone
```
git clone https://huggingface.co/webslate/transactify
```
### Light Clone
```
GIT_LFS_SKIP_SMUDGE=1 git clone https://huggingface.co/webslate/transactify
```
## For Pushing the Code
> Refer to https://huggingface.co/blog/password-git-deprecation
### Set the Remote URL
```
$: git remote set-url origin https://<user_name>:<token>@huggingface.co/<repo_path>
```
### Token Creation
> Go to Settings > Access Tokens > Create new token >
Choose Write Tab (3rd one) / go here https://huggingface.co/settings/tokens/new?tokenType=write
## Create Virtual Environment
```
python3 -m venv venv
source venv/bin/activate
```
## FYI
> We initially started with `pip install transformers datasets` |