Spaces:
Sleeping
Sleeping
Kaushalraj Puwar commited on
Commit ·
2c842e8
1
Parent(s): 9d4dc55
structure initialised
Browse files- .gitignore +2 -0
- Dockerfile +0 -0
- env/__init__.py +0 -0
- env/core.py +0 -0
- env/state.py +0 -0
- env/transitions.py +0 -0
- graders/__init__.py +0 -0
- graders/task1_grader.py +0 -0
- graders/task2_grader.py +0 -0
- graders/task3_grader.py +0 -0
- graders/task4_grader.py +0 -0
- inference.py +0 -0
- openenv.yaml +0 -0
- scripts/validate.sh +0 -0
- tasks/__init__.py +0 -0
- tasks/config.py +0 -0
- tasks/task1.py +0 -0
- tasks/task2.py +0 -0
- tasks/task3.py +0 -0
- tasks/task4.py +0 -0
- utils/__init__.py +0 -0
- utils/constants.py +0 -0
- utils/helpers.py +0 -0
- utils/parser.py +0 -0
.gitignore
CHANGED
|
@@ -3,6 +3,7 @@
|
|
| 3 |
|
| 4 |
# Large Files / Archives
|
| 5 |
context.zip
|
|
|
|
| 6 |
|
| 7 |
# Python Cache & Compiled Files
|
| 8 |
__pycache__/
|
|
@@ -16,3 +17,4 @@ __pycache__/
|
|
| 16 |
# OS generated files
|
| 17 |
.DS_Store
|
| 18 |
Thumbs.db
|
|
|
|
|
|
| 3 |
|
| 4 |
# Large Files / Archives
|
| 5 |
context.zip
|
| 6 |
+
context
|
| 7 |
|
| 8 |
# Python Cache & Compiled Files
|
| 9 |
__pycache__/
|
|
|
|
| 17 |
# OS generated files
|
| 18 |
.DS_Store
|
| 19 |
Thumbs.db
|
| 20 |
+
__MACOSX
|
Dockerfile
ADDED
|
File without changes
|
env/__init__.py
ADDED
|
File without changes
|
env/core.py
ADDED
|
File without changes
|
env/state.py
ADDED
|
File without changes
|
env/transitions.py
ADDED
|
File without changes
|
graders/__init__.py
ADDED
|
File without changes
|
graders/task1_grader.py
ADDED
|
File without changes
|
graders/task2_grader.py
ADDED
|
File without changes
|
graders/task3_grader.py
ADDED
|
File without changes
|
graders/task4_grader.py
ADDED
|
File without changes
|
inference.py
ADDED
|
File without changes
|
openenv.yaml
ADDED
|
File without changes
|
scripts/validate.sh
ADDED
|
File without changes
|
tasks/__init__.py
ADDED
|
File without changes
|
tasks/config.py
ADDED
|
File without changes
|
tasks/task1.py
ADDED
|
File without changes
|
tasks/task2.py
ADDED
|
File without changes
|
tasks/task3.py
ADDED
|
File without changes
|
tasks/task4.py
ADDED
|
File without changes
|
utils/__init__.py
ADDED
|
File without changes
|
utils/constants.py
ADDED
|
File without changes
|
utils/helpers.py
ADDED
|
File without changes
|
utils/parser.py
ADDED
|
File without changes
|