Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sikandarjodd/boi
ZENO
https://github.com/sikandarjodd/boi
Last synced: 13 days ago
JSON representation
ZENO
- Host: GitHub
- URL: https://github.com/sikandarjodd/boi
- Owner: SikandarJODD
- Created: 2023-11-07T17:15:21.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2023-11-07T19:03:26.000Z (about 1 year ago)
- Last Synced: 2024-12-19T02:07:29.975Z (15 days ago)
- Language: Python
- Size: 16.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### Commands to run Mapper and Reducers
MM = Matrix multiplication
WC = Word Count## Word Count
```
cat input.txt | python3 mapper_WC.py | sort -k1,1 | python3 reducer_WC.py
```(python3 subjective to the python version, also clone input.txt in same folder)
## Matrix multiplication
```
cat input_MM.txt | python3 mapper_MM.py | sort | python3 reducer_MM.py
```3. I case of R programs use R studio to run them or just use Collab
## R Programming Collab File
[Visit](https://colab.research.google.com/drive/1s4ya-vYiqQQsiHq5ZeWGnyeooomidDj0?usp=sharing)
```
https://colab.research.google.com/drive/1s4ya-vYiqQQsiHq5ZeWGnyeooomidDj0?usp=sharing
```## Bloom Filter
[Visit Collab](https://colab.research.google.com/drive/19pHvn_hdaVr7p1ScnQ3XZJ1w1BoR4Fy6?usp=sharing)
```
https://colab.research.google.com/drive/19pHvn_hdaVr7p1ScnQ3XZJ1w1BoR4Fy6?usp=sharing
```