Skip to content

Commit 85863c3

Browse files
authored
Merge pull request #24 from deepmodeling/master
master update
2 parents 520c308 + b3ebfc1 commit 85863c3

File tree

6 files changed

+119
-2
lines changed

6 files changed

+119
-2
lines changed
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
---
2+
name: Bug report
3+
about: Create a bug report to help us eliminate issues and improve deepmd-kit. If
4+
this doesn’t look right, [choose a different type](https://github.com/deepmodeling/deepmd-kit/issues/new/choose).
5+
title: "[BUG] _Replace With Suitable Title_"
6+
labels: bug
7+
assignees: ''
8+
9+
---
10+
11+
**Summary**
12+
13+
<!--Please provide a clear and concise description of what the bug is.-->
14+
15+
**Deepmd-kit version, installation way, input file, running commands, error log, etc.**
16+
17+
<!--Please provide necessary information including the version of software and installation way, input file, running commands, error log , etc., AS DETAILED AS POSSIBLE to help locate and reproduce your problem. -->
18+
19+
<!--If applicable, specify what platform you are running on. -->
20+
21+
**Steps to Reproduce**
22+
23+
<!--Describe the steps required to (quickly) reproduce the issue. You can attach (small) files to the section below or add URLs where to download an archive with all necessary files. Please try to create an input set that is as minimal and small as possible and reproduces the bug as quickly as possible. **NOTE:** the less effort and time it takes to reproduce your reported bug, the more likely it becomes, that somebody will look into it and fix the problem.-->
24+
25+
**Further Information, Files, and Links**
26+
27+
<!--Put any additional information here, attach relevant text or image files and URLs to external sites, e.g. relevant publications-->
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project. If this doesn’t work right, [choose a different
4+
type]( https://github.com/deepmodeling/deepmd-kit/issues/new/choose)
5+
title: "[Feature Request] _Replace with Title_"
6+
labels: enhancement
7+
assignees: ''
8+
9+
---
10+
11+
**Summary**
12+
13+
<!--Please provide a brief and concise description of the suggested feature or change-->
14+
15+
**Detailed Description**
16+
17+
<!--Please explain how you would like to see deepmd-kit enhanced, what feature(s) you are looking for, what specific problems this will solve. If possible, provide references to relevant background information like publications or web pages, and whether you are planning to implement the enhancement yourself or would like to participate in the implementation. If applicable add a reference to an existing bug report or issue that this will address.-->
18+
19+
**Further Information, Files, and Links**
20+
21+
<!--Put any additional information here, attach relevant text or image files and URLs to external sites, e.g. relevant publications-->
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
---
2+
name: Generic issue
3+
about: For issues that do not fit any of the other categories. If this doesn’t work
4+
right, [choose a different type]( https://github.com/deepmodeling/deepmd-kit/issues/new/choose).
5+
title: _Replace With a Descriptive Title_
6+
labels: wontfix
7+
assignees: ''
8+
9+
---
10+
11+
**Summary**
12+
13+
<!--Please provide a clear and concise description of what the question is.-->
14+
15+
**Deepmd-kit Version, Python Version, Tensorflow Version, GCC Version and Cuda Version.**
16+
17+
<!--Please specify precisely which Deepmd-kit version this issue was detected with on what build environment, (Python Version and GCC Version are in the first and second line of Python command line interface respectively. And check the Deepmd-kit Version with command line "print(deepmd.__version__)"). -->
18+
19+
<!--If applicable, specify what platform you are running on. -->
20+
21+
**Details**
22+
23+
<!--Please explain the issue in detail here-->
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
---
2+
name: Parameters
3+
about: Make a suggestion for a change of input parameters or a new output to deepmd-kit.
4+
If this doesn’t work right, [choose a different type]( https://github.com/deepmodeling/deepmd-kit/issues/new/choose).
5+
title: "[Parameters] _Replace With Suitable Title_"
6+
labels: documentation, enhancement
7+
assignees: ''
8+
9+
---
10+
11+
**Summary**
12+
13+
<!--Please provide a clear and concise description of what your request is.-->
14+
15+
**Summary**
16+
17+
<!--Please provide a brief and concise description of the suggested feature or change-->
18+
19+
**Detailed Description**
20+
21+
<!--Please explain how you would like to see deepmd-kit enhanced. Specify your material system, and exactly what behaviors or properties you are looking for, or what specific problems this will solve. If possible, provide references to relevant background information like publications or web pages, and whether you are planning to implement the enhancement yourself or would like to participate in the implementation.-->
22+
23+
**Further Information, Files, and Links**
24+
25+
<!--Put any additional information here, attach relevant text or image files and URLs to external sites, e.g. relevant publications-->
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
---
2+
name: Request for Help
3+
about: Don't post help requests here, go to [discussions](https://github.com/deepmodeling/deepmd-kit/discussions)
4+
instead.
5+
title: ''
6+
labels: ''
7+
assignees: ''
8+
9+
---
10+
11+
Before asking questions, you can
12+
13+
search the previous issues or discussions
14+
check the [document](https://deepmd.readthedocs.io/en/stable), especially [training parameters](https://deepmd.readthedocs.io/en/stable/train-input.html).
15+
16+
Please **do not** post requests for help (e.g. with installing or using deepmd-kit) here.
17+
Instead go to [discussions](https://github.com/deepmodeling/deepmd-kit/discussions).
18+
19+
This issue tracker is for tracking deepmd-kit development related issues only.
20+
21+
Thanks for your cooperation.

doc/install.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ We follow the virtual environment approach to install the tensorflow's Python in
6161
virtualenv -p python3 $tensorflow_venv
6262
source $tensorflow_venv/bin/activate
6363
pip install --upgrade pip
64-
pip install --upgrade tensorflow==2.3.0
64+
pip install --upgrade tensorflow
6565
```
6666
It is highly recommanded to keep the consistency of the TensorFlow version for the python and C++ interfaces.
6767
Everytime a new shell is started and one wants to use `DeePMD-kit`, the virtual environment should be activated by
@@ -78,7 +78,7 @@ virtualenv -p python3.7 $tensorflow_venv
7878
```
7979
If one does not need the GPU support of deepmd-kit and is concerned about package size, the CPU-only version of tensorflow should be installed by
8080
```bash
81-
pip install --upgrade tensorflow-cpu==2.3.0
81+
pip install --upgrade tensorflow-cpu
8282
```
8383
To verify the installation, run
8484
```bash

0 commit comments

Comments
 (0)