A PSE project by 13thWitch, AnoukSommer, CSCMe, EliteStudent420, Viola2345 & Robert-K
Supervised by Andrรฉ Eberhard
- Draw any molecule imaginable and preview it in 3D
- Configure and train machine learning models to predict properties of molecules
- Analyze your molecules for various properties with the models you trained
- Compare your molecules and models to other users' creations
- Check if your model requires a different molecule format. (currently implemented: fingerprint vector, mol graph)
- Update create_dataset in create_dataset.py to include your new molecule format
- Increment the version number in create_dataset.py & storage_handler.py
- Update update_dataset and run for every existing dataset
- Place your custom model type in the machine_learning/models folder
- Edit baseModels.json
- Add a new Entry. The name for the type chosen here will be used in ml_dicts and ModelConfigPage to run appropriate code
- Set your default parameters. The parameters for your model type are defined here. lossFunction and optimizer in parameters are required, as is metrics.
- Create a file in /backend/machine_learning to hold your model and dataset creation functions
- Implement a function that returns a tuple containing A: your built model, B: A dataset compatible with your model
- Implement a function that converts molecules to a valid input format for your model
- Enter your new functions into the proper ml_dicts
- Build a React Component to customize your model and place them in components/modelConfig
- Update modelTypeSpecificComponents to contain your new components
- Find your source csv file, ensure it has smiles codes and choose labels you want to include
- In create_dataset.py run create_complete_dataset with your parameters
- Optional: Check correctness by running view_dataset.py with the debugger and a breakpoint on highlighted line
- Rename output.pkl and move it to backend/storage/data
- Restart the backend
- Edit schnet.py to allow it to train on multiple labels
- Edit create_schnet_with_dataset to take multi-label data from datasets (see ml_fnns.py for an example)
- Edit handleChecked to allow the user to select multiple labels
- Everything else should work without further modification
- In any frontend page, type "adminmode" on your keyboard to enter admin mode
- You can edit the server address by clicking on the server status icon
- You can delete scoreboard entries on the scoreboard page by clicking the ๐๏ธ Icon (or deleting all)
Bootstrapped with Create React App
In the project directory, you can run:
Runs the app in the development mode.
Open http://localhost:3000 to view it in your browser.
The page will reload when you make changes.
You may also see any lint errors in the console.
Launches the test runner in the interactive watch mode.
See the section about running tests for more information.
Builds the app for production to the build
folder.
It correctly bundles React in production mode and optimizes the build for the best performance.
The build is minified and the filenames include the hashes.
Your app is ready to be deployed!
See the section about deployment for more information.
Note: this is a one-way operation. Once you eject
, you can't go back!
If you aren't satisfied with the build tool and configuration choices, you can eject
at any time. This command will remove the single build dependency from your project.
Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except eject
will still work, but they will point to the copied scripts so you can tweak them. At this point you're on your own.
You don't have to ever use eject
. The curated feature set is suitable for small and middle deployments, and you shouldn't feel obligated to use this feature. However we understand that this tool wouldn't be useful if you couldn't customize it when you are ready for it.
You can learn more in the Create React App documentation.
To learn React, check out the React documentation.
Start commit messages with ADD:
, UPD:
, FIX:
or DEL:
corresponding to change.