Skip to content

Commit

Permalink
updated docs
Browse files Browse the repository at this point in the history
  • Loading branch information
deepaksood619 committed Dec 28, 2023
1 parent 72e216b commit a2e3768
Show file tree
Hide file tree
Showing 70 changed files with 1,060 additions and 232 deletions.
2 changes: 2 additions & 0 deletions docs/about-me/ideas/creating-a-business-startup.md
Original file line number Diff line number Diff line change
Expand Up @@ -283,3 +283,5 @@ Discovery commerce is the equivalent of 'I'm feeling lucky' in Google searches.
[13 Businesses Making +$1,000,000/Year With 0 Employees - YouTube](https://www.youtube.com/watch?v=giis6_u8n3M)

[How to build a company board as a founder?](https://shorts.growthx.club/how-to-build-a-board-with-intent)

[GitHub - sdg-1/consulting-handbook: A guide for technical professionals looking to start consulting](https://github.com/sdg-1/consulting-handbook)
2 changes: 2 additions & 0 deletions docs/about-me/ideas/donations.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ Donor - finds a person and donate the required item or buy for him/her

[Doing Good Better](../../book-summaries/doing-good-better)

[Nudging to donate organs: do what you like or like what we do? | Medicine, Health Care and Philosophy](https://link.springer.com/article/10.1007/s11019-021-10007-6)

### Effective Altruism

When you become rich don't increase your standard of living, increase your standard of giving.
Expand Down
8 changes: 8 additions & 0 deletions docs/about-me/ideas/education.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,14 @@ Highly personalized education for each person

**DigiProctor** with a 360 degree camera with all AI

#### Competitors

[linkedin.com/in/qudduspat/](https://www.linkedin.com/in/qudduspat/)- [email protected]

[How a High Schooler in Dubai Built ASI, One of the Most Promising AI Edtech Startups](https://www.businessinsider.com/edtech-asi-ai-dubai-chatbot-tutoring-assistant-2023-9?IR=T)

[ASI | Home](https://www.asi.tech/)

### Free Education with Boarding (Coaching)

- Job Guarantee and skill focused
Expand Down
4 changes: 4 additions & 0 deletions docs/about-me/ideas/startup-ideas-physical.md
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,10 @@ Airline can be transporter of fuels if passenger occupancy is lower, i.e. based
- Transport
- Food

## Autonomous Vehicles / Driverless Cars

[New data shows Waymo crashes a lot less than human drivers](https://www.understandingai.org/p/new-data-shows-waymo-crashes-a-lot)

## Others

- Beekeeping
17 changes: 13 additions & 4 deletions docs/about-me/ideas/thoughts-future-ideas-vision-prediction.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,6 @@ Blockchain reinvents trust.

Humans cannot be trusted, they trust software more than other humans - Haven't you studied true history as to what humans have done to other humans.

## Arguments

What is your sample size?

## Technologies

[Can Rice last forever?](https://finshots.in/archive/can-rice-last-forever/)
Expand Down Expand Up @@ -61,3 +57,16 @@ What is your sample size?
## Links

[Ask HN: What are the big/important problems to work on? | Hacker News](https://news.ycombinator.com/item?id=37033312)

[Why AI Will Spark Exponential Economic Growth | Cathie Wood | TED - YouTube](https://www.youtube.com/watch?v=rQEh7d-qa38&ab_channel=TED)

- Old
- Telephone
- Electricity
- Automobile
- New
- Artificial Intelligence
- Public Blockchains
- Energy Storage
- Robotics (Autonomous Vehicles)
- Multinomic Sequencing
17 changes: 17 additions & 0 deletions docs/ai/data-science/data-visualization/metabase.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,23 @@ Parameters can be signed or unsigned.

[Parameters for signed embeds](https://www.metabase.com/docs/latest/embedding/signed-embedding-parameters)

## Plugins

```bash
# clickhouse

export METABASE_DOCKER_VERSION=v0.47.2
export METABASE_CLICKHOUSE_DRIVER_VERSION=1.2.2

mkdir -p mb/plugins && cd mb

curl -L -o plugins/ch.jar https://github.com/ClickHouse/metabase-clickhouse-driver/releases/download/$METABASE_CLICKHOUSE_DRIVER_VERSION/clickhouse.metabase-driver.jar

docker run -d -p 3000:3000 \
--mount type=bind,source=$PWD/plugins/ch.jar,destination=/plugins/clickhouse.jar --network="host" \
metabase/metabase:$METABASE_DOCKER_VERSION
```

## Dashboards

### Filters
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# ML Model Deployment
# MLOps / Model Deployment

![image](../../media/ML-Model-Deployment-image1.jpg)

Expand Down Expand Up @@ -26,8 +26,21 @@ MLOps is an engineering discipline that aims to unify ML systems development (de
- Deploy ML models
- Iterate - Monitor, optimize and maintain the performance of the model

https://www.freecodecamp.org/news/what-is-mlops-machine-learning-operations-explained
###  Deploying models to the production system

[MLOps guide](https://huyenchip.com/mlops/)
There are mainly two ways of deploying an ML model:

- **Static deployment or embedded model**  -  where the model is packaged into installable application software and is then deployed. For example, an application that offers batch-scoring of requests.
- **Dynamic deployment**  -  where the model is deployed using a web framework like FastAPI or Flask and is offered as an API endpoint that responds to user requests.

[What is MLOps? Machine Learning Operations Explained](https://www.freecodecamp.org/news/what-is-mlops-machine-learning-operations-explained)

[MLOps Course – Build Machine Learning Production Grade Projects - YouTube](https://www.youtube.com/watch?v=-dJPoLm_gtE)

[MLOps guide](https://huyenchip.com/mlops/)

### Tools

[ZenML - Seamless End-to-End MLOps](https://www.zenml.io/)

[Starter guide - ZenML Documentation](https://docs.zenml.io/user-guide/starter-guide)
2 changes: 1 addition & 1 deletion docs/ai/libraries/readme.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Libraries

- [AWS Sagemaker](aws-sagemaker)
- [ML Model Deployment](ml-model-deployment)
- [ML Model Deployment](ai/libraries/mlops-model-deployment.md)
- [Distributed Training](distributed-training)
- [Libraries](ml-libraries.md)
- [Tools](ai/libraries/tools.md)
Expand Down
Loading

0 comments on commit a2e3768

Please sign in to comment.