当前位置: 首页 > wzjs >正文

网站超市安装网站建设首页突出什么

网站超市安装,网站建设首页突出什么,计算机网页设计就业方向,建设企业网站平台主要的目的是​一、软件介绍 文末提供程序和源码下载 nn4dms开源程序是用于深度突变扫描数据的神经网络 我们在五个深度突变扫描数据集上训练和评估了多种类型的神经网络的性能。此存储库包含允许您执行以下作的代码和示例: Retrain the models from our publication 重新训…

​一、软件介绍

文末提供程序和源码下载

nn4dms开源程序是用于深度突变扫描数据的神经网络

我们在五个深度突变扫描数据集上训练和评估了多种类型的神经网络的性能。此存储库包含允许您执行以下作的代码和示例:

  • Retrain the models from our publication
    重新训练我们出版物中的模型
  • Train new models using our datasets or your own datasets
    使用我们的数据集或您自己的数据集训练新模型
  • Use trained models to make predictions for new variants
    使用经过训练的模型对新变体进行预测

二、Setup 设置

This code is based on Python 3.6 and TensorFlow 1.14. Use the provided environment.yml file to set up a suitable environment with Anaconda.
此代码基于 Python 3.6 和 TensorFlow 1.14。使用提供的 environment.yml 文件为 Anaconda 设置合适的环境。

<span style="background-color:var(--bgColor-muted, var(--color-canvas-subtle))"><span style="color:#1f2328"><span style="color:var(--fgColor-default, var(--color-fg-default))"><span style="background-color:var(--bgColor-muted, var(--color-canvas-subtle))"><code>conda env create -f environment.yml
conda activate nn4dms
</code></span></span></span></span>

Installation typically takes approximatley 5 minutes. Note these software versions differ slightly from the ones we used to train the models in our publication.
安装通常需要大约 5 分钟。请注意,这些软件版本与我们在本出版物中用于训练模型的版本略有不同。

GPU support (optional) GPU 支持(可选)

By default, the environment uses CPU-only TensorFlow. If you have an NVIDIA GPU and want GPU support, use the environment_gpu.yml file instead. It will install tensorflow-gpu instead of tensorflow. You will need to make sure you have the appropriate CUDA drivers and software installed for TensorFlow 1.14: cudnn 7.4 and cudatoolkit 10.0. Certain versions of this NVIDIA software may also be available for your operating system via Anaconda. The GPU environment is not compatible with NVIDIA Ampere or newer microarchitectures.
默认情况下,该环境使用仅限 CPU 的 TensorFlow。如果您有 NVIDIA GPU 并希望获得 GPU 支持,请改用 environment_gpu.yml 文件。它将安装 tensorflow-gpu ,而不是 tensorflow 。您需要确保为 TensorFlow 1.14 安装了合适的 CUDA 驱动程序和软件: cudnn 7.4 和 cudatoolkit 10.0。此 NVIDIA 软件的某些版本也可能通过 Anaconda 可用于您的作系统。GPU 环境与 NVIDIA Ampere 或更新的微架构不兼容。

Enrich2 (optional) Enrich2(可选)

We used Enrich2 to compute functional scores for the GB1 and Bgl3 datsets. If you want to re-run that part of our pipeline, you must install Enrich2 according to the instructions on the Enrich2 GitHub page. Make sure the conda environment for Enrich2 is named "enrich2". This is optional; we provide pre-computed datasets in the data directory.
我们使用 Enrich2 来计算 GB1 和 Bgl3 数据集的功能分数。如果您想重新运行我们管道的该部分,则必须按照 Enrich2 GitHub 页面上的说明安装 Enrich2。确保 Enrich2 的 conda 环境命名为“enrich2”。这是可选的;我们在 data 目录中提供了预计算的数据集。

三、Training a model 训练模型

您可以通过调用 code/regression.py 来训练模型,并使用指定数据集、网络架构、训练-测试拆分等的所需参数。为方便起见,除了命令行参数之外,regression.py 还接受 arguments 文本文件。我们提供了一个示例参数文件,您可以将其用作模板。

Call the following from the root directory to train a sample linear regression model on the avGFP dataset:
从根目录调用以下内容,以在 avGFP 数据集上训练示例线性回归模型:

<span style="background-color:var(--bgColor-muted, var(--color-canvas-subtle))"><span style="color:#1f2328"><span style="color:var(--fgColor-default, var(--color-fg-default))"><span style="background-color:var(--bgColor-muted, var(--color-canvas-subtle))"><code>python code/regression.py @regression_args/example.txt 
</code></span></span></span></span>

The output, which includes the trained model, evaluation metrics, and predictions on each of the train/tune/tests sets, will automatically be placed in the training_logs directory. The linear regression example above trains in less than 5 minutes. Training time will be longer for larger datasets and more complex models.
输出(包括经过训练的模型、评估指标和对每个 train/tune/tests 集的预测)将自动放置在 training_logs 目录中。上面的线性回归示例在不到 5 分钟的时间内完成训练。对于较大的数据集和更复杂的模型,训练时间会更长。

For a full list of parameters, call python code/regression.py -h.
有关参数的完整列表,请调用 python code/regression.py -h 。

Additional customization:
其他自定义:
  • To define your own custom network architecture, see the readme in the network_specs directory.
    要定义您自己的自定义网络架构,请参阅 network_specs 目录中的自述文件。
  • For more control over the train-test split, see the train_test_split.ipynb notebook.
    有关对 train-test 拆分的更多控制,请参阅 train_test_split.ipynb 笔记本。
  • To compute your own protein structure graph for the graph convolutional network, see the structure_graph.ipynb notebook.
    要为图形卷积网络计算您自己的蛋白质结构图,请参阅 structure_graph.ipynb 笔记本。
  • To use your own dataset, see the readme in the data directory.
    要使用您自己的数据集,请参阅 data 目录中的自述文件。

四、Evaluating a model and making new predictions
评估模型并进行新的预测

在训练期间,regression.py 会将各种有用的信息保存到日志目录中,包括对所有 train、tune 和测试集变体以及训练模型本身的预测。

五、软件下载

迅雷云盘

本文信息来源于GitHub作者地址:https://github.com/gitter-lab/nn4dms


文章转载自:

http://dbvTZ78t.ttkns.cn
http://Pt5Wz9KM.ttkns.cn
http://JR7NRzsk.ttkns.cn
http://hMjcbb0e.ttkns.cn
http://F6knV9XZ.ttkns.cn
http://f1c7tycs.ttkns.cn
http://cxg2XMCh.ttkns.cn
http://K6j0hm0Q.ttkns.cn
http://cTUyCfyT.ttkns.cn
http://kOiuDB90.ttkns.cn
http://bCnRsEpo.ttkns.cn
http://tzRzG8Ub.ttkns.cn
http://b7IWr0og.ttkns.cn
http://XPwK3oEc.ttkns.cn
http://6ZKgJfa3.ttkns.cn
http://HNZ1fJtw.ttkns.cn
http://Wx1jMze1.ttkns.cn
http://sBH8cpUx.ttkns.cn
http://blzhp4tR.ttkns.cn
http://idx1SVNr.ttkns.cn
http://1OrwCjfy.ttkns.cn
http://8m5XGKcF.ttkns.cn
http://iGu42n89.ttkns.cn
http://ZwzjFmyr.ttkns.cn
http://uhVg8tMV.ttkns.cn
http://ESNOGfn5.ttkns.cn
http://MNsi7hxp.ttkns.cn
http://lTzMphPO.ttkns.cn
http://cU4WRbHh.ttkns.cn
http://5Xo5PRZp.ttkns.cn
http://www.dtcms.com/wzjs/675655.html

相关文章:

  • 手机建设银行官方网站如何建网站看到物联网设备信息
  • ci框架建设网站互联网网站分了
  • 销售网站建设怎么样昆明室内设计学校
  • 网站建设核心系统企业网站建设费用计入什么科目
  • 什么网站做一件代发wordpress外卖
  • 荥阳网站建设价格工装设计效果图网站
  • 免费网站推广2023网站维护推广怎么做
  • 网站建设微信公众号文章做农产品网站需要办什么证
  • 企业网站建设中存在的问题一个万能的营销方案
  • 厦门做网站seo衡阳新闻头条最新消息
  • 虚拟机做门户网站如何绑定域名自己做的网站如何连接入数据库
  • 网站模板d一品资源网网站建设和域名备案
  • 婚庆网站名字wordpress招聘主题
  • 深圳网站设计公司排名前十做公众号文章的网站
  • php网站开发如何实现删除功能手机网站开发模板
  • 韵博工业设计搜索引擎优化需要多少钱
  • 企业网站建设存在的问题上网建站
  • 模拟购物网站开发项目wordpress 创建主题
  • 呼和浩特整站优化盘锦做网站价格
  • 唐山做网站哪家公司好大学网站建设图
  • 网站开发遇到的最大困难模板网站免费下载
  • 做网站的公司哪家最好医院网站管理制度
  • 做外贸网站能用虚拟主机吗佛山做企业网站公司
  • 台州房产网站建设怎么做付费的小说网站
  • 做学生阅读分析的网站服务器类网站建设
  • 石家庄制作网站网站策划案
  • 上海专业的网站建设可以分为( )
  • 流程网站设计网站底部链接代码
  • 教你如何做网站做外贸 访问国外网站
  • 设计一个个人网站的具体步骤广东省最新新闻