Uploading Codes
To upload codes, you will need to create an account at OpenCSG Community. Dodes are Git-based repositories, which give you versioning, branches, discoverability and sharing features. You can upload anything you want to the code repository.
We support two ways to upload files currently: using Git or web interface.
Upload Files to a Repository Using Git
Downloading Repository
After creating the code repository in the web interface, clone the code repository to your local machine and upload your code files with the git CLI.
- Downloading code repositories using HTTP:
git lfs install
git clone https://portal.opencsg.com/codes/demo/test.git
- Downloading code repositories using SSH:
git lsf install
git clone git@hub.opencsg.com:codes_demo/test.git
You will need to add your SSH public key to your user settings to push changes or access private repositories.
Uploading Code Files
Assuming that your code files are located in the /work/my_code_dir local directory, you can upload your files to the code repository with the following command:
cd test_code
cp -rf /work/my_code_dir/* .
git add .
git commit -m "commit message"
git push
[Note]
Files with the following suffixes are automatically uploaded with git-lfs:
.7z,.arrow,.bin,.bz2,.ckpt,.ftz,.gz,.h5,.joblib,.lz4,.mlmodel,.model,.msgpack,.npy,.npz,.onnx,.ot,.parquet,.pb,.pickle,.pkl,.pt,.pth,.rar,.safetensors,.tar,.tflite,.tgz,.wasm,.xz,.zip,.zst,.tfevents,.pcm,.sam,.raw,.aac,.flac,.mp3,.ogg,.wav,.bmp,.gif,.png,.tiff,.jpg,.jpeg,.webp
If there are other types of large files, run the following command to make them upload as lfs:
git lfs track <your_file_name>
Upload Files to a Repository Using Web Interface
To add files to your repository with the web interface, start by selecting the Files tab, and then clicking Add file. You will be given the option to create a new file or upload a file.
Creating a New File
Click Create new file, add the contents and click Create File to save your file.
Uploading a File
Click Upload file, you can choose a local file to upload.