You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+3-2Lines changed: 3 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,11 +8,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
8
8
9
9
### Added
10
10
11
-
- During training, model checkpoints will now be saved at the end of each training epoch in addition to the checkpoints saved at the end of every validation run.
11
+
- During training, model checkpoints will be saved at the end of each training epoch in addition to the checkpoints saved at the end of every validation run.
12
+
- Besides as a local file, model weights can be specified from a URL. Upon initial download, the weights file is cached for future re-use.
12
13
13
14
### Fixed
14
15
15
-
- Precursor charges are now exported as integers instead of floats in the mzTab output file, in compliance with the mzTab specification.
16
+
- Precursor charges are exported as integers instead of floats in the mzTab output file, in compliance with the mzTab specification.
Copy file name to clipboardExpand all lines: docs/file_formats.md
+9-7Lines changed: 9 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
3
3
## Input file formats for Casanovo
4
4
5
-
### MS/MS Spectra
5
+
### MS/MS spectra
6
6
7
7
When you're ready to use Casanovo for *de novo* peptide sequencing, you can input your MS/MS spectra in one of the following formats:
8
8
@@ -13,15 +13,17 @@ When you're ready to use Casanovo for *de novo* peptide sequencing, you can inpu
13
13
All three of the above file formats can be used as input to Casanovo for *de novo* peptide sequencing.
14
14
As the official PSI standard format containing the complete information from a mass spectrometry run, mzML should typically be preferred.
15
15
16
-
### Model Weights
16
+
### Model weights
17
17
18
-
In addition to MS/MS spectra, Casanovo also optionally accepts a model weights (.ckpt) input file when running in training, sequencing or evaluating mode.
19
-
If no input weight file is provided, Casanovo will automatically use the most recent compatible weights from the official Casanovo github repo, which will be downloaded and cached if they are not already.
20
-
Model weights are retrieved by matching release version.
21
-
If no model weights for an identical release (major, minor, patch), alternative releases with matching (i) major and minor, or (ii) major versions will be used.
18
+
In addition to MS/MS spectra, Casanovo also optionally accepts a model weights (.ckpt extension) input file when running in training, sequencing, or evaluating mode.
19
+
These weights define the functionality of the Casanovo neural network.
20
+
21
+
If no input weights file is provided, Casanovo will automatically use the most recent compatible weights from the [official Casanovo GitHub repository](https://github.com/Noble-Lab/casanovo), which will be downloaded and cached locally if they are not already.
22
+
Model weights are retrieved by matching Casanovo release version, which is of the form (major, minor, patch).
23
+
If no model weights for an identical release are available, alternative releases with matching (i) major and minor, or (ii) major versions will be used.
22
24
23
25
Alternatively, you can input custom model weights in the form of a local file system path or a URL pointing to a compatible Casanovo model weights file.
24
-
If a URL is provided the upstream weights file will be downloaded and cached for later use.
26
+
If a URL is provided, the upstream weights file will be downloaded and cached locally for later use.
25
27
See the [command line interface documentation](cli.rst) for more details.
0 commit comments