The Beginner's Guide to Diff-SVC
  • Project Overview
  • Setting Up
    • Requirements
    • Setting up the Environment
  • Start
    • Dataset Preparation
    • Preprocessing
    • Training
    • Inference
  • See also
  • Appendix
  • Resource List
Powered by GitBook
On this page
  • Change Directory in Windows cmd
  • Examples:
  • Pipeline Overview

Was this helpful?

Appendix

Additional information you may want to learn

PreviousInferenceNextResource List

Last updated 2 years ago

Was this helpful?

Change Directory in Windows cmd

Syntax
cd [/d] [<drive>:][<path>]

It's basically cd followed by the directory path. And include /d when changing to a directory in a different drive.

Examples:

  • You are under C:\Users\xxx, and you want to go to C:\Users\yyy

C:\Users\xxx> cd C:\Users\yyy
C:\Users\yyy>
  • You are under C:\Users\xxx, and you want to go to E:\Coding\diff-svc

C:\Users\xxx> cd /d E:\Coding\diff-svc
E:\Coding\diff-svc>

Search online if you need more help.

Pipeline Overview

Pipeline Overview & Folder Structure