https://github.com/dheeraj135/timetable
https://github.com/dheeraj135/timetable
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/dheeraj135/timetable
- Owner: dheeraj135
- License: apache-2.0
- Created: 2019-12-02T09:21:58.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-12-02T16:32:20.000Z (over 5 years ago)
- Last Synced: 2025-01-04T20:16:55.807Z (5 months ago)
- Size: 4.88 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Time Table Allocation
### Expected inputs
- Course list along with faculty.
- Data about each Course(is IC course, and special list of course which should not clash).
- Course registration list of each student.### Clash weights
- Clash b/w courses of same faculty: INF.
- Clash b/w course have same students: Sigmoid function (1)/(1+e^(-x))### Expected Output
- Assign course to slot from A-H(8 slots), so as to minimize the clashes.
### Technology stack
- Web interface in django.
- Allocation algorithm will be written in java.
- Django(python) with the required java code.