Skip to content

Neuralm Server is the backend of the neuralm project. It creates and mutates the neural networks and sends them to the client

License

Notifications You must be signed in to change notification settings

neuralm/Neuralm-Server

Repository files navigation

Neuralm-Server

The neuralm server creates and manages the neural networks in the neuralm project.

These neural networks are created and mutated on the server and then distributed to the client. This way, we can combine the processing power of multiple computers and run numerous training sessions at the same time. This is needed to reduce the overall training time.

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

You will need the following tools:

Setup

Follow these steps to get your development environment set up:

  1. Update the appsettings.Development.json files in UserService, TrainingRoomService & RegistryService to valid database connection strings (example):
"Database": {
    "ConnectionString": "Server=(LocalDb)\\MSSQLLocalDB;Database={SERVICE}DbContext;User=sa;Password=<PASSWORD>;",
    "UseLazyLoading": true,
    "DbProvider": "mssql"
 }

For DbProvider mssql and mysql are supported. NOTE: leaving the connection string and db provider empty will result in using an in memory db context.

Running the tests

There are front-end and back-end tests.

Running the front-end tests

  1. Navigate to the src/Neuralm.Presentation.Web/folder.
  2. Run the command:
npm run test:unit

Running the back-end tests

  1. Navigate to the src/ folder.
  2. Run the command:
dotnet test

Deployment

To deploy the server:

docker-compose up

The website will be available at localhost/login.

Contributing

Please read CONTRIBUTING.md for details on our code of conduct, and the process for submitting pull requests to us.

Versioning

We use SemVer for versioning. For the versions available, see the tags on this repository.

Authors

See also the list of contributors who participated in this project.

License

This project is licensed under the MIT License - see the LICENSE.md file for details

Acknowledgments

About

Neuralm Server is the backend of the neuralm project. It creates and mutates the neural networks and sends them to the client

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published