-
-
Notifications
You must be signed in to change notification settings - Fork 126
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Create Quick Start README.md #42
Closed
Closed
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
# R&D Agent Project | ||
|
||
> This repository has been populated with an initial template to help you get started. Please make sure to update the content to provide a great experience for community-building. | ||
|
||
## Motivation | ||
R&D Agent: Focusing on automating the most core and valuable parts of the industrial R&D process. | ||
|
||
Core method: Evolving. | ||
|
||
## Development | ||
|
||
### Create a Conda Environment | ||
- Create a new conda environment with Python 3.10: | ||
```sh | ||
conda create -n rdagent python=3.10 | ||
``` | ||
- Activate the environment: | ||
```sh | ||
conda activate rdagent | ||
``` | ||
|
||
### Run Make Files | ||
- **Navigate to the directory containing the MakeFile** and set up the development environment: | ||
```sh | ||
make dev | ||
``` | ||
|
||
### Install Pytorch | ||
- Install Pytorch and related libraries: | ||
```sh | ||
pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cpu | ||
pip3 install torch_geometric | ||
``` | ||
|
||
### Environment Configuration | ||
- Place the `.env` file (available in OneNote) in the same directory as the `.env.example` file. | ||
- Export each variable in the `.env` file: | ||
```sh | ||
export $(grep -v '^#' .env | xargs) | ||
``` | ||
|
||
### Azure Configuration | ||
- Install Azure CLI: | ||
```sh | ||
curl -L https://aka.ms/InstallAzureCli | bash | ||
``` | ||
- Log in to Azure: | ||
```sh | ||
(your az root) az login --use-device-code | ||
``` | ||
- Provide the code to your mentor and ask him to log in if needed. | ||
|
||
- `exit` and re-login to your environment (this step may not be necessary). | ||
|
||
### Run the Application | ||
- Ensure you have the necessary financial report and factor implementation source data. You may need to copy the data from a remote location. For example: | ||
```sh | ||
scp [email protected]:/home/xuyang1/workspace/fincov2/git_ignore_folder/factor_implementation_source_data /home/finco/v-yuanteli/rdagent/RD-Agent/git_ignore_folder/ | ||
``` | ||
|
||
- Update the `.env` file to set the `FILE_BASED_EXECUTION_DATA_FOLDER` variable: | ||
```sh | ||
FILE_BASED_EXECUTION_DATA_FOLDER=/home/finco/v-yuanteli/rdagent/RD-Agent/git_ignore_folder/factor_implementation_source_data | ||
``` | ||
|
||
- Run the factor extraction and implementation script: | ||
```sh | ||
python rdagent/app/factor_extraction_and_implementation/factor_extract_and_implement.py | ||
``` |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
删掉这后面的内容可以merge