this.me 2.1.5 → 2.1.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +25 -81
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,99 +1,43 @@
1
- # **me** CLI
2
- THIS IS NOT A STABLE VERSION, I AM DOING SOME CHANGES WILL UPLOAD THE NEW SETUP, IT HAS LOTS OF CHANGES IN THE STRUCTURE AND IT MAKES EVERYTHING EASIER.
3
- THANKS, gracias amigos!
4
- The **me CLI** is the command-line interface that puts you in control of managing your neural networks with ease using the powerful neurons.me library. With just a few simple commands, you can create neurons, build neural networks, interact with Cleaker, and harness the capabilities of Netget, all from the comfort of your terminal.
1
+ # .me Suite - Your AI Playground
5
2
 
6
- ### Installation
3
+ ### Introduction
7
4
 
8
- #### Option 1 Global
5
+ Welcome to the .me suite, a comprehensive and interactive command-line interface designed to supercharge your AI projects. Whether you're working on neural networks, experimenting with deep learning models, or exploring other cutting-edge technologies, .me suite provides you with the tools and modules you need.
9
6
 
10
- To empower yourself with the **me CLI**, simply install it globally using npm. Open your terminal and enter the following command:
7
+ ### Key Features
11
8
 
12
- ```
13
- npm install -g @sui.gn/me
14
- ```
15
-
16
- **Pro-tip:** Depending on your system, you might need to use sudo with the above command for global installation.
17
-
18
- **Running CLI Commands Globally**: If you have installed the CLI globally, and you run the CLI command from any directory in your terminal, it will execute the globally installed version of the CLI. The local dependency within the project will not affect the global CLI in this case.
19
-
20
- #### Option 2 Local (Recommended)
21
-
22
- ```bash
23
- # Installing the CLI as a dev dependency in the project
24
- npm install --save-dev @sui.gn/me
9
+ neurons.me: A specialized module for managing neural networks. Create, update, and delete neurons, layers, and complex neural network architectures effortlessly.
10
+ **cleaker:** An extension for working with the Cleaker application.
11
+ **Modular Design:** Easily extend the suite with additional modules, each with its own CLI functionality.
12
+ **Interactive Shell:** Navigate through various options and functionalities using a user-friendly command-line interface.
13
+ Installation
25
14
 
26
- # Using the CLI
27
- npx .me command --option value
28
15
  ```
29
-
30
- **Running CLI Commands Locally**: If you have the CLI installed as a local dependency within a specific project, you have two options to run the CLI command:
31
-
32
- a. Using `npx`: The `npx` command is a utility that comes with npm and allows you to run locally installed Node.js packages. If you run the CLI command using `npx`, it will execute the locally installed version of the CLI, and the globally installed version will be ignored.
33
-
34
- ### Getting Started
35
-
36
- Once installed, the me CLI becomes your trusted companion. Just type me to unlock a world of possibilities.
37
-
38
- ### Create Your First Neuron
39
- To craft a neuron tailored to your needs, use the newNeuron command with various options. For example:
40
-
41
- ```
42
- npx .me newNeuron -n MyNeuron -d 2023-07-28 -t "12:00 PM" -c blue -a "x => x * 2" -w "[0.5, 0.3, -0.1]" -b 0.2
16
+ npm install @sui.gn/me
43
17
  ```
44
18
 
45
- # CLI Command Structure:
46
- We can define a set of commands that users can use to interact with the neurons.me library.
47
- For example:
48
-
49
- For classes and methods in the `neurons.me` library:
50
-
51
- - `.me newNeuron`: Create a new neuron with custom properties.
52
- - `.me newNeuralNetwork`: Create a new neural network.
53
-
54
- For defacto modules, the `me` prefix is combined with the module name.
19
+ ### Usage
55
20
 
56
- The `.me` CLI simplifies and streamlines interactions with `neurons.me` and its defacto modules, making it easier for users to manage neural networks and leverage powerful functionalities.
21
+ After installation, you can launch the .me suite by running:
57
22
 
58
- ### Create a new neuron:
59
23
  ```
60
- npx .me createNeuron
24
+ npx .me
61
25
  ```
62
26
 
63
- ```
64
- npx .me new NeuralNetwork();
65
- ```
27
+ Follow the on-screen prompts to navigate through the available modules and options.
66
28
 
67
- ### Access netget functionality:
68
- ```
69
- npm .me netget get
70
- npm .me netget ws
71
- ```
72
- # CLI Options:
73
- For each command, we can provide options that users can use to customize the behavior. For example:
74
- --name: Specify a custom name for the neuron or neural network.
75
- --weights: Provide custom weights for the neuron.
76
- --bias: Specify a custom bias for the neuron.
77
- --activation: Set a custom activation function for the neuron.
29
+ ### Future Projections
30
+
31
+ The *.me suite i*s continuously evolving with plans for even more exciting features:
78
32
 
79
- # Modularity and Extensibility:
80
- We can design the CLI to be modular and extensible, allowing users to add custom modules and features easily. For example, users can create their own modules and add them to the defacto module in neurons.me for easy integration into the CLI.
81
- # Usage and Usefulness:
82
- The CLI provides a simple and intuitive way for users to interact with the neurons.me library without the need to write code directly. It allows users to create complex neural networks with custom configurations easily. The interactive input and customizable options make it versatile and suitable for various use cases.
83
- # Flexibility and Automation:
84
- Users can use the CLI to automate the process of creating and configuring neural networks. They can write scripts that leverage the CLI commands and options to create and manage multiple neural networks programmatically.
85
- # Memory Storage:
86
- The neurons.me library uses Map objects to store and manage instances of neurons, layers, and neural networks. Each type of entity (neuron, layer, and neural network) has its own Map, and when a new instance is created, it is added to the corresponding Map.
87
- For example, when the user executes the command create neuron, a new instance of the Neuron class is created, and it gets added to the Neuron.map. Similarly, when the user creates a layer using the create layer command, the new layer instance is added to the Layer.map.
88
- # Lifecycle and Cleaning:
89
- The created entities will remain in memory as long as the Node.js process is running. When the Node.js process is terminated (e.g., by closing the terminal or stopping the application), the memory will be freed, and all the entities stored in memory will be cleaned up by the garbage collector.
90
- If you want to persist the entities beyond the lifetime of the Node.js process, you would need to implement a mechanism to store them in a database or a file system.
91
- # Accessing and Deleting Entities:
92
- Since the created entities are stored in Map objects within the neurons.me library, you can access them later by using the respective get methods of the Map objects.
93
- For example, to access a specific neuron with ID 1, you can use Neuron.map.get(1). Similarly, to access a specific layer with ID 2, you can use Layer.map.get(2).
33
+ **Additional Modules:** We'll be adding more modules to cater to various AI domains, such as natural language processing, computer vision, and more.
34
+ **Enhanced Usability:** Ongoing improvements to the user interface will make navigation and task execution even more intuitive.
35
+ **Community Contributions:** Open for community-driven enhancements, allowing developers to contribute modules and features to broaden the suite's capabilities.
36
+ Contribute
37
+ Contributions are welcome! Feel free to open an issue or submit a pull request on the GitHub repository.
94
38
 
95
- To delete an entity, you can use the delete method of the Map objects. For example, to delete a neuron with ID 1, you can use Neuron.map.delete(1).
39
+ ### License
96
40
 
97
- Keep in mind that when an entity is deleted from the Map, the corresponding JavaScript object will be eligible for garbage collection, and its memory will be freed once the garbage collector runs.
41
+ This project is licensed under the MIT License. See the LICENSE file for details.
98
42
 
99
- It's important to note that the neurons.me library may have additional internal mechanisms to manage the lifecycle of entities, but the general idea is that created entities are stored in memory during the Node.js process's lifetime and can be accessed and deleted using the appropriate methods.
43
+ This README provides an overview of the project, instructions for installation and usage, and highlights future projections. Feel free to modify or expand it as needed. Congratulations on building this exciting tool, and good luck with its continued development!
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "this.me",
3
- "version": "2.1.5",
3
+ "version": "2.1.8",
4
4
  "description": "CLI for managing the .me suite.",
5
5
  "bin": {
6
6
  ".me": "./index.js"