ai1-notebook
v1.0.0
Published
CLI tool to download AI notebooks
Readme
ai1-notebook
An interactive CLI utility to download AI laboratory notebooks directly to your working directory.
How to Run without Installation (Once published to npm)
You and your friends can run it instantly from any command line using npx:
npx ai-notebook
# OR
npx ai1-notebookHow to Install Globally
To install this package globally on your system:
npm install -g ai1-notebookOnce installed, you can launch the interactive downloader anywhere by running:
ai-notebook
# OR
ai1-notebookHow to Publish to npm (For Your Friends to Use)
To make it available for all your friends to run via npx ai-notebook:
- Open your terminal and navigate to the
ai1-notebookdirectory:cd ai1-notebook - Publish the package:
npm publish
Note: If the name "ai1-notebook" is already taken on the public npm registry, you can change the "name" field in your package.json to something unique (for example: "yourname-ai1-notebook") and run npm publish again.
Included Notebooks
- Breadth First Search (
1. Breadth First Search.py) - Depth First Search (
2. Depth First Search.py) - Uniform Cost Search (
3. Uniform Cost Search.py) - Depth Limited Search (
4. Depth Limited Search.py) - Best First Search (
5. Best First Search.py) - K-Nearest Neighbors (
6. K-Nearest Neighbors.py) - Decision Tree (
7. Decision Tree.py) - K-Nearest Neighbors 2 (
knn-2.py) - Decision Tree 2 (
decision-2.py)
