SEAL is an innovative mobile application developed by AUTRS that aims to personalize special education curriculum for each student. By leveraging computer vision and machine learning, SEAL analyzes experimental responsiveness data to tailor educational content to individual needs.
Want to get involved with seal? Visit: https://www.autrs.com/get-involved/
The goal of SEAL is to provide a customized educational experience for students requiring special education. By using advanced technologies like computer vision and machine learning, SEAL will collect and analyze data to understand each student's responsiveness and adapt the curriculum accordingly. This personalized approach is designed to enhance learning outcomes and provide a more effective educational experience.
The SEAL project is currently in the conceptual and planning stages. The codebase has not been developed yet, and we are actively seeking contributors to help bring this vision to life.
We welcome contributions from developers, educators, and anyone interested in supporting special education. Here are some ways you can contribute:
- Fork the Repository: Create a personal copy of the repository by clicking the 'Fork' button.
- Clone the Repository: Clone your forked repository to your local machine using the command:
git clone https://github.com/Autism-Technology-Research-Syndicate/SEALApplication.git
- Create a Branch: Create a new branch for your feature or bug fix.
git checkout -b feature-name
- Make Changes: Implement your feature or fix.
- Commit Changes: Commit your changes with a descriptive commit message.
git commit -m "Description of changes"
- Push Changes: Push your changes to your forked repository.
git push origin feature-name
- Create a Pull Request: Submit a pull request to the main repository with a detailed explanation of your changes.
For major changes, please open an issue first to discuss what you would like to change.
For any inquiries or questions regarding the SEAL project, please contact us at:
Email: [email protected]
Website: https://www.autrs.com/
The SEAL project is licensed under the GNU General Public License v3.0. For more information, please see the LICENSE file.
We would like to thank all the contributors and supporters of the SEAL project. Your efforts are invaluable in making personalized education accessible to all students.
We look forward to your contributions and support in making SEAL a reality!
Best Regards, Autism Technology Research Syndicate
Note: Make sure you have completed the React Native - Set Up Your Environment instructions before proceeding. You might need to install the react-native cli if you have not already:
npm i @react-native-community/cli
First, you will need to start Metro, the JavaScript bundler that ships with React Native.
To start Metro, run the following command from the root of your React Native project:
# using npm
npm start
# OR using Yarn
yarn start
Let Metro Bundler run in its own terminal. Open a new terminal from the root of your React Native project. Run the following command to start your Android or iOS app:
# using npm
npm run android
# OR using Yarn
yarn android
# using npm
npm run ios
# OR using Yarn
yarn ios
If everything is set up correctly, you should see your new app running in your Android Emulator or iOS Simulator shortly provided you have set up your emulator/simulator correctly.
This is one way to run your app — you can also run it directly from within Android Studio and Xcode respectively.
Now that you have successfully run the app, let's modify it.
-
Open
App.tsx
in your text editor of choice and edit some lines. -
For Android: Press the R key twice or select "Reload" from the Developer Menu (Ctrl + M (on Window and Linux) or Cmd ⌘ + M (on macOS)) to see your changes!
For iOS: Hit Cmd ⌘ + R in your iOS Simulator to reload the app and see your changes!