Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
257 changes: 0 additions & 257 deletions documentation/docs/Developers_and_Administrators/Robot-submissions.md

This file was deleted.

7 changes: 1 addition & 6 deletions documentation/docs/Project_CodaBench_FAQ.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Codabench benchmarks are aimed at researchers, scientists and other professional


### Can Codabench be privately hosted?
Yes, you can host your own Codabench instance on a private or hosted server (e.g. Azure, GCP or AWS). For more information, see [how to deploy Codabench on your server](Developers_and_Administrators/How-to-deploy-Codabench-on-your-server.md) and [local installation](Developers_and_Administrators/Codabench-Installation.md) guide. However, most benchmark organizers do NOT need to run their own instance. If you run a computationally demanding competition, you can hook up your own [compute workers](Organizers/Running_a_benchmark/Compute-Worker-Management---Setup.md) in the backend very easily.
Yes, you can host your own Codabench instance on a private or hosted server (e.g. Azure, GCP or AWS). For more information, see [how to deploy Codabench on your server](Developers_and_Administrators/How-to-deploy-Codabench-on-your-server.md) and [local installation](Developers_and_Administrators/Codabench-Installation.md) guide. However, most benchmark organizers do NOT need to run their own instance. If you run a computationally demanding competition, you can hook up your own [compute workers](Organizers/Running_a_benchmark/Compute-Worker-Management---Setup.md) in the backend very easily.


### How to change my username?
Expand Down Expand Up @@ -74,8 +74,3 @@ When deploying a local instance, the email server is not configured by default,
```

Uncomment and fill in SMPT server credentials. A good suggestion if you've never done this is to use [sendgrid](https://sendgrid.com/).

### Robots and automated submissions?
What about robot policy, reckless, or malicious behavior?
Codabench does not forbid the use of [robots](Developers_and_Administrators/Robot-submissions.md) (bots) to access the website, provided that it is not done with malicious intentions to disturb the normal use and jam the system. A user who abuses their rights by knowingly, maliciously, or recklessly jamming the system, causing the system to crash, causing loss of data, or gaining access to unauthorized data, will be banned from accessing all Codabench services.

1 change: 0 additions & 1 deletion documentation/zensical.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ nav = [
{"Home" = "index.md"},
{"Participants" = [
{"Participating in a Competition" = "Participants/User_Participating-in-a-Competition.md"},
{"Robot Submissions" = "Developers_and_Administrators/Robot-submissions.md"},
{"List of Current Benchmarks and Competitions" = "https://www.codabench.org/competitions/public/?page=1"}
]},
{"Organizers" = [
Expand Down
4 changes: 0 additions & 4 deletions src/apps/api/serializers/competitions.py
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,6 @@ class Meta:
'make_programs_available',
'make_input_data_available',
'docker_image',
'allow_robot_submissions',
'competition_type',
'fact_sheet',
'reward',
Expand Down Expand Up @@ -409,7 +408,6 @@ class Meta:
'make_programs_available',
'make_input_data_available',
'docker_image',
'allow_robot_submissions',
'competition_type',
'fact_sheet',
'forum',
Expand Down Expand Up @@ -507,7 +505,6 @@ class Meta:

class CompetitionParticipantSerializer(serializers.ModelSerializer):
username = serializers.CharField(source='user.username')
is_bot = serializers.BooleanField(source='user.is_bot')
email = serializers.CharField(source='user.email')
is_deleted = serializers.BooleanField(source='user.is_deleted')

Expand All @@ -516,7 +513,6 @@ class Meta:
fields = (
'id',
'username',
'is_bot',
'email',
'status',
'is_deleted',
Expand Down
Loading