coursetable/ferry

Store similar courses in database

Closed this issue · 0 comments

  • Add one of the course embedding algorithms to the import pipeline
  • Store linked courses: perhaps a junction table?
    # Course-Professor association/junction table.
    course_professors = Table(
    "course_professors",
    Base.metadata,
    Column("course_id", ForeignKey("courses.course_id"), primary_key=True, index=True),
    Column(
    "professor_id",
    ForeignKey("professors.professor_id"),
    primary_key=True,
    index=True,
    ),
    )