Skip to content

Commit

Permalink
updates to prospectivity_models.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Vasily Zadorozhnyy committed Sep 25, 2024
1 parent e50be9e commit 887f6b3
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
10 changes: 7 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1253,9 +1253,13 @@ classDiagram
}
class NeuralNetUserOptions {
smoothing: float | None = 0.5
dropout: float | None = 0.5
negative_sampling_fraction: tuple[float, float] | None = (0.0, 0.25)
likely_negative_range: tuple[float, float] | None = (0.1,1.0)
fraction_train_split: float | None = 0.8
upsample_multiplier: float | None = 20.0
dropout: tuple[float, float, float] | None = (0.0, 0.25, 0.25)
learning_rate: float | None = 1e-3
weight_decay: float | None = 1e-2
smoothing: float | None = 0.3
}
class NeighborhoodDecay {
Expand Down
2 changes: 0 additions & 2 deletions cdr_schemas/prospectivity_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,6 @@ class NeuralNetUserOptions(BaseModel):
)




class NeighborhoodFunction(str, Enum):
GAUSSIAN = "gaussian"
BUBBLE = "bubble"
Expand Down

0 comments on commit 887f6b3

Please sign in to comment.