Abhishek-kumar09 / AutoBot

An ML marketplace to host your data and use others for up and running your next ML Model
MIT License
2 stars 0 forks source link

AutoBot

Project Description

Title Description
Why AutoBot For all the ML developers out there, getting the dataset that matches the criteria for your Machine Learning Model is hard. We get it. That is why we created Auto Bot to help you buy/auction/sell the dataset of your choices.
What it does AutoBot is the ultimate marketplace for all the ML developers looking for the right kind of resources for your apps. Find & Search for datasets that can train your model, test your model, and develop your model.
How it works Buying & Selling datasets have never been easier, until now! Built with powerful search tools like Algolia, AutoBot helps you find the resources you need without wading through reams of information on the internet- saving your valuable time as a developer and making you more productive than ever.

Getting Started

Contributions and PR

GitHub issues by-label

Take a look at the Contribution Guidelines and open a new Issue or Pull Request on GitHub.

Build Setup

# install dependencies
npm install

# development run
npm run start

# build for production
npm run build

Firebase Setup

Create your firebase project Fill in the environment variables in .env file in root directory

Adding Variables Local To Your Environment

Windows

To setup api key, App Id, and your search index on windows as environment variables,

Hit Win+R > type cmd.exe, followed by the commands

set "ALG_ADM_API_KEY=replace_with_algolia_admin_key" && npm start

set "ALG_APP_ID=replace_with_algolia_app_id" && npm start

set "ALG_IDX=replace_with_your_index" && npm start

or, Win+R > type powershell, followed by the command

($env:ALG_ADM_API_KEY = "replace_with_algolia_admin_key") -and (npm start)

($env:ALG_APP_ID = "replace_with_algolia_app_id") -and (npm start)

($env:ALG_IDX = "replace_with_your_index") -and (npm start)

Linux & macOS

To setup api key, App Id, and your search index on Linux & macOS as environment variables,

Bash:

ALG_ADM_API_KEY=replace_with_algolia_admin_key npm start

ALG_APP_ID=replace_with_algolia_app_id npm start

ALG_IDX=replace_with_your_index npm start