Andybeyond commited on
Commit
dc918a5
Β·
verified Β·
1 Parent(s): 3e0d8bd

Update README.md

Browse files

Add project directory structure.

Files changed (1) hide show
  1. README.md +31 -0
README.md CHANGED
@@ -94,6 +94,37 @@ This repository is in active development. We're building:
94
  - Evaluation metrics
95
  - Demo applications
96
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
97
  ## 🀝 Contributing
98
  We welcome contributions from the community! Whether you're interested in:
99
  - Model development
 
94
  - Evaluation metrics
95
  - Demo applications
96
 
97
+ Project directory structure:
98
+ opentunes-ai/
99
+ β”œβ”€β”€ README.md # Contains metadata + documentation
100
+ β”œβ”€β”€ models/
101
+ β”‚ β”œβ”€β”€ melody-gen/ # First model
102
+ β”‚ β”‚ β”œβ”€β”€ config/
103
+ β”‚ β”‚ β”‚ β”œβ”€β”€ model_config.json
104
+ β”‚ β”‚ β”‚ └── training_config.json
105
+ β”‚ β”‚ β”œβ”€β”€ weights/
106
+ β”‚ β”‚ β”‚ └── v0.1.0/
107
+ β”‚ β”‚ └── examples/
108
+ β”‚ β”‚ β”œβ”€β”€ input_prompts.json
109
+ β”‚ β”‚ └── generated_samples/
110
+ β”‚ └── lyrics-gen/ # Second model
111
+ β”‚ β”œβ”€β”€ config/
112
+ β”‚ β”œβ”€β”€ weights/
113
+ β”‚ └── examples/
114
+ β”œβ”€β”€ notebooks/
115
+ β”‚ β”œβ”€β”€ melody_development.ipynb
116
+ β”‚ └── lyrics_development.ipynb
117
+ β”œβ”€β”€ datasets/
118
+ β”‚ β”œβ”€β”€ melodies/
119
+ β”‚ └── lyrics/
120
+ └── spaces/ # Gradio demos
121
+ β”œβ”€β”€ melody-demo/
122
+ └── lyrics-demo/
123
+
124
+ Add .gitattributes for git-lfs
125
+ .gitattributes # Specify files for git-lfs tracking
126
+
127
+
128
  ## 🀝 Contributing
129
  We welcome contributions from the community! Whether you're interested in:
130
  - Model development