Giter VIP home page Giter VIP logo

edustudio's Introduction

logo

EduStudio is a Unified and Templatized Framework for Student Assessment Models including Cognitive Diagnosis(CD) and Knowledge Tracing(KT) based on Pytorch.

Announcement

  • We are working hard to reproduce the results presented in their papers for all models. These results will be published later on https://edustudio.ai/.
  • We are organizing more comprehensive resources related to student assessment models to build a complete ecosystem for EduStudio.

Description

EduStudio first decomposes the general algorithmic workflow into five steps: configuration reading, data processing, model implementation, training control, and result evaluation. Subsequently, to enhance the reusability of each step, we extract the commonalities of each algorithm at each step into individual templates for templatization.

As illustrated in the Figure below, to better implement a templatized framework, we implement an inheritance-style EduStudio that contains basic architecture and inherited architecture with different responsibilities. The basic architecture emphasizes domain-irrelevant content and strives to build templatized protocols. The inherited architecture obeys the protocol in the basic architecture and focuses on domain-relevant content. The inheritance-style separates domainrelevant and domain-irrelevant content, greatly simplifying framework structure and enhancing readability.

The documentation is available here.

EduStudio Architecture
Figure: Overall Architecture of EduStudio

Quick Start

Install EduStudio:

pip install -U edustudio

Example: Run NCDM model:

from edustudio.quickstart import run_edustudio

run_edustudio(
    dataset='FrcSub',
    cfg_file_name=None,
    traintpl_cfg_dict={
        'cls': 'EduTrainTPL',
    },
    datatpl_cfg_dict={
        'cls': 'CDInterExtendsQDataTPL'
    },
    modeltpl_cfg_dict={
        'cls': 'NCDM',
    },
    evaltpl_cfg_dict={
        'clses': ['BinaryClassificationEvalTPL', 'CognitiveDiagnosisEvalTPL'],
    }
)

To find out which templates are used for a model, we can find in the Reference Table

License

EduStudio uses MIT License.

edustudio's People

Contributors

chuckie-xc1028 avatar jsxie9 avatar kervias avatar tzt-star avatar xiaoluobouu avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.