[Chore] init .gitignore
Add .gitignore to the repository.
any diffusion model support plan?
any diffusion model support plan?
Seens not related to this issue. Maybe you should create a new one. Xd
Personally, I don't upload my gitignore (actually I would add .gitignore to the first line of my local .gitignore, which ignores itself).
I agree we may need some public .gitignore. You may take a look at my configuration as reference.
# .vscode, .venv, any other hidden folders
.*
# pycache
__pycache__/
# installed packages
*.dist-info/
*.egg-info/
# json files
*.json
*.jsonl
# profiling data
*.nsys-rep
*.ncu-rep
# binaries
build/
dist/
*.tar.gz
Personally, I don't upload my
gitignore(actually I would add .gitignore to the first line of my local.gitignore, which ignores itself). I agree we may need some public.gitignore. You may take a look at my configuration as reference.# .vscode, .venv, any other hidden folders .* # pycache __pycache__/ # installed packages *.dist-info/ *.egg-info/ # json files *.json *.jsonl # profiling data *.nsys-rep *.ncu-rep # binaries build/ dist/ *.tar.gz
Thanks, that's great. I‘ve taken the most of it and updated the commit, hope you like it.